mirror of
https://github.com/ProjectSWGCore/NGECore2.git
synced 2026-08-01 02:16:15 -04:00
Merge branch 'master' of https://github.com/ProjectSWGCore/NGECore2
This commit is contained in:
Binary file not shown.
@@ -7,6 +7,23 @@
|
||||
cls
|
||||
setlocal EnableDelayedExpansion
|
||||
|
||||
for %%* in (.) do set CurrDirName=%%~n*
|
||||
|
||||
if "%CurrDirName%" == "eclipse" (
|
||||
echo You are running this script from inside Eclipse ^^!
|
||||
echo You must execute it via windows in the odb folder ONLY ^^!
|
||||
echo Terminating for your own data safety.
|
||||
pause
|
||||
EXIT
|
||||
)
|
||||
|
||||
if NOT "%CurrDirName%" == "odb" (
|
||||
echo You are not executing this file from the odb folder^^!
|
||||
echo Terminating for your own data safety.
|
||||
pause
|
||||
EXIT
|
||||
)
|
||||
|
||||
set /a count=0
|
||||
|
||||
for /d %%d in (*) do (
|
||||
@@ -15,5 +32,4 @@ for /d %%d in (*) do (
|
||||
del "%%d\*.*" /s/q
|
||||
echo. 2>%%d\placeholder.txt
|
||||
)
|
||||
setlocal DisableDelayedExpansion
|
||||
|
||||
setlocal DisableDelayedExpansion
|
||||
@@ -6,12 +6,12 @@ def setup(core, actor, buff):
|
||||
def add(core, actor, buff):
|
||||
core.skillModService.addSkillMod(actor, 'expertise_damage_all', 10)
|
||||
core.skillModService.addSkillMod(actor, 'expertise_glancing_blow_ranged', 40)
|
||||
core.skillModService.addSkillMod(actor, 'invis', 1)
|
||||
actor.setRadarVisible(False)
|
||||
return
|
||||
|
||||
def remove(core, actor, buff):
|
||||
core.skillModService.deductSkillMod(actor, 'expertise_damage_all', 10)
|
||||
core.skillModService.deductSkillMod(actor, 'expertise_glancing_blow_ranged', 40)
|
||||
core.skillModService.deductSkillMod(actor, 'invis', 1)
|
||||
actor.setRadarVisible(True)
|
||||
return
|
||||
|
||||
@@ -4,8 +4,12 @@ def setup(core, actor, buff):
|
||||
return
|
||||
|
||||
def add(core, actor, buff):
|
||||
actor.setInStealth(True)
|
||||
actor.setRadarVisible(False)
|
||||
return
|
||||
|
||||
def remove(core, actor, buff):
|
||||
actor.setInStealth(False)
|
||||
actor.setRadarVisible(True)
|
||||
return
|
||||
|
||||
|
||||
|
||||
@@ -9,4 +9,5 @@ def add(core, actor, buff):
|
||||
|
||||
def remove(core, actor, buff):
|
||||
core.skillModService.deductSkillMod(actor, 'debuff_purge', 2)
|
||||
|
||||
return
|
||||
@@ -0,0 +1,25 @@
|
||||
import sys
|
||||
|
||||
def setup():
|
||||
return
|
||||
|
||||
def run(core, actor, target, commandString):
|
||||
|
||||
if actor.getCombatFlag() > 0:
|
||||
return
|
||||
|
||||
cell = actor.getContainer()
|
||||
building = actor.getGrandparent()
|
||||
ghost = actor.getSlottedObject('ghost')
|
||||
|
||||
if not ghost or not cell or not building or not core.housingService.getPermissions(player, cell)
|
||||
return
|
||||
|
||||
if ghost.getAmountOfVendors() >= actor.getSkillModBase('manage_vendor'):
|
||||
actor.sendSystemMessage('@player_structure:full_vendors', 0)
|
||||
return
|
||||
|
||||
|
||||
|
||||
return
|
||||
|
||||
@@ -4,5 +4,5 @@ def setup():
|
||||
return
|
||||
|
||||
def run(core, actor, target, commandString):
|
||||
core.buffService.addBuffToCreature(actor, 'en_sprint')
|
||||
core.buffService.addBuffToCreature(actor, 'en_sprint', actor)
|
||||
return
|
||||
@@ -4,6 +4,6 @@ def setup(core, actor, buff):
|
||||
return
|
||||
|
||||
def run(core, actor, target, commandString):
|
||||
core.buffService.addBuffToCreature(actor, 'fs_force_run')
|
||||
core.buffService.addBuffToCreature(actor, 'fs_force_run', actor)
|
||||
return
|
||||
|
||||
@@ -4,6 +4,6 @@ def setup(core, actor, buff):
|
||||
return
|
||||
|
||||
def run(core, actor, target, commandString):
|
||||
core.buffService.addBuffToCreature(actor, 'fs_buff_ca_1')
|
||||
core.buffService.addBuffToCreature(actor, 'fs_buff_ca_1', actor)
|
||||
return
|
||||
|
||||
@@ -4,6 +4,6 @@ def setup(core, actor, buff):
|
||||
return
|
||||
|
||||
def run(core, actor, target, commandString):
|
||||
core.buffService.addBuffToCreature(actor, 'fs_buff_def_1_1')
|
||||
core.buffService.addBuffToCreature(actor, 'fs_buff_def_1_1', actor)
|
||||
return
|
||||
|
||||
@@ -4,6 +4,6 @@ def setup(core, actor, buff):
|
||||
return
|
||||
|
||||
def run(core, actor, target, commandString):
|
||||
core.buffService.addBuffToCreature(actor, 'invis_fs_buff_invis_1')
|
||||
core.buffService.addBuffToCreature(actor, 'invis_fs_buff_invis_1', actor)
|
||||
return
|
||||
|
||||
@@ -4,6 +4,6 @@ def setup(core, actor, buff):
|
||||
return
|
||||
|
||||
def run(core, actor, target, commandString):
|
||||
core.buffService.addBuffToCreature(actor, 'fs_saber_reflect')
|
||||
core.buffService.addBuffToCreature(actor, 'fs_saber_reflect', actor)
|
||||
return
|
||||
|
||||
@@ -0,0 +1,14 @@
|
||||
import sys
|
||||
|
||||
def setup():
|
||||
return
|
||||
|
||||
def run(core, actor, target, commandString):
|
||||
|
||||
if not target:
|
||||
return
|
||||
|
||||
#actor.sendSystemMessage('LOOT SCRIPT COMMAND', 0)
|
||||
core.lootService.handleLootRequest(actor,target)
|
||||
return
|
||||
|
||||
@@ -4,5 +4,5 @@ def setup(core, actor, buff):
|
||||
return
|
||||
|
||||
def run(core, actor, target, commandString):
|
||||
core.buffService.addBuffToCreature(actor, 'me_cure_affliction_1')
|
||||
core.buffService.addBuffToCreature(actor, 'me_cure_affliction_1', target)
|
||||
return
|
||||
@@ -4,5 +4,5 @@ def setup(core, actor, buff):
|
||||
return
|
||||
|
||||
def run(core, actor, target, commandString):
|
||||
core.buffService.addBuffToCreature(actor, 'me_evasion_1')
|
||||
core.buffService.addBuffToCreature(actor, 'me_evasion_1', actor)
|
||||
return
|
||||
@@ -18,7 +18,7 @@ def run(core, actor, target, commandString):
|
||||
if not combatSvc.applySpecialCost(actor, weapon, CombatCommand('me_stasis_self_1')):
|
||||
return
|
||||
|
||||
core.buffService.addBuffToCreature(actor, 'me_stasis_self_1')
|
||||
core.buffService.addBuffToCreature(actor, 'me_stasis_self_1', actor)
|
||||
|
||||
return
|
||||
|
||||
@@ -4,6 +4,6 @@ def setup(core, actor, buff):
|
||||
return
|
||||
|
||||
def run(core, actor, target, commandString):
|
||||
core.buffService.addBuffToCreature(actor, 'of_emergency_shield')
|
||||
core.buffService.addBuffToCreature(actor, 'of_emergency_shield', actor)
|
||||
return
|
||||
|
||||
@@ -4,6 +4,6 @@ def setup(core, actor, buff):
|
||||
return
|
||||
|
||||
def run(core, actor, target, commandString):
|
||||
core.buffService.addBuffToCreature(actor, 'of_firepower')
|
||||
core.buffService.addBuffToCreature(actor, 'of_firepower', actor)
|
||||
return
|
||||
|
||||
@@ -4,6 +4,6 @@ def setup(core, actor, buff):
|
||||
return
|
||||
|
||||
def run(core, actor, target, commandString):
|
||||
core.buffService.addGroupBuff(actor, 'of_inspiration_1')
|
||||
core.buffService.addGroupBuff(actor, 'of_inspiration_1', actor)
|
||||
return
|
||||
|
||||
@@ -4,6 +4,6 @@ def setup(core, actor, buff):
|
||||
return
|
||||
|
||||
def run(core, actor, target, commandString):
|
||||
core.buffService.addGroupBuff(actor, 'of_inspiration_2')
|
||||
core.buffService.addGroupBuff(actor, 'of_inspiration_2', actor)
|
||||
return
|
||||
|
||||
@@ -4,6 +4,6 @@ def setup(core, actor, buff):
|
||||
return
|
||||
|
||||
def run(core, actor, target, commandString):
|
||||
core.buffService.addGroupBuff(actor, 'of_inspiration_3')
|
||||
core.buffService.addGroupBuff(actor, 'of_inspiration_3', actor)
|
||||
return
|
||||
|
||||
@@ -4,6 +4,6 @@ def setup(core, actor, buff):
|
||||
return
|
||||
|
||||
def run(core, actor, target, commandString):
|
||||
core.buffService.addGroupBuff(actor, 'of_inspiration_4')
|
||||
core.buffService.addGroupBuff(actor, 'of_inspiration_4', actor)
|
||||
return
|
||||
|
||||
@@ -4,6 +4,6 @@ def setup(core, actor, buff):
|
||||
return
|
||||
|
||||
def run(core, actor, target, commandString):
|
||||
core.buffService.addGroupBuff(actor, 'of_inspiration_5')
|
||||
core.buffService.addGroupBuff(actor, 'of_inspiration_5', actor)
|
||||
return
|
||||
|
||||
@@ -4,6 +4,6 @@ def setup(core, actor, buff):
|
||||
return
|
||||
|
||||
def run(core, actor, target, commandString):
|
||||
core.buffService.addGroupBuff(actor, 'of_inspiration_6')
|
||||
core.buffService.addGroupBuff(actor, 'of_inspiration_6', actor)
|
||||
return
|
||||
|
||||
@@ -4,6 +4,6 @@ def setup(core, actor, buff):
|
||||
return
|
||||
|
||||
def run(core, actor, target, commandString):
|
||||
core.buffService.addBuffToCreature(actor, 'of_purge_1')
|
||||
core.buffService.addBuffToCreature(actor, 'of_purge_1', actor)
|
||||
return
|
||||
|
||||
@@ -4,6 +4,6 @@ def setup(core, actor, buff):
|
||||
return
|
||||
|
||||
def run(core, actor, target, commandString):
|
||||
core.buffService.addBuffToCreature(actor, 'of_scatter_1', actor)
|
||||
core.buffService.addGroupBuff(actor, 'of_scatter_1', actor)
|
||||
return
|
||||
|
||||
@@ -4,6 +4,6 @@ def setup(core, actor, buff):
|
||||
return
|
||||
|
||||
def run(core, actor, target, commandString):
|
||||
core.buffService.addBuffToCreature(actor, 'of_stimulator_1')
|
||||
core.buffService.addBuffToCreature(actor, 'of_stimulator_1', actor)
|
||||
return
|
||||
|
||||
@@ -4,6 +4,6 @@ def setup(core, actor, buff):
|
||||
return
|
||||
|
||||
def run(core, actor, target, commandString):
|
||||
core.buffService.addBuffToCreature(actor, 'saberblock')
|
||||
core.buffService.addBuffToCreature(actor, 'saberblock', actor)
|
||||
return
|
||||
|
||||
@@ -13,6 +13,10 @@ def run(core, actor, target, commandString):
|
||||
|
||||
if container == None: return
|
||||
|
||||
if container.getTemplate().startswith("object/tangible/inventory/shared_lightsaber_inventory") or target.getContainer().getTemplate().startswith("object/tangible/inventory/shared_lightsaber_inventory"):
|
||||
core.equipmentService.calculateLightsaberAttributes(actor, target, container)
|
||||
return;
|
||||
|
||||
if target.getTemplate() == 'object/tangible/item/shared_loot_cash.iff':
|
||||
core.lootService.handleCreditPickUp(actor,target)
|
||||
core.objectService.destroyObject(target)
|
||||
|
||||
@@ -279,7 +279,7 @@ def noSellWindowCallBack(owner, window, eventType, returnList):
|
||||
|
||||
#cancel
|
||||
if eventType == 1:
|
||||
owner.sendSystemMessage('Cancle', 0)
|
||||
owner.sendSystemMessage('Cancel', 0)
|
||||
sellItem = returnList.get(0)
|
||||
startConversation(coreRef,owner,junkDealerRef)
|
||||
return
|
||||
|
||||
@@ -0,0 +1,31 @@
|
||||
|
||||
def itemTemplate():
|
||||
|
||||
return ['object/tangible/wearables/armor/bone/shared_armor_bone_s01_bicep_l.iff']
|
||||
|
||||
def customItemName():
|
||||
|
||||
return 'Bone Armor Bicep Left'
|
||||
|
||||
def customItemStackCount():
|
||||
|
||||
return 1
|
||||
|
||||
def customizationAttributes():
|
||||
|
||||
return []
|
||||
|
||||
def customizationValues():
|
||||
|
||||
return []
|
||||
|
||||
def itemStats():
|
||||
|
||||
stats = ['armor_efficiency_kinetic','5000','6800']
|
||||
stats += ['armor_efficiency_energy','3000','4800']
|
||||
stats += ['special_protection_heat','4000','5800']
|
||||
stats += ['special_protection_cold','4000','5800']
|
||||
stats += ['special_protection_acid','4000','5800']
|
||||
stats += ['special_protection_electricity','4000','5800']
|
||||
|
||||
return stats
|
||||
@@ -0,0 +1,31 @@
|
||||
|
||||
def itemTemplate():
|
||||
|
||||
return ['object/tangible/wearables/armor/bone/shared_armor_bone_s01_bicep_r.iff']
|
||||
|
||||
def customItemName():
|
||||
|
||||
return 'Bone Armor Bicep Right'
|
||||
|
||||
def customItemStackCount():
|
||||
|
||||
return 1
|
||||
|
||||
def customizationAttributes():
|
||||
|
||||
return []
|
||||
|
||||
def customizationValues():
|
||||
|
||||
return []
|
||||
|
||||
def itemStats():
|
||||
|
||||
stats = ['armor_efficiency_kinetic','5000','6800']
|
||||
stats += ['armor_efficiency_energy','3000','4800']
|
||||
stats += ['special_protection_heat','4000','5800']
|
||||
stats += ['special_protection_cold','4000','5800']
|
||||
stats += ['special_protection_acid','4000','5800']
|
||||
stats += ['special_protection_electricity','4000','5800']
|
||||
|
||||
return stats
|
||||
@@ -0,0 +1,31 @@
|
||||
|
||||
def itemTemplate():
|
||||
|
||||
return ['object/tangible/wearables/armor/bone/shared_armor_bone_s01_boots.iff']
|
||||
|
||||
def customItemName():
|
||||
|
||||
return 'Bone Armor Boots'
|
||||
|
||||
def customItemStackCount():
|
||||
|
||||
return 1
|
||||
|
||||
def customizationAttributes():
|
||||
|
||||
return []
|
||||
|
||||
def customizationValues():
|
||||
|
||||
return []
|
||||
|
||||
def itemStats():
|
||||
|
||||
stats = ['armor_efficiency_kinetic','5000','6800']
|
||||
stats += ['armor_efficiency_energy','3000','4800']
|
||||
stats += ['special_protection_heat','4000','5800']
|
||||
stats += ['special_protection_cold','4000','5800']
|
||||
stats += ['special_protection_acid','4000','5800']
|
||||
stats += ['special_protection_electricity','4000','5800']
|
||||
|
||||
return stats
|
||||
@@ -0,0 +1,31 @@
|
||||
|
||||
def itemTemplate():
|
||||
|
||||
return ['object/tangible/wearables/armor/bone/shared_armor_bone_s01_bracer_l.iff']
|
||||
|
||||
def customItemName():
|
||||
|
||||
return 'Bone Armor Bracer Left'
|
||||
|
||||
def customItemStackCount():
|
||||
|
||||
return 1
|
||||
|
||||
def customizationAttributes():
|
||||
|
||||
return []
|
||||
|
||||
def customizationValues():
|
||||
|
||||
return []
|
||||
|
||||
def itemStats():
|
||||
|
||||
stats = ['armor_efficiency_kinetic','5000','6800']
|
||||
stats += ['armor_efficiency_energy','3000','4800']
|
||||
stats += ['special_protection_heat','4000','5800']
|
||||
stats += ['special_protection_cold','4000','5800']
|
||||
stats += ['special_protection_acid','4000','5800']
|
||||
stats += ['special_protection_electricity','4000','5800']
|
||||
|
||||
return stats
|
||||
@@ -0,0 +1,31 @@
|
||||
|
||||
def itemTemplate():
|
||||
|
||||
return ['object/tangible/wearables/armor/bone/shared_armor_bone_s01_bracer_r.iff']
|
||||
|
||||
def customItemName():
|
||||
|
||||
return 'Bone Armor Bracer Right'
|
||||
|
||||
def customItemStackCount():
|
||||
|
||||
return 1
|
||||
|
||||
def customizationAttributes():
|
||||
|
||||
return []
|
||||
|
||||
def customizationValues():
|
||||
|
||||
return []
|
||||
|
||||
def itemStats():
|
||||
|
||||
stats = ['armor_efficiency_kinetic','5000','6800']
|
||||
stats += ['armor_efficiency_energy','3000','4800']
|
||||
stats += ['special_protection_heat','4000','5800']
|
||||
stats += ['special_protection_cold','4000','5800']
|
||||
stats += ['special_protection_acid','4000','5800']
|
||||
stats += ['special_protection_electricity','4000','5800']
|
||||
|
||||
return stats
|
||||
@@ -0,0 +1,31 @@
|
||||
|
||||
def itemTemplate():
|
||||
|
||||
return ['object/tangible/wearables/armor/bone/shared_armor_bone_s01_chest_plate.iff']
|
||||
|
||||
def customItemName():
|
||||
|
||||
return 'Bone Armor Chestplate'
|
||||
|
||||
def customItemStackCount():
|
||||
|
||||
return 1
|
||||
|
||||
def customizationAttributes():
|
||||
|
||||
return []
|
||||
|
||||
def customizationValues():
|
||||
|
||||
return []
|
||||
|
||||
def itemStats():
|
||||
|
||||
stats = ['armor_efficiency_kinetic','5000','6800']
|
||||
stats += ['armor_efficiency_energy','3000','4800']
|
||||
stats += ['special_protection_heat','4000','5800']
|
||||
stats += ['special_protection_cold','4000','5800']
|
||||
stats += ['special_protection_acid','4000','5800']
|
||||
stats += ['special_protection_electricity','4000','5800']
|
||||
|
||||
return stats
|
||||
@@ -0,0 +1,31 @@
|
||||
|
||||
def itemTemplate():
|
||||
|
||||
return ['object/tangible/wearables/armor/bone/shared_armor_bone_s01_gloves.iff']
|
||||
|
||||
def customItemName():
|
||||
|
||||
return 'Bone Armor Gloves'
|
||||
|
||||
def customItemStackCount():
|
||||
|
||||
return 1
|
||||
|
||||
def customizationAttributes():
|
||||
|
||||
return []
|
||||
|
||||
def customizationValues():
|
||||
|
||||
return []
|
||||
|
||||
def itemStats():
|
||||
|
||||
stats = ['armor_efficiency_kinetic','5000','6800']
|
||||
stats += ['armor_efficiency_energy','3000','4800']
|
||||
stats += ['special_protection_heat','4000','5800']
|
||||
stats += ['special_protection_cold','4000','5800']
|
||||
stats += ['special_protection_acid','4000','5800']
|
||||
stats += ['special_protection_electricity','4000','5800']
|
||||
|
||||
return stats
|
||||
@@ -0,0 +1,31 @@
|
||||
|
||||
def itemTemplate():
|
||||
|
||||
return ['object/tangible/wearables/armor/bone/shared_armor_bone_s01_helmet.iff']
|
||||
|
||||
def customItemName():
|
||||
|
||||
return 'Bone Armor Helmet'
|
||||
|
||||
def customItemStackCount():
|
||||
|
||||
return 1
|
||||
|
||||
def customizationAttributes():
|
||||
|
||||
return []
|
||||
|
||||
def customizationValues():
|
||||
|
||||
return []
|
||||
|
||||
def itemStats():
|
||||
|
||||
stats = ['armor_efficiency_kinetic','5000','6800']
|
||||
stats += ['armor_efficiency_energy','3000','4800']
|
||||
stats += ['special_protection_heat','4000','5800']
|
||||
stats += ['special_protection_cold','4000','5800']
|
||||
stats += ['special_protection_acid','4000','5800']
|
||||
stats += ['special_protection_electricity','4000','5800']
|
||||
|
||||
return stats
|
||||
@@ -0,0 +1,31 @@
|
||||
|
||||
def itemTemplate():
|
||||
|
||||
return ['object/tangible/wearables/armor/bone/shared_armor_bone_s01_leggings.iff']
|
||||
|
||||
def customItemName():
|
||||
|
||||
return 'Bone Armor Leggings'
|
||||
|
||||
def customItemStackCount():
|
||||
|
||||
return 1
|
||||
|
||||
def customizationAttributes():
|
||||
|
||||
return []
|
||||
|
||||
def customizationValues():
|
||||
|
||||
return []
|
||||
|
||||
def itemStats():
|
||||
|
||||
stats = ['armor_efficiency_kinetic','5000','6800']
|
||||
stats += ['armor_efficiency_energy','3000','4800']
|
||||
stats += ['special_protection_heat','4000','5800']
|
||||
stats += ['special_protection_cold','4000','5800']
|
||||
stats += ['special_protection_acid','4000','5800']
|
||||
stats += ['special_protection_electricity','4000','5800']
|
||||
|
||||
return stats
|
||||
@@ -0,0 +1,31 @@
|
||||
|
||||
def itemTemplate():
|
||||
|
||||
return ['object/tangible/wearables/armor/chitin/shared_armor_chitin_s01_bicep_l.iff']
|
||||
|
||||
def customItemName():
|
||||
|
||||
return 'Chitin Armor Bicep Left'
|
||||
|
||||
def customItemStackCount():
|
||||
|
||||
return 1
|
||||
|
||||
def customizationAttributes():
|
||||
|
||||
return []
|
||||
|
||||
def customizationValues():
|
||||
|
||||
return []
|
||||
|
||||
def itemStats():
|
||||
|
||||
stats = ['armor_efficiency_kinetic','5000','6800']
|
||||
stats += ['armor_efficiency_energy','3000','4800']
|
||||
stats += ['special_protection_heat','4000','5800']
|
||||
stats += ['special_protection_cold','4000','5800']
|
||||
stats += ['special_protection_acid','4000','5800']
|
||||
stats += ['special_protection_electricity','4000','5800']
|
||||
|
||||
return stats
|
||||
@@ -0,0 +1,31 @@
|
||||
|
||||
def itemTemplate():
|
||||
|
||||
return ['object/tangible/wearables/armor/chitin/shared_armor_chitin_s01_bicep_r.iff']
|
||||
|
||||
def customItemName():
|
||||
|
||||
return 'Chitin Armor Bicep Right'
|
||||
|
||||
def customItemStackCount():
|
||||
|
||||
return 1
|
||||
|
||||
def customizationAttributes():
|
||||
|
||||
return []
|
||||
|
||||
def customizationValues():
|
||||
|
||||
return []
|
||||
|
||||
def itemStats():
|
||||
|
||||
stats = ['armor_efficiency_kinetic','5000','6800']
|
||||
stats += ['armor_efficiency_energy','3000','4800']
|
||||
stats += ['special_protection_heat','4000','5800']
|
||||
stats += ['special_protection_cold','4000','5800']
|
||||
stats += ['special_protection_acid','4000','5800']
|
||||
stats += ['special_protection_electricity','4000','5800']
|
||||
|
||||
return stats
|
||||
@@ -0,0 +1,31 @@
|
||||
|
||||
def itemTemplate():
|
||||
|
||||
return ['object/tangible/wearables/armor/chitin/shared_armor_chitin_s01_boots.iff']
|
||||
|
||||
def customItemName():
|
||||
|
||||
return 'Chitin Armor Boots'
|
||||
|
||||
def customItemStackCount():
|
||||
|
||||
return 1
|
||||
|
||||
def customizationAttributes():
|
||||
|
||||
return []
|
||||
|
||||
def customizationValues():
|
||||
|
||||
return []
|
||||
|
||||
def itemStats():
|
||||
|
||||
stats = ['armor_efficiency_kinetic','5000','6800']
|
||||
stats += ['armor_efficiency_energy','3000','4800']
|
||||
stats += ['special_protection_heat','4000','5800']
|
||||
stats += ['special_protection_cold','4000','5800']
|
||||
stats += ['special_protection_acid','4000','5800']
|
||||
stats += ['special_protection_electricity','4000','5800']
|
||||
|
||||
return stats
|
||||
@@ -0,0 +1,31 @@
|
||||
|
||||
def itemTemplate():
|
||||
|
||||
return ['object/tangible/wearables/armor/chitin/shared_armor_chitin_s01_bracer_l.iff']
|
||||
|
||||
def customItemName():
|
||||
|
||||
return 'Chitin Armor Bracer Left'
|
||||
|
||||
def customItemStackCount():
|
||||
|
||||
return 1
|
||||
|
||||
def customizationAttributes():
|
||||
|
||||
return []
|
||||
|
||||
def customizationValues():
|
||||
|
||||
return []
|
||||
|
||||
def itemStats():
|
||||
|
||||
stats = ['armor_efficiency_kinetic','5000','6800']
|
||||
stats += ['armor_efficiency_energy','3000','4800']
|
||||
stats += ['special_protection_heat','4000','5800']
|
||||
stats += ['special_protection_cold','4000','5800']
|
||||
stats += ['special_protection_acid','4000','5800']
|
||||
stats += ['special_protection_electricity','4000','5800']
|
||||
|
||||
return stats
|
||||
@@ -0,0 +1,31 @@
|
||||
|
||||
def itemTemplate():
|
||||
|
||||
return ['object/tangible/wearables/armor/chitin/shared_armor_chitin_s01_bracer_r.iff']
|
||||
|
||||
def customItemName():
|
||||
|
||||
return 'Chitin Armor Bracer Right'
|
||||
|
||||
def customItemStackCount():
|
||||
|
||||
return 1
|
||||
|
||||
def customizationAttributes():
|
||||
|
||||
return []
|
||||
|
||||
def customizationValues():
|
||||
|
||||
return []
|
||||
|
||||
def itemStats():
|
||||
|
||||
stats = ['armor_efficiency_kinetic','5000','6800']
|
||||
stats += ['armor_efficiency_energy','3000','4800']
|
||||
stats += ['special_protection_heat','4000','5800']
|
||||
stats += ['special_protection_cold','4000','5800']
|
||||
stats += ['special_protection_acid','4000','5800']
|
||||
stats += ['special_protection_electricity','4000','5800']
|
||||
|
||||
return stats
|
||||
@@ -0,0 +1,31 @@
|
||||
|
||||
def itemTemplate():
|
||||
|
||||
return ['object/tangible/wearables/armor/chitin/shared_armor_chitin_s01_chest_plate.iff']
|
||||
|
||||
def customItemName():
|
||||
|
||||
return 'Chitin Armor Chestplate'
|
||||
|
||||
def customItemStackCount():
|
||||
|
||||
return 1
|
||||
|
||||
def customizationAttributes():
|
||||
|
||||
return []
|
||||
|
||||
def customizationValues():
|
||||
|
||||
return []
|
||||
|
||||
def itemStats():
|
||||
|
||||
stats = ['armor_efficiency_kinetic','5000','6800']
|
||||
stats += ['armor_efficiency_energy','3000','4800']
|
||||
stats += ['special_protection_heat','4000','5800']
|
||||
stats += ['special_protection_cold','4000','5800']
|
||||
stats += ['special_protection_acid','4000','5800']
|
||||
stats += ['special_protection_electricity','4000','5800']
|
||||
|
||||
return stats
|
||||
@@ -0,0 +1,31 @@
|
||||
|
||||
def itemTemplate():
|
||||
|
||||
return ['object/tangible/wearables/armor/chitin/shared_armor_chitin_s01_gloves.iff']
|
||||
|
||||
def customItemName():
|
||||
|
||||
return 'Chitin Armor Gloves'
|
||||
|
||||
def customItemStackCount():
|
||||
|
||||
return 1
|
||||
|
||||
def customizationAttributes():
|
||||
|
||||
return []
|
||||
|
||||
def customizationValues():
|
||||
|
||||
return []
|
||||
|
||||
def itemStats():
|
||||
|
||||
stats = ['armor_efficiency_kinetic','5000','6800']
|
||||
stats += ['armor_efficiency_energy','3000','4800']
|
||||
stats += ['special_protection_heat','4000','5800']
|
||||
stats += ['special_protection_cold','4000','5800']
|
||||
stats += ['special_protection_acid','4000','5800']
|
||||
stats += ['special_protection_electricity','4000','5800']
|
||||
|
||||
return stats
|
||||
@@ -0,0 +1,31 @@
|
||||
|
||||
def itemTemplate():
|
||||
|
||||
return ['object/tangible/wearables/armor/chitin/shared_armor_chitin_s01_helmet.iff']
|
||||
|
||||
def customItemName():
|
||||
|
||||
return 'Chitin Armor Helmet'
|
||||
|
||||
def customItemStackCount():
|
||||
|
||||
return 1
|
||||
|
||||
def customizationAttributes():
|
||||
|
||||
return []
|
||||
|
||||
def customizationValues():
|
||||
|
||||
return []
|
||||
|
||||
def itemStats():
|
||||
|
||||
stats = ['armor_efficiency_kinetic','5000','6800']
|
||||
stats += ['armor_efficiency_energy','3000','4800']
|
||||
stats += ['special_protection_heat','4000','5800']
|
||||
stats += ['special_protection_cold','4000','5800']
|
||||
stats += ['special_protection_acid','4000','5800']
|
||||
stats += ['special_protection_electricity','4000','5800']
|
||||
|
||||
return stats
|
||||
@@ -0,0 +1,31 @@
|
||||
|
||||
def itemTemplate():
|
||||
|
||||
return ['object/tangible/wearables/armor/chitin/shared_armor_chitin_s01_leggings.iff']
|
||||
|
||||
def customItemName():
|
||||
|
||||
return 'Chitin Armor Leggings'
|
||||
|
||||
def customItemStackCount():
|
||||
|
||||
return 1
|
||||
|
||||
def customizationAttributes():
|
||||
|
||||
return []
|
||||
|
||||
def customizationValues():
|
||||
|
||||
return []
|
||||
|
||||
def itemStats():
|
||||
|
||||
stats = ['armor_efficiency_kinetic','5000','6800']
|
||||
stats += ['armor_efficiency_energy','3000','4800']
|
||||
stats += ['special_protection_heat','4000','5800']
|
||||
stats += ['special_protection_cold','4000','5800']
|
||||
stats += ['special_protection_acid','4000','5800']
|
||||
stats += ['special_protection_electricity','4000','5800']
|
||||
|
||||
return stats
|
||||
@@ -0,0 +1,31 @@
|
||||
|
||||
def itemTemplate():
|
||||
|
||||
return ['object/tangible/wearables/armor/ithorian_defender/shared_ith_armor_s01_bicep_l.iff']
|
||||
|
||||
def customItemName():
|
||||
|
||||
return 'Ithorian Defender Armor Bicep Left'
|
||||
|
||||
def customItemStackCount():
|
||||
|
||||
return 1
|
||||
|
||||
def customizationAttributes():
|
||||
|
||||
return []
|
||||
|
||||
def customizationValues():
|
||||
|
||||
return []
|
||||
|
||||
def itemStats():
|
||||
|
||||
stats = ['armor_efficiency_kinetic','5000','6800']
|
||||
stats += ['armor_efficiency_energy','3000','4800']
|
||||
stats += ['special_protection_heat','4000','5800']
|
||||
stats += ['special_protection_cold','4000','5800']
|
||||
stats += ['special_protection_acid','4000','5800']
|
||||
stats += ['special_protection_electricity','4000','5800']
|
||||
|
||||
return stats
|
||||
@@ -0,0 +1,31 @@
|
||||
|
||||
def itemTemplate():
|
||||
|
||||
return ['object/tangible/wearables/armor/ithorian_defender/shared_ith_armor_s01_bicep_r.iff']
|
||||
|
||||
def customItemName():
|
||||
|
||||
return 'Ithorian Defender Armor Bicep Right'
|
||||
|
||||
def customItemStackCount():
|
||||
|
||||
return 1
|
||||
|
||||
def customizationAttributes():
|
||||
|
||||
return []
|
||||
|
||||
def customizationValues():
|
||||
|
||||
return []
|
||||
|
||||
def itemStats():
|
||||
|
||||
stats = ['armor_efficiency_kinetic','5000','6800']
|
||||
stats += ['armor_efficiency_energy','3000','4800']
|
||||
stats += ['special_protection_heat','4000','5800']
|
||||
stats += ['special_protection_cold','4000','5800']
|
||||
stats += ['special_protection_acid','4000','5800']
|
||||
stats += ['special_protection_electricity','4000','5800']
|
||||
|
||||
return stats
|
||||
@@ -0,0 +1,31 @@
|
||||
|
||||
def itemTemplate():
|
||||
|
||||
return ['object/tangible/wearables/armor/ithorian_defender/shared_ith_armor_s01_boots.iff']
|
||||
|
||||
def customItemName():
|
||||
|
||||
return 'Ithorian Defender Armor Boots'
|
||||
|
||||
def customItemStackCount():
|
||||
|
||||
return 1
|
||||
|
||||
def customizationAttributes():
|
||||
|
||||
return []
|
||||
|
||||
def customizationValues():
|
||||
|
||||
return []
|
||||
|
||||
def itemStats():
|
||||
|
||||
stats = ['armor_efficiency_kinetic','5000','6800']
|
||||
stats += ['armor_efficiency_energy','3000','4800']
|
||||
stats += ['special_protection_heat','4000','5800']
|
||||
stats += ['special_protection_cold','4000','5800']
|
||||
stats += ['special_protection_acid','4000','5800']
|
||||
stats += ['special_protection_electricity','4000','5800']
|
||||
|
||||
return stats
|
||||
@@ -0,0 +1,31 @@
|
||||
|
||||
def itemTemplate():
|
||||
|
||||
return ['object/tangible/wearables/armor/ithorian_defender/shared_ith_armor_s01_bracer_l.iff']
|
||||
|
||||
def customItemName():
|
||||
|
||||
return 'Ithorian Defender Armor Bracer Left'
|
||||
|
||||
def customItemStackCount():
|
||||
|
||||
return 1
|
||||
|
||||
def customizationAttributes():
|
||||
|
||||
return []
|
||||
|
||||
def customizationValues():
|
||||
|
||||
return []
|
||||
|
||||
def itemStats():
|
||||
|
||||
stats = ['armor_efficiency_kinetic','5000','6800']
|
||||
stats += ['armor_efficiency_energy','3000','4800']
|
||||
stats += ['special_protection_heat','4000','5800']
|
||||
stats += ['special_protection_cold','4000','5800']
|
||||
stats += ['special_protection_acid','4000','5800']
|
||||
stats += ['special_protection_electricity','4000','5800']
|
||||
|
||||
return stats
|
||||
+31
@@ -0,0 +1,31 @@
|
||||
|
||||
def itemTemplate():
|
||||
|
||||
return ['object/tangible/wearables/armor/ithorian_defender/shared_ith_armor_s01_bracer_r.iff']
|
||||
|
||||
def customItemName():
|
||||
|
||||
return 'Ithorian Defender Armor Bracer Right'
|
||||
|
||||
def customItemStackCount():
|
||||
|
||||
return 1
|
||||
|
||||
def customizationAttributes():
|
||||
|
||||
return []
|
||||
|
||||
def customizationValues():
|
||||
|
||||
return []
|
||||
|
||||
def itemStats():
|
||||
|
||||
stats = ['armor_efficiency_kinetic','5000','6800']
|
||||
stats += ['armor_efficiency_energy','3000','4800']
|
||||
stats += ['special_protection_heat','4000','5800']
|
||||
stats += ['special_protection_cold','4000','5800']
|
||||
stats += ['special_protection_acid','4000','5800']
|
||||
stats += ['special_protection_electricity','4000','5800']
|
||||
|
||||
return stats
|
||||
@@ -0,0 +1,31 @@
|
||||
|
||||
def itemTemplate():
|
||||
|
||||
return ['object/tangible/wearables/armor/ithorian_defender/shared_ith_armor_s01_chest_plate.iff']
|
||||
|
||||
def customItemName():
|
||||
|
||||
return 'Ithorian Defender Armor Chestplate'
|
||||
|
||||
def customItemStackCount():
|
||||
|
||||
return 1
|
||||
|
||||
def customizationAttributes():
|
||||
|
||||
return []
|
||||
|
||||
def customizationValues():
|
||||
|
||||
return []
|
||||
|
||||
def itemStats():
|
||||
|
||||
stats = ['armor_efficiency_kinetic','5000','6800']
|
||||
stats += ['armor_efficiency_energy','3000','4800']
|
||||
stats += ['special_protection_heat','4000','5800']
|
||||
stats += ['special_protection_cold','4000','5800']
|
||||
stats += ['special_protection_acid','4000','5800']
|
||||
stats += ['special_protection_electricity','4000','5800']
|
||||
|
||||
return stats
|
||||
@@ -0,0 +1,31 @@
|
||||
|
||||
def itemTemplate():
|
||||
|
||||
return ['object/tangible/wearables/armor/ithorian_defender/shared_ith_armor_s01_gloves.iff']
|
||||
|
||||
def customItemName():
|
||||
|
||||
return 'Ithorian Defender Armor Gloves'
|
||||
|
||||
def customItemStackCount():
|
||||
|
||||
return 1
|
||||
|
||||
def customizationAttributes():
|
||||
|
||||
return []
|
||||
|
||||
def customizationValues():
|
||||
|
||||
return []
|
||||
|
||||
def itemStats():
|
||||
|
||||
stats = ['armor_efficiency_kinetic','5000','6800']
|
||||
stats += ['armor_efficiency_energy','3000','4800']
|
||||
stats += ['special_protection_heat','4000','5800']
|
||||
stats += ['special_protection_cold','4000','5800']
|
||||
stats += ['special_protection_acid','4000','5800']
|
||||
stats += ['special_protection_electricity','4000','5800']
|
||||
|
||||
return stats
|
||||
@@ -0,0 +1,31 @@
|
||||
|
||||
def itemTemplate():
|
||||
|
||||
return ['object/tangible/wearables/armor/ithorian_defender/shared_ith_armor_s01_helmet.iff']
|
||||
|
||||
def customItemName():
|
||||
|
||||
return 'Ithorian Defender Armor Helmet'
|
||||
|
||||
def customItemStackCount():
|
||||
|
||||
return 1
|
||||
|
||||
def customizationAttributes():
|
||||
|
||||
return []
|
||||
|
||||
def customizationValues():
|
||||
|
||||
return []
|
||||
|
||||
def itemStats():
|
||||
|
||||
stats = ['armor_efficiency_kinetic','5000','6800']
|
||||
stats += ['armor_efficiency_energy','3000','4800']
|
||||
stats += ['special_protection_heat','4000','5800']
|
||||
stats += ['special_protection_cold','4000','5800']
|
||||
stats += ['special_protection_acid','4000','5800']
|
||||
stats += ['special_protection_electricity','4000','5800']
|
||||
|
||||
return stats
|
||||
@@ -0,0 +1,31 @@
|
||||
|
||||
def itemTemplate():
|
||||
|
||||
return ['object/tangible/wearables/armor/ithorian_defender/shared_ith_armor_s01_leggings.iff']
|
||||
|
||||
def customItemName():
|
||||
|
||||
return 'Ithorian Defender Armor Leggings'
|
||||
|
||||
def customItemStackCount():
|
||||
|
||||
return 1
|
||||
|
||||
def customizationAttributes():
|
||||
|
||||
return []
|
||||
|
||||
def customizationValues():
|
||||
|
||||
return []
|
||||
|
||||
def itemStats():
|
||||
|
||||
stats = ['armor_efficiency_kinetic','5000','6800']
|
||||
stats += ['armor_efficiency_energy','3000','4800']
|
||||
stats += ['special_protection_heat','4000','5800']
|
||||
stats += ['special_protection_cold','4000','5800']
|
||||
stats += ['special_protection_acid','4000','5800']
|
||||
stats += ['special_protection_electricity','4000','5800']
|
||||
|
||||
return stats
|
||||
@@ -0,0 +1,31 @@
|
||||
|
||||
def itemTemplate():
|
||||
|
||||
return ['object/tangible/wearables/armor/ithorian_guardian/shared_ith_armor_s02_bicep_l.iff']
|
||||
|
||||
def customItemName():
|
||||
|
||||
return 'Ithorian Guardian Armor Bicep Left'
|
||||
|
||||
def customItemStackCount():
|
||||
|
||||
return 1
|
||||
|
||||
def customizationAttributes():
|
||||
|
||||
return []
|
||||
|
||||
def customizationValues():
|
||||
|
||||
return []
|
||||
|
||||
def itemStats():
|
||||
|
||||
stats = ['armor_efficiency_kinetic','5000','6800']
|
||||
stats += ['armor_efficiency_energy','3000','4800']
|
||||
stats += ['special_protection_heat','4000','5800']
|
||||
stats += ['special_protection_cold','4000','5800']
|
||||
stats += ['special_protection_acid','4000','5800']
|
||||
stats += ['special_protection_electricity','4000','5800']
|
||||
|
||||
return stats
|
||||
@@ -0,0 +1,31 @@
|
||||
|
||||
def itemTemplate():
|
||||
|
||||
return ['object/tangible/wearables/armor/ithorian_guardian/shared_ith_armor_s02_bicep_r.iff']
|
||||
|
||||
def customItemName():
|
||||
|
||||
return 'Ithorian Guardian Armor Bicep Right'
|
||||
|
||||
def customItemStackCount():
|
||||
|
||||
return 1
|
||||
|
||||
def customizationAttributes():
|
||||
|
||||
return []
|
||||
|
||||
def customizationValues():
|
||||
|
||||
return []
|
||||
|
||||
def itemStats():
|
||||
|
||||
stats = ['armor_efficiency_kinetic','5000','6800']
|
||||
stats += ['armor_efficiency_energy','3000','4800']
|
||||
stats += ['special_protection_heat','4000','5800']
|
||||
stats += ['special_protection_cold','4000','5800']
|
||||
stats += ['special_protection_acid','4000','5800']
|
||||
stats += ['special_protection_electricity','4000','5800']
|
||||
|
||||
return stats
|
||||
@@ -0,0 +1,31 @@
|
||||
|
||||
def itemTemplate():
|
||||
|
||||
return ['object/tangible/wearables/armor/ithorian_guardian/shared_ith_armor_s02_boots.iff']
|
||||
|
||||
def customItemName():
|
||||
|
||||
return 'Ithorian Guardian Armor Boots'
|
||||
|
||||
def customItemStackCount():
|
||||
|
||||
return 1
|
||||
|
||||
def customizationAttributes():
|
||||
|
||||
return []
|
||||
|
||||
def customizationValues():
|
||||
|
||||
return []
|
||||
|
||||
def itemStats():
|
||||
|
||||
stats = ['armor_efficiency_kinetic','5000','6800']
|
||||
stats += ['armor_efficiency_energy','3000','4800']
|
||||
stats += ['special_protection_heat','4000','5800']
|
||||
stats += ['special_protection_cold','4000','5800']
|
||||
stats += ['special_protection_acid','4000','5800']
|
||||
stats += ['special_protection_electricity','4000','5800']
|
||||
|
||||
return stats
|
||||
@@ -0,0 +1,31 @@
|
||||
|
||||
def itemTemplate():
|
||||
|
||||
return ['object/tangible/wearables/armor/ithorian_guardian/shared_ith_armor_s02_bracer_l.iff']
|
||||
|
||||
def customItemName():
|
||||
|
||||
return 'Ithorian Guardian Armor Bracer Left'
|
||||
|
||||
def customItemStackCount():
|
||||
|
||||
return 1
|
||||
|
||||
def customizationAttributes():
|
||||
|
||||
return []
|
||||
|
||||
def customizationValues():
|
||||
|
||||
return []
|
||||
|
||||
def itemStats():
|
||||
|
||||
stats = ['armor_efficiency_kinetic','5000','6800']
|
||||
stats += ['armor_efficiency_energy','3000','4800']
|
||||
stats += ['special_protection_heat','4000','5800']
|
||||
stats += ['special_protection_cold','4000','5800']
|
||||
stats += ['special_protection_acid','4000','5800']
|
||||
stats += ['special_protection_electricity','4000','5800']
|
||||
|
||||
return stats
|
||||
+31
@@ -0,0 +1,31 @@
|
||||
|
||||
def itemTemplate():
|
||||
|
||||
return ['object/tangible/wearables/armor/ithorian_guardian/shared_ith_armor_s02_bracer_r.iff']
|
||||
|
||||
def customItemName():
|
||||
|
||||
return 'Ithorian Guardian Armor Bracer Right'
|
||||
|
||||
def customItemStackCount():
|
||||
|
||||
return 1
|
||||
|
||||
def customizationAttributes():
|
||||
|
||||
return []
|
||||
|
||||
def customizationValues():
|
||||
|
||||
return []
|
||||
|
||||
def itemStats():
|
||||
|
||||
stats = ['armor_efficiency_kinetic','5000','6800']
|
||||
stats += ['armor_efficiency_energy','3000','4800']
|
||||
stats += ['special_protection_heat','4000','5800']
|
||||
stats += ['special_protection_cold','4000','5800']
|
||||
stats += ['special_protection_acid','4000','5800']
|
||||
stats += ['special_protection_electricity','4000','5800']
|
||||
|
||||
return stats
|
||||
@@ -0,0 +1,31 @@
|
||||
|
||||
def itemTemplate():
|
||||
|
||||
return ['object/tangible/wearables/armor/ithorian_guardian/shared_ith_armor_s02_chest_plate.iff']
|
||||
|
||||
def customItemName():
|
||||
|
||||
return 'Ithorian Guardian Armor Chestplate'
|
||||
|
||||
def customItemStackCount():
|
||||
|
||||
return 1
|
||||
|
||||
def customizationAttributes():
|
||||
|
||||
return []
|
||||
|
||||
def customizationValues():
|
||||
|
||||
return []
|
||||
|
||||
def itemStats():
|
||||
|
||||
stats = ['armor_efficiency_kinetic','5000','6800']
|
||||
stats += ['armor_efficiency_energy','3000','4800']
|
||||
stats += ['special_protection_heat','4000','5800']
|
||||
stats += ['special_protection_cold','4000','5800']
|
||||
stats += ['special_protection_acid','4000','5800']
|
||||
stats += ['special_protection_electricity','4000','5800']
|
||||
|
||||
return stats
|
||||
@@ -0,0 +1,31 @@
|
||||
|
||||
def itemTemplate():
|
||||
|
||||
return ['object/tangible/wearables/armor/ithorian_guardian/shared_ith_armor_s02_gloves.iff']
|
||||
|
||||
def customItemName():
|
||||
|
||||
return 'Ithorian Guardian Armor Gloves'
|
||||
|
||||
def customItemStackCount():
|
||||
|
||||
return 1
|
||||
|
||||
def customizationAttributes():
|
||||
|
||||
return []
|
||||
|
||||
def customizationValues():
|
||||
|
||||
return []
|
||||
|
||||
def itemStats():
|
||||
|
||||
stats = ['armor_efficiency_kinetic','5000','6800']
|
||||
stats += ['armor_efficiency_energy','3000','4800']
|
||||
stats += ['special_protection_heat','4000','5800']
|
||||
stats += ['special_protection_cold','4000','5800']
|
||||
stats += ['special_protection_acid','4000','5800']
|
||||
stats += ['special_protection_electricity','4000','5800']
|
||||
|
||||
return stats
|
||||
@@ -0,0 +1,31 @@
|
||||
|
||||
def itemTemplate():
|
||||
|
||||
return ['object/tangible/wearables/armor/ithorian_guardian/shared_ith_armor_s02_helmet.iff']
|
||||
|
||||
def customItemName():
|
||||
|
||||
return 'Ithorian Guardian Armor Helmet'
|
||||
|
||||
def customItemStackCount():
|
||||
|
||||
return 1
|
||||
|
||||
def customizationAttributes():
|
||||
|
||||
return []
|
||||
|
||||
def customizationValues():
|
||||
|
||||
return []
|
||||
|
||||
def itemStats():
|
||||
|
||||
stats = ['armor_efficiency_kinetic','5000','6800']
|
||||
stats += ['armor_efficiency_energy','3000','4800']
|
||||
stats += ['special_protection_heat','4000','5800']
|
||||
stats += ['special_protection_cold','4000','5800']
|
||||
stats += ['special_protection_acid','4000','5800']
|
||||
stats += ['special_protection_electricity','4000','5800']
|
||||
|
||||
return stats
|
||||
@@ -0,0 +1,31 @@
|
||||
|
||||
def itemTemplate():
|
||||
|
||||
return ['object/tangible/wearables/armor/ithorian_guardian/shared_ith_armor_s02_leggings.iff']
|
||||
|
||||
def customItemName():
|
||||
|
||||
return 'Ithorian Guardian Armor Leggings'
|
||||
|
||||
def customItemStackCount():
|
||||
|
||||
return 1
|
||||
|
||||
def customizationAttributes():
|
||||
|
||||
return []
|
||||
|
||||
def customizationValues():
|
||||
|
||||
return []
|
||||
|
||||
def itemStats():
|
||||
|
||||
stats = ['armor_efficiency_kinetic','5000','6800']
|
||||
stats += ['armor_efficiency_energy','3000','4800']
|
||||
stats += ['special_protection_heat','4000','5800']
|
||||
stats += ['special_protection_cold','4000','5800']
|
||||
stats += ['special_protection_acid','4000','5800']
|
||||
stats += ['special_protection_electricity','4000','5800']
|
||||
|
||||
return stats
|
||||
@@ -0,0 +1,31 @@
|
||||
|
||||
def itemTemplate():
|
||||
|
||||
return ['object/tangible/wearables/armor/ithorian_sentinel/shared_ith_armor_s03_bicep_l.iff']
|
||||
|
||||
def customItemName():
|
||||
|
||||
return 'Ithorian Sentinel Armor Bicep Left'
|
||||
|
||||
def customItemStackCount():
|
||||
|
||||
return 1
|
||||
|
||||
def customizationAttributes():
|
||||
|
||||
return []
|
||||
|
||||
def customizationValues():
|
||||
|
||||
return []
|
||||
|
||||
def itemStats():
|
||||
|
||||
stats = ['armor_efficiency_kinetic','5000','6800']
|
||||
stats += ['armor_efficiency_energy','3000','4800']
|
||||
stats += ['special_protection_heat','4000','5800']
|
||||
stats += ['special_protection_cold','4000','5800']
|
||||
stats += ['special_protection_acid','4000','5800']
|
||||
stats += ['special_protection_electricity','4000','5800']
|
||||
|
||||
return stats
|
||||
@@ -0,0 +1,31 @@
|
||||
|
||||
def itemTemplate():
|
||||
|
||||
return ['object/tangible/wearables/armor/ithorian_sentinel/shared_ith_armor_s03_bicep_r.iff']
|
||||
|
||||
def customItemName():
|
||||
|
||||
return 'Ithorian Sentinel Armor Bicep Right'
|
||||
|
||||
def customItemStackCount():
|
||||
|
||||
return 1
|
||||
|
||||
def customizationAttributes():
|
||||
|
||||
return []
|
||||
|
||||
def customizationValues():
|
||||
|
||||
return []
|
||||
|
||||
def itemStats():
|
||||
|
||||
stats = ['armor_efficiency_kinetic','5000','6800']
|
||||
stats += ['armor_efficiency_energy','3000','4800']
|
||||
stats += ['special_protection_heat','4000','5800']
|
||||
stats += ['special_protection_cold','4000','5800']
|
||||
stats += ['special_protection_acid','4000','5800']
|
||||
stats += ['special_protection_electricity','4000','5800']
|
||||
|
||||
return stats
|
||||
@@ -0,0 +1,31 @@
|
||||
|
||||
def itemTemplate():
|
||||
|
||||
return ['object/tangible/wearables/armor/ithorian_sentinel/shared_ith_armor_s03_boots.iff']
|
||||
|
||||
def customItemName():
|
||||
|
||||
return 'Ithorian Sentinel Armor Boots'
|
||||
|
||||
def customItemStackCount():
|
||||
|
||||
return 1
|
||||
|
||||
def customizationAttributes():
|
||||
|
||||
return []
|
||||
|
||||
def customizationValues():
|
||||
|
||||
return []
|
||||
|
||||
def itemStats():
|
||||
|
||||
stats = ['armor_efficiency_kinetic','5000','6800']
|
||||
stats += ['armor_efficiency_energy','3000','4800']
|
||||
stats += ['special_protection_heat','4000','5800']
|
||||
stats += ['special_protection_cold','4000','5800']
|
||||
stats += ['special_protection_acid','4000','5800']
|
||||
stats += ['special_protection_electricity','4000','5800']
|
||||
|
||||
return stats
|
||||
@@ -0,0 +1,31 @@
|
||||
|
||||
def itemTemplate():
|
||||
|
||||
return ['object/tangible/wearables/armor/ithorian_sentinel/shared_ith_armor_s03_bracer_l.iff']
|
||||
|
||||
def customItemName():
|
||||
|
||||
return 'Ithorian Sentinel Armor Bracer Left'
|
||||
|
||||
def customItemStackCount():
|
||||
|
||||
return 1
|
||||
|
||||
def customizationAttributes():
|
||||
|
||||
return []
|
||||
|
||||
def customizationValues():
|
||||
|
||||
return []
|
||||
|
||||
def itemStats():
|
||||
|
||||
stats = ['armor_efficiency_kinetic','5000','6800']
|
||||
stats += ['armor_efficiency_energy','3000','4800']
|
||||
stats += ['special_protection_heat','4000','5800']
|
||||
stats += ['special_protection_cold','4000','5800']
|
||||
stats += ['special_protection_acid','4000','5800']
|
||||
stats += ['special_protection_electricity','4000','5800']
|
||||
|
||||
return stats
|
||||
+31
@@ -0,0 +1,31 @@
|
||||
|
||||
def itemTemplate():
|
||||
|
||||
return ['object/tangible/wearables/armor/ithorian_sentinel/shared_ith_armor_s03_bracer_r.iff']
|
||||
|
||||
def customItemName():
|
||||
|
||||
return 'Ithorian Sentinel Armor Bracer Right'
|
||||
|
||||
def customItemStackCount():
|
||||
|
||||
return 1
|
||||
|
||||
def customizationAttributes():
|
||||
|
||||
return []
|
||||
|
||||
def customizationValues():
|
||||
|
||||
return []
|
||||
|
||||
def itemStats():
|
||||
|
||||
stats = ['armor_efficiency_kinetic','5000','6800']
|
||||
stats += ['armor_efficiency_energy','3000','4800']
|
||||
stats += ['special_protection_heat','4000','5800']
|
||||
stats += ['special_protection_cold','4000','5800']
|
||||
stats += ['special_protection_acid','4000','5800']
|
||||
stats += ['special_protection_electricity','4000','5800']
|
||||
|
||||
return stats
|
||||
@@ -0,0 +1,31 @@
|
||||
|
||||
def itemTemplate():
|
||||
|
||||
return ['object/tangible/wearables/armor/ithorian_sentinel/shared_ith_armor_s03_chest_plate.iff']
|
||||
|
||||
def customItemName():
|
||||
|
||||
return 'Ithorian Sentinel Armor Chestplate'
|
||||
|
||||
def customItemStackCount():
|
||||
|
||||
return 1
|
||||
|
||||
def customizationAttributes():
|
||||
|
||||
return []
|
||||
|
||||
def customizationValues():
|
||||
|
||||
return []
|
||||
|
||||
def itemStats():
|
||||
|
||||
stats = ['armor_efficiency_kinetic','5000','6800']
|
||||
stats += ['armor_efficiency_energy','3000','4800']
|
||||
stats += ['special_protection_heat','4000','5800']
|
||||
stats += ['special_protection_cold','4000','5800']
|
||||
stats += ['special_protection_acid','4000','5800']
|
||||
stats += ['special_protection_electricity','4000','5800']
|
||||
|
||||
return stats
|
||||
@@ -0,0 +1,31 @@
|
||||
|
||||
def itemTemplate():
|
||||
|
||||
return ['object/tangible/wearables/armor/ithorian_sentinel/shared_ith_armor_s03_gloves.iff']
|
||||
|
||||
def customItemName():
|
||||
|
||||
return 'Ithorian Sentinel Armor Gloves'
|
||||
|
||||
def customItemStackCount():
|
||||
|
||||
return 1
|
||||
|
||||
def customizationAttributes():
|
||||
|
||||
return []
|
||||
|
||||
def customizationValues():
|
||||
|
||||
return []
|
||||
|
||||
def itemStats():
|
||||
|
||||
stats = ['armor_efficiency_kinetic','5000','6800']
|
||||
stats += ['armor_efficiency_energy','3000','4800']
|
||||
stats += ['special_protection_heat','4000','5800']
|
||||
stats += ['special_protection_cold','4000','5800']
|
||||
stats += ['special_protection_acid','4000','5800']
|
||||
stats += ['special_protection_electricity','4000','5800']
|
||||
|
||||
return stats
|
||||
@@ -0,0 +1,31 @@
|
||||
|
||||
def itemTemplate():
|
||||
|
||||
return ['object/tangible/wearables/armor/ithorian_sentinel/shared_ith_armor_s03_helmet.iff']
|
||||
|
||||
def customItemName():
|
||||
|
||||
return 'Ithorian Sentinel Armor Helmet'
|
||||
|
||||
def customItemStackCount():
|
||||
|
||||
return 1
|
||||
|
||||
def customizationAttributes():
|
||||
|
||||
return []
|
||||
|
||||
def customizationValues():
|
||||
|
||||
return []
|
||||
|
||||
def itemStats():
|
||||
|
||||
stats = ['armor_efficiency_kinetic','5000','6800']
|
||||
stats += ['armor_efficiency_energy','3000','4800']
|
||||
stats += ['special_protection_heat','4000','5800']
|
||||
stats += ['special_protection_cold','4000','5800']
|
||||
stats += ['special_protection_acid','4000','5800']
|
||||
stats += ['special_protection_electricity','4000','5800']
|
||||
|
||||
return stats
|
||||
@@ -0,0 +1,31 @@
|
||||
|
||||
def itemTemplate():
|
||||
|
||||
return ['object/tangible/wearables/armor/ithorian_sentinel/shared_ith_armor_s03_leggings.iff']
|
||||
|
||||
def customItemName():
|
||||
|
||||
return 'Ithorian Sentinel Armor Leggings'
|
||||
|
||||
def customItemStackCount():
|
||||
|
||||
return 1
|
||||
|
||||
def customizationAttributes():
|
||||
|
||||
return []
|
||||
|
||||
def customizationValues():
|
||||
|
||||
return []
|
||||
|
||||
def itemStats():
|
||||
|
||||
stats = ['armor_efficiency_kinetic','5000','6800']
|
||||
stats += ['armor_efficiency_energy','3000','4800']
|
||||
stats += ['special_protection_heat','4000','5800']
|
||||
stats += ['special_protection_cold','4000','5800']
|
||||
stats += ['special_protection_acid','4000','5800']
|
||||
stats += ['special_protection_electricity','4000','5800']
|
||||
|
||||
return stats
|
||||
+31
@@ -0,0 +1,31 @@
|
||||
|
||||
def itemTemplate():
|
||||
|
||||
return ['object/tangible/wearables/armor/kashyyykian_black_mtn/shared_armor_kashyyykian_black_mtn_bicep_l.iff']
|
||||
|
||||
def customItemName():
|
||||
|
||||
return 'Kashyyykian Black Mountain Bicep Left'
|
||||
|
||||
def customItemStackCount():
|
||||
|
||||
return 1
|
||||
|
||||
def customizationAttributes():
|
||||
|
||||
return []
|
||||
|
||||
def customizationValues():
|
||||
|
||||
return []
|
||||
|
||||
def itemStats():
|
||||
|
||||
stats = ['armor_efficiency_kinetic','5000','6800']
|
||||
stats += ['armor_efficiency_energy','3000','4800']
|
||||
stats += ['special_protection_heat','4000','5800']
|
||||
stats += ['special_protection_cold','4000','5800']
|
||||
stats += ['special_protection_acid','4000','5800']
|
||||
stats += ['special_protection_electricity','4000','5800']
|
||||
|
||||
return stats
|
||||
+31
@@ -0,0 +1,31 @@
|
||||
|
||||
def itemTemplate():
|
||||
|
||||
return ['object/tangible/wearables/armor/kashyyykian_black_mtn/shared_armor_kashyyykian_black_mtn_bicep_r.iff']
|
||||
|
||||
def customItemName():
|
||||
|
||||
return 'Kashyyykian Black Mountain Bicep Right'
|
||||
|
||||
def customItemStackCount():
|
||||
|
||||
return 1
|
||||
|
||||
def customizationAttributes():
|
||||
|
||||
return []
|
||||
|
||||
def customizationValues():
|
||||
|
||||
return []
|
||||
|
||||
def itemStats():
|
||||
|
||||
stats = ['armor_efficiency_kinetic','5000','6800']
|
||||
stats += ['armor_efficiency_energy','3000','4800']
|
||||
stats += ['special_protection_heat','4000','5800']
|
||||
stats += ['special_protection_cold','4000','5800']
|
||||
stats += ['special_protection_acid','4000','5800']
|
||||
stats += ['special_protection_electricity','4000','5800']
|
||||
|
||||
return stats
|
||||
+31
@@ -0,0 +1,31 @@
|
||||
|
||||
def itemTemplate():
|
||||
|
||||
return ['object/tangible/wearables/armor/kashyyykian_black_mtn/shared_armor_kashyyykian_black_mtn_bracer_l.iff']
|
||||
|
||||
def customItemName():
|
||||
|
||||
return 'Kashyyykian Black Mountain Bracer Left'
|
||||
|
||||
def customItemStackCount():
|
||||
|
||||
return 1
|
||||
|
||||
def customizationAttributes():
|
||||
|
||||
return []
|
||||
|
||||
def customizationValues():
|
||||
|
||||
return []
|
||||
|
||||
def itemStats():
|
||||
|
||||
stats = ['armor_efficiency_kinetic','5000','6800']
|
||||
stats += ['armor_efficiency_energy','3000','4800']
|
||||
stats += ['special_protection_heat','4000','5800']
|
||||
stats += ['special_protection_cold','4000','5800']
|
||||
stats += ['special_protection_acid','4000','5800']
|
||||
stats += ['special_protection_electricity','4000','5800']
|
||||
|
||||
return stats
|
||||
+31
@@ -0,0 +1,31 @@
|
||||
|
||||
def itemTemplate():
|
||||
|
||||
return ['object/tangible/wearables/armor/kashyyykian_black_mtn/shared_armor_kashyyykian_black_mtn_bracer_r.iff']
|
||||
|
||||
def customItemName():
|
||||
|
||||
return 'Kashyyykian Black Mountain Bracer Right'
|
||||
|
||||
def customItemStackCount():
|
||||
|
||||
return 1
|
||||
|
||||
def customizationAttributes():
|
||||
|
||||
return []
|
||||
|
||||
def customizationValues():
|
||||
|
||||
return []
|
||||
|
||||
def itemStats():
|
||||
|
||||
stats = ['armor_efficiency_kinetic','5000','6800']
|
||||
stats += ['armor_efficiency_energy','3000','4800']
|
||||
stats += ['special_protection_heat','4000','5800']
|
||||
stats += ['special_protection_cold','4000','5800']
|
||||
stats += ['special_protection_acid','4000','5800']
|
||||
stats += ['special_protection_electricity','4000','5800']
|
||||
|
||||
return stats
|
||||
+31
@@ -0,0 +1,31 @@
|
||||
|
||||
def itemTemplate():
|
||||
|
||||
return ['object/tangible/wearables/armor/kashyyykian_black_mtn/shared_armor_kashyyykian_black_mtn_chestplate.iff']
|
||||
|
||||
def customItemName():
|
||||
|
||||
return 'Kashyyykian Black Mountain Chestplate'
|
||||
|
||||
def customItemStackCount():
|
||||
|
||||
return 1
|
||||
|
||||
def customizationAttributes():
|
||||
|
||||
return []
|
||||
|
||||
def customizationValues():
|
||||
|
||||
return []
|
||||
|
||||
def itemStats():
|
||||
|
||||
stats = ['armor_efficiency_kinetic','5000','6800']
|
||||
stats += ['armor_efficiency_energy','3000','4800']
|
||||
stats += ['special_protection_heat','4000','5800']
|
||||
stats += ['special_protection_cold','4000','5800']
|
||||
stats += ['special_protection_acid','4000','5800']
|
||||
stats += ['special_protection_electricity','4000','5800']
|
||||
|
||||
return stats
|
||||
@@ -0,0 +1,31 @@
|
||||
|
||||
def itemTemplate():
|
||||
|
||||
return ['object/tangible/wearables/armor/kashyyykian_black_mtn/shared_armor_kashyyykian_black_mtn_leggings.iff']
|
||||
|
||||
def customItemName():
|
||||
|
||||
return 'Kashyyykian Black Mountain Leggings'
|
||||
|
||||
def customItemStackCount():
|
||||
|
||||
return 1
|
||||
|
||||
def customizationAttributes():
|
||||
|
||||
return []
|
||||
|
||||
def customizationValues():
|
||||
|
||||
return []
|
||||
|
||||
def itemStats():
|
||||
|
||||
stats = ['armor_efficiency_kinetic','5000','6800']
|
||||
stats += ['armor_efficiency_energy','3000','4800']
|
||||
stats += ['special_protection_heat','4000','5800']
|
||||
stats += ['special_protection_cold','4000','5800']
|
||||
stats += ['special_protection_acid','4000','5800']
|
||||
stats += ['special_protection_electricity','4000','5800']
|
||||
|
||||
return stats
|
||||
+31
@@ -0,0 +1,31 @@
|
||||
|
||||
def itemTemplate():
|
||||
|
||||
return ['object/tangible/wearables/armor/kashyyykian_ceremonial/shared_armor_kashyyykian_ceremonial_bicep_l.iff']
|
||||
|
||||
def customItemName():
|
||||
|
||||
return 'Kashyyykian Ceremonial Bicep Left'
|
||||
|
||||
def customItemStackCount():
|
||||
|
||||
return 1
|
||||
|
||||
def customizationAttributes():
|
||||
|
||||
return []
|
||||
|
||||
def customizationValues():
|
||||
|
||||
return []
|
||||
|
||||
def itemStats():
|
||||
|
||||
stats = ['armor_efficiency_kinetic','5000','6800']
|
||||
stats += ['armor_efficiency_energy','3000','4800']
|
||||
stats += ['special_protection_heat','4000','5800']
|
||||
stats += ['special_protection_cold','4000','5800']
|
||||
stats += ['special_protection_acid','4000','5800']
|
||||
stats += ['special_protection_electricity','4000','5800']
|
||||
|
||||
return stats
|
||||
+31
@@ -0,0 +1,31 @@
|
||||
|
||||
def itemTemplate():
|
||||
|
||||
return ['object/tangible/wearables/armor/kashyyykian_ceremonial/shared_armor_kashyyykian_ceremonial_bicep_r.iff']
|
||||
|
||||
def customItemName():
|
||||
|
||||
return 'Kashyyykian Ceremonial Bicep Right'
|
||||
|
||||
def customItemStackCount():
|
||||
|
||||
return 1
|
||||
|
||||
def customizationAttributes():
|
||||
|
||||
return []
|
||||
|
||||
def customizationValues():
|
||||
|
||||
return []
|
||||
|
||||
def itemStats():
|
||||
|
||||
stats = ['armor_efficiency_kinetic','5000','6800']
|
||||
stats += ['armor_efficiency_energy','3000','4800']
|
||||
stats += ['special_protection_heat','4000','5800']
|
||||
stats += ['special_protection_cold','4000','5800']
|
||||
stats += ['special_protection_acid','4000','5800']
|
||||
stats += ['special_protection_electricity','4000','5800']
|
||||
|
||||
return stats
|
||||
+31
@@ -0,0 +1,31 @@
|
||||
|
||||
def itemTemplate():
|
||||
|
||||
return ['object/tangible/wearables/armor/kashyyykian_ceremonial/shared_armor_kashyyykian_ceremonial_bracer_l.iff']
|
||||
|
||||
def customItemName():
|
||||
|
||||
return 'Kashyyykian Ceremonial Bracer Left'
|
||||
|
||||
def customItemStackCount():
|
||||
|
||||
return 1
|
||||
|
||||
def customizationAttributes():
|
||||
|
||||
return []
|
||||
|
||||
def customizationValues():
|
||||
|
||||
return []
|
||||
|
||||
def itemStats():
|
||||
|
||||
stats = ['armor_efficiency_kinetic','5000','6800']
|
||||
stats += ['armor_efficiency_energy','3000','4800']
|
||||
stats += ['special_protection_heat','4000','5800']
|
||||
stats += ['special_protection_cold','4000','5800']
|
||||
stats += ['special_protection_acid','4000','5800']
|
||||
stats += ['special_protection_electricity','4000','5800']
|
||||
|
||||
return stats
|
||||
+31
@@ -0,0 +1,31 @@
|
||||
|
||||
def itemTemplate():
|
||||
|
||||
return ['object/tangible/wearables/armor/kashyyykian_ceremonial/shared_armor_kashyyykian_ceremonial_bracer_r.iff']
|
||||
|
||||
def customItemName():
|
||||
|
||||
return 'Kashyyykian Ceremonial Bracer Left'
|
||||
|
||||
def customItemStackCount():
|
||||
|
||||
return 1
|
||||
|
||||
def customizationAttributes():
|
||||
|
||||
return []
|
||||
|
||||
def customizationValues():
|
||||
|
||||
return []
|
||||
|
||||
def itemStats():
|
||||
|
||||
stats = ['armor_efficiency_kinetic','5000','6800']
|
||||
stats += ['armor_efficiency_energy','3000','4800']
|
||||
stats += ['special_protection_heat','4000','5800']
|
||||
stats += ['special_protection_cold','4000','5800']
|
||||
stats += ['special_protection_acid','4000','5800']
|
||||
stats += ['special_protection_electricity','4000','5800']
|
||||
|
||||
return stats
|
||||
+31
@@ -0,0 +1,31 @@
|
||||
|
||||
def itemTemplate():
|
||||
|
||||
return ['object/tangible/wearables/armor/kashyyykian_ceremonial/shared_armor_kashyyykian_ceremonial_chestplate.iff']
|
||||
|
||||
def customItemName():
|
||||
|
||||
return 'Kashyyykian Ceremonial Chestplate'
|
||||
|
||||
def customItemStackCount():
|
||||
|
||||
return 1
|
||||
|
||||
def customizationAttributes():
|
||||
|
||||
return []
|
||||
|
||||
def customizationValues():
|
||||
|
||||
return []
|
||||
|
||||
def itemStats():
|
||||
|
||||
stats = ['armor_efficiency_kinetic','5000','6800']
|
||||
stats += ['armor_efficiency_energy','3000','4800']
|
||||
stats += ['special_protection_heat','4000','5800']
|
||||
stats += ['special_protection_cold','4000','5800']
|
||||
stats += ['special_protection_acid','4000','5800']
|
||||
stats += ['special_protection_electricity','4000','5800']
|
||||
|
||||
return stats
|
||||
+31
@@ -0,0 +1,31 @@
|
||||
|
||||
def itemTemplate():
|
||||
|
||||
return ['object/tangible/wearables/armor/kashyyykian_ceremonial/shared_armor_kashyyykian_ceremonial_leggings.iff']
|
||||
|
||||
def customItemName():
|
||||
|
||||
return 'Kashyyykian Ceremonial Leggings'
|
||||
|
||||
def customItemStackCount():
|
||||
|
||||
return 1
|
||||
|
||||
def customizationAttributes():
|
||||
|
||||
return []
|
||||
|
||||
def customizationValues():
|
||||
|
||||
return []
|
||||
|
||||
def itemStats():
|
||||
|
||||
stats = ['armor_efficiency_kinetic','5000','6800']
|
||||
stats += ['armor_efficiency_energy','3000','4800']
|
||||
stats += ['special_protection_heat','4000','5800']
|
||||
stats += ['special_protection_cold','4000','5800']
|
||||
stats += ['special_protection_acid','4000','5800']
|
||||
stats += ['special_protection_electricity','4000','5800']
|
||||
|
||||
return stats
|
||||
@@ -0,0 +1,31 @@
|
||||
|
||||
def itemTemplate():
|
||||
|
||||
return ['object/tangible/wearables/armor/kashyyykian_hunting/shared_armor_kashyyykian_hunting_bicep_l.iff']
|
||||
|
||||
def customItemName():
|
||||
|
||||
return 'Kashyyykian Hunting Bicep Left'
|
||||
|
||||
def customItemStackCount():
|
||||
|
||||
return 1
|
||||
|
||||
def customizationAttributes():
|
||||
|
||||
return []
|
||||
|
||||
def customizationValues():
|
||||
|
||||
return []
|
||||
|
||||
def itemStats():
|
||||
|
||||
stats = ['armor_efficiency_kinetic','5000','6800']
|
||||
stats += ['armor_efficiency_energy','3000','4800']
|
||||
stats += ['special_protection_heat','4000','5800']
|
||||
stats += ['special_protection_cold','4000','5800']
|
||||
stats += ['special_protection_acid','4000','5800']
|
||||
stats += ['special_protection_electricity','4000','5800']
|
||||
|
||||
return stats
|
||||
@@ -0,0 +1,31 @@
|
||||
|
||||
def itemTemplate():
|
||||
|
||||
return ['object/tangible/wearables/armor/kashyyykian_hunting/shared_armor_kashyyykian_hunting_bicep_r.iff']
|
||||
|
||||
def customItemName():
|
||||
|
||||
return 'Kashyyykian Hunting Bicep Right'
|
||||
|
||||
def customItemStackCount():
|
||||
|
||||
return 1
|
||||
|
||||
def customizationAttributes():
|
||||
|
||||
return []
|
||||
|
||||
def customizationValues():
|
||||
|
||||
return []
|
||||
|
||||
def itemStats():
|
||||
|
||||
stats = ['armor_efficiency_kinetic','5000','6800']
|
||||
stats += ['armor_efficiency_energy','3000','4800']
|
||||
stats += ['special_protection_heat','4000','5800']
|
||||
stats += ['special_protection_cold','4000','5800']
|
||||
stats += ['special_protection_acid','4000','5800']
|
||||
stats += ['special_protection_electricity','4000','5800']
|
||||
|
||||
return stats
|
||||
@@ -0,0 +1,31 @@
|
||||
|
||||
def itemTemplate():
|
||||
|
||||
return ['object/tangible/wearables/armor/kashyyykian_hunting/shared_armor_kashyyykian_hunting_bracer_l.iff']
|
||||
|
||||
def customItemName():
|
||||
|
||||
return 'Kashyyykian Hunting Bracer Left'
|
||||
|
||||
def customItemStackCount():
|
||||
|
||||
return 1
|
||||
|
||||
def customizationAttributes():
|
||||
|
||||
return []
|
||||
|
||||
def customizationValues():
|
||||
|
||||
return []
|
||||
|
||||
def itemStats():
|
||||
|
||||
stats = ['armor_efficiency_kinetic','5000','6800']
|
||||
stats += ['armor_efficiency_energy','3000','4800']
|
||||
stats += ['special_protection_heat','4000','5800']
|
||||
stats += ['special_protection_cold','4000','5800']
|
||||
stats += ['special_protection_acid','4000','5800']
|
||||
stats += ['special_protection_electricity','4000','5800']
|
||||
|
||||
return stats
|
||||
@@ -0,0 +1,31 @@
|
||||
|
||||
def itemTemplate():
|
||||
|
||||
return ['object/tangible/wearables/armor/kashyyykian_hunting/shared_armor_kashyyykian_hunting_bracer_r.iff']
|
||||
|
||||
def customItemName():
|
||||
|
||||
return 'Kashyyykian Hunting Bracer Right'
|
||||
|
||||
def customItemStackCount():
|
||||
|
||||
return 1
|
||||
|
||||
def customizationAttributes():
|
||||
|
||||
return []
|
||||
|
||||
def customizationValues():
|
||||
|
||||
return []
|
||||
|
||||
def itemStats():
|
||||
|
||||
stats = ['armor_efficiency_kinetic','5000','6800']
|
||||
stats += ['armor_efficiency_energy','3000','4800']
|
||||
stats += ['special_protection_heat','4000','5800']
|
||||
stats += ['special_protection_cold','4000','5800']
|
||||
stats += ['special_protection_acid','4000','5800']
|
||||
stats += ['special_protection_electricity','4000','5800']
|
||||
|
||||
return stats
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user