mirror of
https://github.com/ProjectSWGCore/NGECore2.git
synced 2026-09-11 21:45:43 -04:00
Fix
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
from java.lang import System
|
||||
import sys
|
||||
|
||||
def modify(core, actor, count):
|
||||
return
|
||||
|
||||
def complete(core, actor, collection):
|
||||
ghost = actor.getSlottedObject('ghost')
|
||||
actor.sendSystemMessage('@collection_n:inv_holocron_collection_01_finished', 0)
|
||||
print ('Collection Finished Test')
|
||||
bb = core.objectService.createObject('object/tangible/wearables/backpack/shared_fannypack_s01.iff', object.getPlanet())
|
||||
core.playerService.giveItem(actor, bb)
|
||||
print ('test2')
|
||||
|
||||
return
|
||||
@@ -12,51 +12,41 @@ def run(core, actor, target, commandString):
|
||||
|
||||
canEquip = core.equipmentService.canEquip(actor, target)
|
||||
|
||||
if target and container and target.getContainer():
|
||||
oldContainer = target.getContainer()
|
||||
|
||||
if container == oldContainer:
|
||||
print 'Error: New container is same as old container.'
|
||||
return;
|
||||
|
||||
if canEquip[0] is False and container == actor:
|
||||
actor.sendSystemMessage(canEquip[1], 0)
|
||||
return
|
||||
|
||||
replacedObject = None
|
||||
slotName = None
|
||||
replacedObjects = []
|
||||
slotNames = None
|
||||
|
||||
if actor == container:
|
||||
slotNames = container.getSlotNamesForObject(target)
|
||||
|
||||
for slotName in slotNames:
|
||||
object = container.getSlottedObject(slotName)
|
||||
|
||||
if not object in replacedObjects and not object == None:
|
||||
replacedObjects.append(object)
|
||||
|
||||
if object != None:
|
||||
actor.transferTo(actor, oldContainer, object)
|
||||
|
||||
if target and container and target.getContainer():
|
||||
oldContainer = target.getContainer()
|
||||
if container == oldContainer:
|
||||
print 'Error: New container is same as old container.'
|
||||
return;
|
||||
replacedObject = None
|
||||
slotName = None
|
||||
replacedObjects = []
|
||||
slotNames = None
|
||||
if actor == container:
|
||||
slotNames = container.getSlotNamesForObject(target)
|
||||
for slotName in slotNames:
|
||||
object = container.getSlottedObject(slotName)
|
||||
if not object in replacedObjects and not object == None:
|
||||
replacedObjects.append(object)
|
||||
|
||||
oldContainer.transferTo(actor, container, target)
|
||||
|
||||
if actor == container:
|
||||
if target.getTemplate().find('/wearables/') or target.getTemplate().find('/weapon/'):
|
||||
core.equipmentService.equip(actor, target)
|
||||
for object in replacedObjects:
|
||||
core.equipmentService.unequip(actor, object)
|
||||
#path = 'scripts/' + target.getTemplate().rpartition('/')[0] + '/'
|
||||
#module = target.getTemplate().rpartition('/')[2].replace('shared_', '').replace('.iff', '')
|
||||
#core.scriptService.callScript(path, 'equip', module, core, actor, target)
|
||||
|
||||
if container == actor.getSlottedObject('appearance_inventory'):
|
||||
actor.addObjectToAppearanceEquipList(target)
|
||||
for object in replacedObjects:
|
||||
actor.removeObjectFromAppearanceEquipList(object)
|
||||
|
||||
if oldContainer == actor.getSlottedObject('appearance_inventory'):
|
||||
actor.removeObjectFromAppearanceEquipList(target)
|
||||
|
||||
if actor == oldContainer:
|
||||
if target.getTemplate().find('/wearables/') or target.getTemplate().find('/weapon/'):
|
||||
#path = 'scripts/' + target.getTemplate().rpartition('/')[0] + '/'
|
||||
#module = target.getTemplate().rpartition('/')[2].replace('shared_', '').replace('.iff', '')
|
||||
#core.scriptService.callScript(path, 'unequip', module, core, actor, target)
|
||||
core.equipmentService.unequip(actor, target, replacedObject)
|
||||
oldContainer.transferTo(actor, container, target)
|
||||
|
||||
if oldContainer == actor.getSlottedObject('appearance_inventory'):
|
||||
actor.removeObjectFromAppearanceEquipList(target)
|
||||
|
||||
if container == actor.getSlottedObject('appearance_inventory'):
|
||||
actor.addObjectToAppearanceEquipList(target)
|
||||
|
||||
return
|
||||
|
||||
@@ -2,102 +2,90 @@ import sys
|
||||
from engine.resources.scene import Quaternion
|
||||
|
||||
def setup():
|
||||
return
|
||||
|
||||
return
|
||||
|
||||
def run(core, actor, target, commandString):
|
||||
parsedMsg = commandString.split(' ', 3)
|
||||
objService = core.objectService
|
||||
containerID = long(parsedMsg[1])
|
||||
container = objService.getObject(containerID)
|
||||
actorContainer = actor.getContainer()
|
||||
|
||||
if container == None: return
|
||||
|
||||
if not 'cell' in container.getTemplate() and container.isFull():
|
||||
actor.sendSystemMessage('@container_error_message:container03', 0)
|
||||
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;
|
||||
parsedMsg = commandString.split(' ', 3)
|
||||
objService = core.objectService
|
||||
containerID = long(parsedMsg[1])
|
||||
container = objService.getObject(containerID)
|
||||
actorContainer = actor.getContainer()
|
||||
|
||||
if container == None: return
|
||||
|
||||
if not 'cell' in container.getTemplate() and container.isFull():
|
||||
actor.sendSystemMessage('@container_error_message:container03', 0)
|
||||
return
|
||||
|
||||
if target.getTemplate() == 'object/tangible/item/shared_loot_cash.iff':
|
||||
core.lootService.handleCreditPickUp(actor,target)
|
||||
if target.getGrandparent().getInventoryItemCount()==1:
|
||||
core.lootService.setLooted(actor,target.getGrandparent())
|
||||
core.objectService.destroyObject(target)
|
||||
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)
|
||||
if target.getGrandparent().getInventoryItemCount()==1:
|
||||
core.lootService.setLooted(actor,target.getGrandparent())
|
||||
core.objectService.destroyObject(target)
|
||||
return
|
||||
|
||||
if target.isLootItem():
|
||||
target.setLootItem(0)
|
||||
actor.sendSystemMessage('You looted ' + target.getObjectName().getStfValue() + ' from corpse.', 0)
|
||||
#actor.sendSystemMessage('container.getInventoryItemCount() %s' % target.getGrandparent().getInventoryItemCount(), 0)
|
||||
if target.getGrandparent().getInventoryItemCount()==1:
|
||||
core.lootService.setLooted(actor,target.getGrandparent())
|
||||
|
||||
if actorContainer != None and (container.getTemplate() == "object/cell/shared_cell.iff") & core.housingService.getPermissions(actor, actorContainer):
|
||||
if target.isLootItem():
|
||||
target.setLootItem(0)
|
||||
actor.sendSystemMessage('You looted ' + target.getObjectName().getStfValue() + ' from corpse.', 0)
|
||||
#actor.sendSystemMessage('container.getInventoryItemCount() %s' % target.getGrandparent().getInventoryItemCount(), 0)
|
||||
if target.getGrandparent().getInventoryItemCount()==1:
|
||||
core.lootService.setLooted(actor,target.getGrandparent())
|
||||
|
||||
if actorContainer != None and (container.getTemplate() == "object/cell/shared_cell.iff") & core.housingService.getPermissions(actor, actorContainer):
|
||||
target.getContainer().transferTo(actor, container, target)
|
||||
core.simulationService.teleport(target, actor.getPosition(), Quaternion(1,0,0,0), containerID)
|
||||
return
|
||||
|
||||
elif target.getContainer().getTemplate() == "object/cell/shared_cell.iff" and core.housingService.getPermissions(actor, target.getContainer()):
|
||||
elif target.getContainer().getTemplate() == "object/cell/shared_cell.iff" and core.housingService.getPermissions(actor, target.getContainer()):
|
||||
target.getContainer().transferTo(actor, container, target)
|
||||
return
|
||||
|
||||
elif actorContainer != None and container.getTemplate() == "object/cell/shared_cell.iff":
|
||||
actor.sendSystemMessage("You do not have permission to access that container!", 0)
|
||||
return
|
||||
elif actorContainer != None and container.getTemplate() == "object/cell/shared_cell.iff":
|
||||
actor.sendSystemMessage("You do not have permission to access that container!", 0)
|
||||
return
|
||||
|
||||
canEquip = core.equipmentService.canEquip(actor, target)
|
||||
canEquip = core.equipmentService.canEquip(actor, target)
|
||||
|
||||
if canEquip[0] is False and container == actor:
|
||||
actor.sendSystemMessage(canEquip[1], 0)
|
||||
return
|
||||
if canEquip[0] is False and container == actor:
|
||||
actor.sendSystemMessage(canEquip[1], 0)
|
||||
return
|
||||
|
||||
|
||||
if target and container and target.getContainer():
|
||||
oldContainer = target.getContainer()
|
||||
|
||||
if container == oldContainer:
|
||||
print 'Error: New container is same as old container.'
|
||||
return;
|
||||
|
||||
if target and container and target.getContainer():
|
||||
oldContainer = target.getContainer()
|
||||
|
||||
if container == oldContainer:
|
||||
print 'Error: New container is same as old container.'
|
||||
return;
|
||||
|
||||
replacedObject = None
|
||||
slotName = None
|
||||
replacedObjects = []
|
||||
replacedObjects = []
|
||||
slotNames = None
|
||||
if actor == container:
|
||||
|
||||
if actor == container:
|
||||
slotNames = container.getSlotNamesForObject(target)
|
||||
|
||||
for slotName in slotNames:
|
||||
object = container.getSlottedObject(slotName)
|
||||
|
||||
if not object in replacedObjects and not object == None:
|
||||
replacedObjects.append(object)
|
||||
|
||||
oldContainer.transferTo(actor, container, target)
|
||||
|
||||
for object in replacedObjects:
|
||||
core.equipmentService.unequip(actor, object)
|
||||
|
||||
if actor == container:
|
||||
if target.getTemplate().find('/wearables/') or target.getTemplate().find('/weapon/'):
|
||||
core.equipmentService.equip(actor, target)
|
||||
|
||||
#path = 'scripts/' + target.getTemplate().rpartition('/')[0] + '/'
|
||||
#module = target.getTemplate().rpartition('/')[2].replace('shared_', '').replace('.iff', '')
|
||||
#core.scriptService.callScript(path, 'equip', module, core, actor, target)
|
||||
if container == actor.getSlottedObject('appearance_inventory'):
|
||||
actor.addObjectToAppearanceEquipList(target)
|
||||
for object in replacedObjects:
|
||||
actor.removeObjectFromAppearanceEquipList(object)
|
||||
if object != None:
|
||||
container.transferTo(actor, container, object)
|
||||
|
||||
oldContainer.transferTo(actor, container, target)
|
||||
|
||||
if oldContainer == actor.getSlottedObject('appearance_inventory'):
|
||||
actor.removeObjectFromAppearanceEquipList(target)
|
||||
|
||||
if container == actor.getSlottedObject('appearance_inventory'):
|
||||
actor.addObjectToAppearanceEquipList(target)
|
||||
|
||||
if actor == oldContainer:
|
||||
if target.getTemplate().find('/wearables/') or target.getTemplate().find('/weapon/'):
|
||||
#path = 'scripts/' + target.getTemplate().rpartition('/')[0] + '/'
|
||||
#module = target.getTemplate().rpartition('/')[2].replace('shared_', '').replace('.iff', '')
|
||||
#core.scriptService.callScript(path, 'unequip', module, core, actor, target)
|
||||
core.equipmentService.unequip(actor, target)
|
||||
|
||||
return
|
||||
return
|
||||
|
||||
@@ -14,8 +14,8 @@ def run(core, actor, target, commandString):
|
||||
if target and container and target.getContainer():
|
||||
oldContainer = target.getContainer()
|
||||
if container == oldContainer:
|
||||
print 'Error: New container is same as old container.'
|
||||
return;
|
||||
print 'Error: New container is same as old container.'
|
||||
return;
|
||||
|
||||
canEquip = core.equipmentService.canEquip(actor, target)
|
||||
|
||||
@@ -25,32 +25,22 @@ def run(core, actor, target, commandString):
|
||||
|
||||
replacedObject = None
|
||||
slotName = None
|
||||
replacedObjects = []
|
||||
replacedObjects = []
|
||||
slotNames = None
|
||||
if actor == container:
|
||||
|
||||
if actor == container:
|
||||
slotNames = container.getSlotNamesForObject(target)
|
||||
|
||||
for slotName in slotNames:
|
||||
object = container.getSlottedObject(slotName)
|
||||
|
||||
if not object in replacedObjects and not object == None:
|
||||
replacedObjects.append(object)
|
||||
|
||||
if object != None:
|
||||
container.transferTo(actor, container, object)
|
||||
|
||||
oldContainer.transferTo(actor, container, target)
|
||||
|
||||
oldContainer.transferTo(actor, container, target)
|
||||
|
||||
if actor == container:
|
||||
if target.getTemplate().find('/wearables/') or target.getTemplate().find('/weapon/'):
|
||||
core.equipmentService.equip(actor, target)
|
||||
for object in replacedObjects:
|
||||
core.equipmentService.unequip(actor, object)
|
||||
#path = 'scripts/' + target.getTemplate().rpartition('/')[0] + '/'
|
||||
#module = target.getTemplate().rpartition('/')[2].replace('shared_', '').replace('.iff', '')
|
||||
#core.scriptService.callScript(path, 'equip', module, core, actor, target)
|
||||
|
||||
if actor == oldContainer:
|
||||
if target.getTemplate().find('/wearables/') or target.getTemplate().find('/weapon/'):
|
||||
#path = 'scripts/' + target.getTemplate().rpartition('/')[0] + '/'
|
||||
#module = target.getTemplate().rpartition('/')[2].replace('shared_', '').replace('.iff', '')
|
||||
#core.scriptService.callScript(path, 'unequip', module, core, actor, target)
|
||||
core.equipmentService.unequip(actor, target, replacedObject)
|
||||
actor.setWeaponId(target.getObjectID())
|
||||
return
|
||||
|
||||
@@ -0,0 +1,7 @@
|
||||
import sys
|
||||
import time
|
||||
|
||||
def buildConstructor(core):
|
||||
time.sleep(10)
|
||||
return
|
||||
|
||||
@@ -0,0 +1,29 @@
|
||||
def itemTemplate():
|
||||
|
||||
return ['object/tangible/loot/creature_loot/collections/shared_col_glass_shelf_book_01.iff']
|
||||
|
||||
def lootDescriptor():
|
||||
|
||||
return 'customattributes'
|
||||
|
||||
def customizationAttributes():
|
||||
return ['/private/index_color_1']
|
||||
|
||||
def customizationValues():
|
||||
return [1]
|
||||
|
||||
def STFparams():
|
||||
|
||||
return ['static_item_n','col_glass_shelf_02_01','static_item_d','col_glass_shelf_02_01']
|
||||
|
||||
def AddToCollection():
|
||||
|
||||
return 'col_glass_shelf_01'
|
||||
|
||||
def CollectionItemName():
|
||||
|
||||
return 'col_glass_shelf_chapter1'
|
||||
|
||||
def stackable():
|
||||
|
||||
return 1
|
||||
@@ -0,0 +1,29 @@
|
||||
def itemTemplate():
|
||||
|
||||
return ['object/tangible/loot/creature_loot/collections/shared_col_glass_shelf_book_01.iff']
|
||||
|
||||
def lootDescriptor():
|
||||
|
||||
return 'customattributes'
|
||||
|
||||
def customizationAttributes():
|
||||
return ['/private/index_color_1']
|
||||
|
||||
def customizationValues():
|
||||
return [2]
|
||||
|
||||
def STFparams():
|
||||
|
||||
return ['static_item_n','col_glass_shelf_02_02','static_item_d','col_glass_shelf_02_02']
|
||||
|
||||
def AddToCollection():
|
||||
|
||||
return 'col_glass_shelf_01'
|
||||
|
||||
def CollectionItemName():
|
||||
|
||||
return 'col_glass_shelf_chapter2'
|
||||
|
||||
def stackable():
|
||||
|
||||
return 1
|
||||
@@ -0,0 +1,29 @@
|
||||
def itemTemplate():
|
||||
|
||||
return ['object/tangible/loot/creature_loot/collections/shared_col_glass_shelf_book_01.iff']
|
||||
|
||||
def lootDescriptor():
|
||||
|
||||
return 'customattributes'
|
||||
|
||||
def customizationAttributes():
|
||||
return ['/private/index_color_1']
|
||||
|
||||
def customizationValues():
|
||||
return [3]
|
||||
|
||||
def STFparams():
|
||||
|
||||
return ['static_item_n','col_glass_shelf_02_03','static_item_d','col_glass_shelf_02_03']
|
||||
|
||||
def AddToCollection():
|
||||
|
||||
return 'col_glass_shelf_01'
|
||||
|
||||
def CollectionItemName():
|
||||
|
||||
return 'col_glass_shelf_chapter3'
|
||||
|
||||
def stackable():
|
||||
|
||||
return 1
|
||||
@@ -0,0 +1,29 @@
|
||||
def itemTemplate():
|
||||
|
||||
return ['object/tangible/loot/creature_loot/collections/shared_col_glass_shelf_book_01.iff']
|
||||
|
||||
def lootDescriptor():
|
||||
|
||||
return 'customattributes'
|
||||
|
||||
def customizationAttributes():
|
||||
return ['/private/index_color_1']
|
||||
|
||||
def customizationValues():
|
||||
return [4]
|
||||
|
||||
def STFparams():
|
||||
|
||||
return ['static_item_n','col_glass_shelf_02_04','static_item_d','col_glass_shelf_02_04']
|
||||
|
||||
def AddToCollection():
|
||||
|
||||
return 'col_glass_shelf_01'
|
||||
|
||||
def CollectionItemName():
|
||||
|
||||
return 'col_glass_shelf_chapter4'
|
||||
|
||||
def stackable():
|
||||
|
||||
return 1
|
||||
@@ -0,0 +1,29 @@
|
||||
def itemTemplate():
|
||||
|
||||
return ['object/tangible/loot/creature_loot/collections/shared_col_glass_shelf_book_01.iff']
|
||||
|
||||
def lootDescriptor():
|
||||
|
||||
return 'customattributes'
|
||||
|
||||
def customizationAttributes():
|
||||
return ['/private/index_color_1']
|
||||
|
||||
def customizationValues():
|
||||
return [5]
|
||||
|
||||
def STFparams():
|
||||
|
||||
return ['static_item_n','col_glass_shelf_02_05','static_item_d','col_glass_shelf_02_05']
|
||||
|
||||
def AddToCollection():
|
||||
|
||||
return 'col_glass_shelf_01'
|
||||
|
||||
def CollectionItemName():
|
||||
|
||||
return 'col_glass_shelf_chapter5'
|
||||
|
||||
def stackable():
|
||||
|
||||
return 1
|
||||
@@ -0,0 +1,19 @@
|
||||
def itemTemplate():
|
||||
|
||||
return ['object/tangible/loot/creature_loot/collections/shared_green_sq_cut_gem_style1.iff']
|
||||
|
||||
def STFparams():
|
||||
|
||||
return ['static_item_n','col_green_sq_cut_gem_style1_02_02','static_item_d','col_green_sq_cut_gem_style1_02_02']
|
||||
|
||||
def AddToCollection():
|
||||
|
||||
return 'col_square_green_cut_gem_01'
|
||||
|
||||
def CollectionItemName():
|
||||
|
||||
return 'square_green_gem_style1_02'
|
||||
|
||||
def stackable():
|
||||
|
||||
return 1
|
||||
@@ -0,0 +1,19 @@
|
||||
def itemTemplate():
|
||||
|
||||
return ['object/tangible/loot/creature_loot/collections/shared_green_sq_cut_gem_style1.iff']
|
||||
|
||||
def STFparams():
|
||||
|
||||
return ['static_item_n','col_green_sq_cut_gem_style1_02_03','static_item_d','col_green_sq_cut_gem_style1_02_03']
|
||||
|
||||
def AddToCollection():
|
||||
|
||||
return 'col_square_green_cut_gem_01'
|
||||
|
||||
def CollectionItemName():
|
||||
|
||||
return 'square_green_gem_style1_03'
|
||||
|
||||
def stackable():
|
||||
|
||||
return 1
|
||||
@@ -0,0 +1,19 @@
|
||||
def itemTemplate():
|
||||
|
||||
return ['object/tangible/loot/creature_loot/collections/shared_green_sq_cut_gem_style1.iff']
|
||||
|
||||
def STFparams():
|
||||
|
||||
return ['static_item_n','col_green_sq_cut_gem_style1_02_04','static_item_d','col_green_sq_cut_gem_style1_02_04']
|
||||
|
||||
def AddToCollection():
|
||||
|
||||
return 'col_square_green_cut_gem_01'
|
||||
|
||||
def CollectionItemName():
|
||||
|
||||
return 'square_green_gem_style1_04'
|
||||
|
||||
def stackable():
|
||||
|
||||
return 1
|
||||
@@ -0,0 +1,19 @@
|
||||
def itemTemplate():
|
||||
|
||||
return ['object/tangible/loot/creature_loot/collections/shared_green_sq_cut_gem_style1.iff']
|
||||
|
||||
def STFparams():
|
||||
|
||||
return ['static_item_n','col_green_sq_cut_gem_style1_02_05','static_item_d','col_green_sq_cut_gem_style1_02_05']
|
||||
|
||||
def AddToCollection():
|
||||
|
||||
return 'col_square_green_cut_gem_01'
|
||||
|
||||
def CollectionItemName():
|
||||
|
||||
return 'square_green_gem_style1_05'
|
||||
|
||||
def stackable():
|
||||
|
||||
return 1
|
||||
@@ -0,0 +1,19 @@
|
||||
def itemTemplate():
|
||||
|
||||
return ['object/tangible/loot/creature_loot/collections/shared_green_sq_cut_gem_style1.iff']
|
||||
|
||||
def STFparams():
|
||||
|
||||
return ['static_item_n','col_green_sq_cut_gem_style1_02_08','static_item_d','col_green_sq_cut_gem_style1_02_08']
|
||||
|
||||
def AddToCollection():
|
||||
|
||||
return 'col_square_green_cut_gem_01'
|
||||
|
||||
def CollectionItemName():
|
||||
|
||||
return 'square_green_gem_style1_08'
|
||||
|
||||
def stackable():
|
||||
|
||||
return 1
|
||||
@@ -0,0 +1,19 @@
|
||||
def itemTemplate():
|
||||
|
||||
return ['object/tangible/loot/creature_loot/collections/shared_green_sq_cut_gem_style1.iff']
|
||||
|
||||
def STFparams():
|
||||
|
||||
return ['static_item_n','col_green_sq_cut_gem_style1_02_06','static_item_d','col_green_sq_cut_gem_style1_02_06']
|
||||
|
||||
def AddToCollection():
|
||||
|
||||
return 'col_square_green_cut_gem_01'
|
||||
|
||||
def CollectionItemName():
|
||||
|
||||
return 'square_green_gem_style1_06'
|
||||
|
||||
def stackable():
|
||||
|
||||
return 1
|
||||
@@ -0,0 +1,19 @@
|
||||
def itemTemplate():
|
||||
|
||||
return ['object/tangible/loot/creature_loot/collections/shared_green_sq_cut_gem_style1.iff']
|
||||
|
||||
def STFparams():
|
||||
|
||||
return ['static_item_n','col_green_sq_cut_gem_style1_02_09','static_item_d','col_green_sq_cut_gem_style1_02_09']
|
||||
|
||||
def AddToCollection():
|
||||
|
||||
return 'col_square_green_cut_gem_01'
|
||||
|
||||
def CollectionItemName():
|
||||
|
||||
return 'square_green_gem_style1_09'
|
||||
|
||||
def stackable():
|
||||
|
||||
return 1
|
||||
@@ -0,0 +1,19 @@
|
||||
def itemTemplate():
|
||||
|
||||
return ['object/tangible/loot/creature_loot/collections/shared_green_sq_cut_gem_style1.iff']
|
||||
|
||||
def STFparams():
|
||||
|
||||
return ['static_item_n','col_green_sq_cut_gem_style1_02_10','static_item_d','col_green_sq_cut_gem_style1_02_10']
|
||||
|
||||
def AddToCollection():
|
||||
|
||||
return 'col_square_green_cut_gem_01'
|
||||
|
||||
def CollectionItemName():
|
||||
|
||||
return 'square_green_gem_style1_10'
|
||||
|
||||
def stackable():
|
||||
|
||||
return 1
|
||||
@@ -0,0 +1,19 @@
|
||||
def itemTemplate():
|
||||
|
||||
return ['object/tangible/loot/creature_loot/collections/shared_green_sq_cut_gem_style1.iff']
|
||||
|
||||
def STFparams():
|
||||
|
||||
return ['static_item_n','col_green_sq_cut_gem_style1_02_01','static_item_d','col_green_sq_cut_gem_style1_02_01']
|
||||
|
||||
def AddToCollection():
|
||||
|
||||
return 'col_square_green_cut_gem_01'
|
||||
|
||||
def CollectionItemName():
|
||||
|
||||
return 'square_green_gem_style1_01'
|
||||
|
||||
def stackable():
|
||||
|
||||
return 1
|
||||
@@ -0,0 +1,19 @@
|
||||
def itemTemplate():
|
||||
|
||||
return ['object/tangible/loot/creature_loot/collections/shared_green_sq_cut_gem_style1.iff']
|
||||
|
||||
def STFparams():
|
||||
|
||||
return ['static_item_n','col_green_sq_cut_gem_style1_02_07','static_item_d','col_green_sq_cut_gem_style1_02_07']
|
||||
|
||||
def AddToCollection():
|
||||
|
||||
return 'col_square_green_cut_gem_01'
|
||||
|
||||
def CollectionItemName():
|
||||
|
||||
return 'square_green_gem_style1_07'
|
||||
|
||||
def stackable():
|
||||
|
||||
return 1
|
||||
@@ -0,0 +1,19 @@
|
||||
def itemTemplate():
|
||||
|
||||
return ['object/tangible/loot/creature_loot/collections/shared_red_rnd_cut_gem_style1.iff']
|
||||
|
||||
def STFparams():
|
||||
|
||||
return ['static_item_n','col_red_rnd_cut_gem_style1_02_02','static_item_d','col_red_rnd_cut_gem_style1_02_02']
|
||||
|
||||
def AddToCollection():
|
||||
|
||||
return 'col_round_red_cut_gem_01'
|
||||
|
||||
def CollectionItemName():
|
||||
|
||||
return 'round_red_gem_style1_02'
|
||||
|
||||
def stackable():
|
||||
|
||||
return 1
|
||||
@@ -0,0 +1,19 @@
|
||||
def itemTemplate():
|
||||
|
||||
return ['object/tangible/loot/creature_loot/collections/shared_red_rnd_cut_gem_style1.iff']
|
||||
|
||||
def STFparams():
|
||||
|
||||
return ['static_item_n','col_red_rnd_cut_gem_style1_02_03','static_item_d','col_red_rnd_cut_gem_style1_02_03']
|
||||
|
||||
def AddToCollection():
|
||||
|
||||
return 'col_round_red_cut_gem_01'
|
||||
|
||||
def CollectionItemName():
|
||||
|
||||
return 'round_red_gem_style1_03'
|
||||
|
||||
def stackable():
|
||||
|
||||
return 1
|
||||
@@ -0,0 +1,19 @@
|
||||
def itemTemplate():
|
||||
|
||||
return ['object/tangible/loot/creature_loot/collections/shared_red_rnd_cut_gem_style1.iff']
|
||||
|
||||
def STFparams():
|
||||
|
||||
return ['static_item_n','col_red_rnd_cut_gem_style1_02_04','static_item_d','col_red_rnd_cut_gem_style1_02_04']
|
||||
|
||||
def AddToCollection():
|
||||
|
||||
return 'col_round_red_cut_gem_01'
|
||||
|
||||
def CollectionItemName():
|
||||
|
||||
return 'round_red_gem_style1_04'
|
||||
|
||||
def stackable():
|
||||
|
||||
return 1
|
||||
@@ -0,0 +1,19 @@
|
||||
def itemTemplate():
|
||||
|
||||
return ['object/tangible/loot/creature_loot/collections/shared_red_rnd_cut_gem_style1.iff']
|
||||
|
||||
def STFparams():
|
||||
|
||||
return ['static_item_n','col_red_rnd_cut_gem_style1_02_05','static_item_d','col_red_rnd_cut_gem_style1_02_05']
|
||||
|
||||
def AddToCollection():
|
||||
|
||||
return 'col_round_red_cut_gem_01'
|
||||
|
||||
def CollectionItemName():
|
||||
|
||||
return 'round_red_gem_style1_05'
|
||||
|
||||
def stackable():
|
||||
|
||||
return 1
|
||||
@@ -0,0 +1,19 @@
|
||||
def itemTemplate():
|
||||
|
||||
return ['object/tangible/loot/creature_loot/collections/shared_red_rnd_cut_gem_style1.iff']
|
||||
|
||||
def STFparams():
|
||||
|
||||
return ['static_item_n','col_red_rnd_cut_gem_style1_02_08','static_item_d','col_red_rnd_cut_gem_style1_02_08']
|
||||
|
||||
def AddToCollection():
|
||||
|
||||
return 'col_round_red_cut_gem_01'
|
||||
|
||||
def CollectionItemName():
|
||||
|
||||
return 'round_red_gem_style1_08'
|
||||
|
||||
def stackable():
|
||||
|
||||
return 1
|
||||
@@ -0,0 +1,19 @@
|
||||
def itemTemplate():
|
||||
|
||||
return ['object/tangible/loot/creature_loot/collections/shared_red_rnd_cut_gem_style1.iff']
|
||||
|
||||
def STFparams():
|
||||
|
||||
return ['static_item_n','col_red_rnd_cut_gem_style1_02_06','static_item_d','col_red_rnd_cut_gem_style1_02_06']
|
||||
|
||||
def AddToCollection():
|
||||
|
||||
return 'col_round_red_cut_gem_01'
|
||||
|
||||
def CollectionItemName():
|
||||
|
||||
return 'round_red_gem_style1_06'
|
||||
|
||||
def stackable():
|
||||
|
||||
return 1
|
||||
@@ -0,0 +1,19 @@
|
||||
def itemTemplate():
|
||||
|
||||
return ['object/tangible/loot/creature_loot/collections/shared_red_rnd_cut_gem_style1.iff']
|
||||
|
||||
def STFparams():
|
||||
|
||||
return ['static_item_n','col_red_rnd_cut_gem_style1_02_09','static_item_d','col_red_rnd_cut_gem_style1_02_09']
|
||||
|
||||
def AddToCollection():
|
||||
|
||||
return 'col_round_red_cut_gem_01'
|
||||
|
||||
def CollectionItemName():
|
||||
|
||||
return 'round_red_gem_style1_09'
|
||||
|
||||
def stackable():
|
||||
|
||||
return 1
|
||||
@@ -0,0 +1,19 @@
|
||||
def itemTemplate():
|
||||
|
||||
return ['object/tangible/loot/creature_loot/collections/shared_red_rnd_cut_gem_style1.iff']
|
||||
|
||||
def STFparams():
|
||||
|
||||
return ['static_item_n','col_red_rnd_cut_gem_style1_02_10','static_item_d','col_red_rnd_cut_gem_style1_02_10']
|
||||
|
||||
def AddToCollection():
|
||||
|
||||
return 'col_round_red_cut_gem_01'
|
||||
|
||||
def CollectionItemName():
|
||||
|
||||
return 'round_red_gem_style1_10'
|
||||
|
||||
def stackable():
|
||||
|
||||
return 1
|
||||
@@ -0,0 +1,19 @@
|
||||
def itemTemplate():
|
||||
|
||||
return ['object/tangible/loot/creature_loot/collections/shared_red_rnd_cut_gem_style1.iff']
|
||||
|
||||
def STFparams():
|
||||
|
||||
return ['static_item_n','col_red_rnd_cut_gem_style1_02_01','static_item_d','col_red_rnd_cut_gem_style1_02_01']
|
||||
|
||||
def AddToCollection():
|
||||
|
||||
return 'col_round_red_cut_gem_01'
|
||||
|
||||
def CollectionItemName():
|
||||
|
||||
return 'round_red_gem_style1_01'
|
||||
|
||||
def stackable():
|
||||
|
||||
return 1
|
||||
@@ -0,0 +1,19 @@
|
||||
def itemTemplate():
|
||||
|
||||
return ['object/tangible/loot/creature_loot/collections/shared_red_rnd_cut_gem_style1.iff']
|
||||
|
||||
def STFparams():
|
||||
|
||||
return ['static_item_n','col_red_rnd_cut_gem_style1_02_07','static_item_d','col_red_rnd_cut_gem_style1_02_07']
|
||||
|
||||
def AddToCollection():
|
||||
|
||||
return 'col_round_red_cut_gem_01'
|
||||
|
||||
def CollectionItemName():
|
||||
|
||||
return 'round_red_gem_style1_07'
|
||||
|
||||
def stackable():
|
||||
|
||||
return 1
|
||||
@@ -0,0 +1,19 @@
|
||||
def itemTemplate():
|
||||
|
||||
return ['object/tangible/loot/creature_loot/collections/shared_col_holo_emitter_light_source.iff']
|
||||
|
||||
def STFparams():
|
||||
|
||||
return ['static_item_n','col_holo_emitter_light_source_02_01','static_item_d','col_holo_emitter_light_source_02_01']
|
||||
|
||||
def AddToCollection():
|
||||
|
||||
return 'col_holo_emitter_01'
|
||||
|
||||
def CollectionItemName():
|
||||
|
||||
return 'holo_emitter_part_02'
|
||||
|
||||
def stackable():
|
||||
|
||||
return 1
|
||||
@@ -0,0 +1,19 @@
|
||||
def itemTemplate():
|
||||
|
||||
return ['object/tangible/loot/creature_loot/collections/shared_col_holo_emitter_receptor.iff']
|
||||
|
||||
def STFparams():
|
||||
|
||||
return ['static_item_n','col_holo_emitter_receptor_02_01','static_item_d','col_holo_emitter_receptor_02_01']
|
||||
|
||||
def AddToCollection():
|
||||
|
||||
return 'col_holo_emitter_01'
|
||||
|
||||
def CollectionItemName():
|
||||
|
||||
return 'holo_emitter_part_03'
|
||||
|
||||
def stackable():
|
||||
|
||||
return 1
|
||||
@@ -0,0 +1,19 @@
|
||||
def itemTemplate():
|
||||
|
||||
return ['object/tangible/loot/creature_loot/collections/shared_col_holo_emitter_photo_detector.iff']
|
||||
|
||||
def STFparams():
|
||||
|
||||
return ['static_item_n','col_holo_emitter_photo_detector_02_01','static_item_d','col_holo_emitter_photo_detector_02_01']
|
||||
|
||||
def AddToCollection():
|
||||
|
||||
return 'col_holo_emitter_01'
|
||||
|
||||
def CollectionItemName():
|
||||
|
||||
return 'holo_emitter_part_05'
|
||||
|
||||
def stackable():
|
||||
|
||||
return 1
|
||||
@@ -0,0 +1,19 @@
|
||||
def itemTemplate():
|
||||
|
||||
return ['object/tangible/loot/creature_loot/collections/shared_col_holo_emitter_curcuit.iff']
|
||||
|
||||
def STFparams():
|
||||
|
||||
return ['static_item_n','col_holo_emitter_circuit_02_01','static_item_d','col_holo_emitter_circuit_02_01']
|
||||
|
||||
def AddToCollection():
|
||||
|
||||
return 'col_holo_emitter_01'
|
||||
|
||||
def CollectionItemName():
|
||||
|
||||
return 'holo_emitter_part_04'
|
||||
|
||||
def stackable():
|
||||
|
||||
return 1
|
||||
@@ -0,0 +1,19 @@
|
||||
def itemTemplate():
|
||||
|
||||
return ['object/tangible/loot/creature_loot/collections/shared_col_holo_emitter_processor.iff']
|
||||
|
||||
def STFparams():
|
||||
|
||||
return ['static_item_n','col_holo_emitter_processor_02_01','static_item_d','col_holo_emitter_processor_02_01']
|
||||
|
||||
def AddToCollection():
|
||||
|
||||
return 'col_holo_emitter_01'
|
||||
|
||||
def CollectionItemName():
|
||||
|
||||
return 'holo_emitter_part_01'
|
||||
|
||||
def stackable():
|
||||
|
||||
return 1
|
||||
+29
@@ -0,0 +1,29 @@
|
||||
def itemTemplate():
|
||||
|
||||
return ['object/tangible/loot/creature_loot/collections/shared_housing_improvement_04.iff']
|
||||
|
||||
def lootDescriptor():
|
||||
|
||||
return 'customattributes'
|
||||
|
||||
def customizationAttributes():
|
||||
return ['/private/index_color_1']
|
||||
|
||||
def customizationValues():
|
||||
return [1]
|
||||
|
||||
def STFparams():
|
||||
|
||||
return ['static_item_n','item_collection_housing_improvement_04_01','static_item_d','item_collection_housing_improvement_04_01']
|
||||
|
||||
def AddToCollection():
|
||||
|
||||
return 'housing_improvement_04'
|
||||
|
||||
def CollectionItemName():
|
||||
|
||||
return 'housing_improvement_04_01'
|
||||
|
||||
def stackable():
|
||||
|
||||
return 1
|
||||
+29
@@ -0,0 +1,29 @@
|
||||
def itemTemplate():
|
||||
|
||||
return ['object/tangible/loot/creature_loot/collections/shared_housing_improvement_04.iff']
|
||||
|
||||
def lootDescriptor():
|
||||
|
||||
return 'customattributes'
|
||||
|
||||
def customizationAttributes():
|
||||
return ['/private/index_color_1']
|
||||
|
||||
def customizationValues():
|
||||
return [10]
|
||||
|
||||
def STFparams():
|
||||
|
||||
return ['static_item_n','item_collection_housing_improvement_04_10','static_item_d','item_collection_housing_improvement_04_10']
|
||||
|
||||
def AddToCollection():
|
||||
|
||||
return 'housing_improvement_04'
|
||||
|
||||
def CollectionItemName():
|
||||
|
||||
return 'housing_improvement_04_10'
|
||||
|
||||
def stackable():
|
||||
|
||||
return 1
|
||||
+29
@@ -0,0 +1,29 @@
|
||||
def itemTemplate():
|
||||
|
||||
return ['object/tangible/loot/creature_loot/collections/shared_housing_improvement_04.iff']
|
||||
|
||||
def lootDescriptor():
|
||||
|
||||
return 'customattributes'
|
||||
|
||||
def customizationAttributes():
|
||||
return ['/private/index_color_1']
|
||||
|
||||
def customizationValues():
|
||||
return [2]
|
||||
|
||||
def STFparams():
|
||||
|
||||
return ['static_item_n','item_collection_housing_improvement_04_02','static_item_d','item_collection_housing_improvement_04_02']
|
||||
|
||||
def AddToCollection():
|
||||
|
||||
return 'housing_improvement_04'
|
||||
|
||||
def CollectionItemName():
|
||||
|
||||
return 'housing_improvement_04_02'
|
||||
|
||||
def stackable():
|
||||
|
||||
return 1
|
||||
+29
@@ -0,0 +1,29 @@
|
||||
def itemTemplate():
|
||||
|
||||
return ['object/tangible/loot/creature_loot/collections/shared_housing_improvement_04.iff']
|
||||
|
||||
def lootDescriptor():
|
||||
|
||||
return 'customattributes'
|
||||
|
||||
def customizationAttributes():
|
||||
return ['/private/index_color_1']
|
||||
|
||||
def customizationValues():
|
||||
return [3]
|
||||
|
||||
def STFparams():
|
||||
|
||||
return ['static_item_n','item_collection_housing_improvement_04_03','static_item_d','item_collection_housing_improvement_04_03']
|
||||
|
||||
def AddToCollection():
|
||||
|
||||
return 'housing_improvement_04'
|
||||
|
||||
def CollectionItemName():
|
||||
|
||||
return 'housing_improvement_04_03'
|
||||
|
||||
def stackable():
|
||||
|
||||
return 1
|
||||
+29
@@ -0,0 +1,29 @@
|
||||
def itemTemplate():
|
||||
|
||||
return ['object/tangible/loot/creature_loot/collections/shared_housing_improvement_04.iff']
|
||||
|
||||
def lootDescriptor():
|
||||
|
||||
return 'customattributes'
|
||||
|
||||
def customizationAttributes():
|
||||
return ['/private/index_color_1']
|
||||
|
||||
def customizationValues():
|
||||
return [4]
|
||||
|
||||
def STFparams():
|
||||
|
||||
return ['static_item_n','item_collection_housing_improvement_04_04','static_item_d','item_collection_housing_improvement_04_04']
|
||||
|
||||
def AddToCollection():
|
||||
|
||||
return 'housing_improvement_04'
|
||||
|
||||
def CollectionItemName():
|
||||
|
||||
return 'housing_improvement_04_04'
|
||||
|
||||
def stackable():
|
||||
|
||||
return 1
|
||||
+29
@@ -0,0 +1,29 @@
|
||||
def itemTemplate():
|
||||
|
||||
return ['object/tangible/loot/creature_loot/collections/shared_housing_improvement_04.iff']
|
||||
|
||||
def lootDescriptor():
|
||||
|
||||
return 'customattributes'
|
||||
|
||||
def customizationAttributes():
|
||||
return ['/private/index_color_1']
|
||||
|
||||
def customizationValues():
|
||||
return [5]
|
||||
|
||||
def STFparams():
|
||||
|
||||
return ['static_item_n','item_collection_housing_improvement_04_05','static_item_d','item_collection_housing_improvement_04_05']
|
||||
|
||||
def AddToCollection():
|
||||
|
||||
return 'housing_improvement_04'
|
||||
|
||||
def CollectionItemName():
|
||||
|
||||
return 'housing_improvement_04_05'
|
||||
|
||||
def stackable():
|
||||
|
||||
return 1
|
||||
+29
@@ -0,0 +1,29 @@
|
||||
def itemTemplate():
|
||||
|
||||
return ['object/tangible/loot/creature_loot/collections/shared_housing_improvement_04.iff']
|
||||
|
||||
def lootDescriptor():
|
||||
|
||||
return 'customattributes'
|
||||
|
||||
def customizationAttributes():
|
||||
return ['/private/index_color_1']
|
||||
|
||||
def customizationValues():
|
||||
return [6]
|
||||
|
||||
def STFparams():
|
||||
|
||||
return ['static_item_n','item_collection_housing_improvement_04_06','static_item_d','item_collection_housing_improvement_04_06']
|
||||
|
||||
def AddToCollection():
|
||||
|
||||
return 'housing_improvement_04'
|
||||
|
||||
def CollectionItemName():
|
||||
|
||||
return 'housing_improvement_04_06'
|
||||
|
||||
def stackable():
|
||||
|
||||
return 1
|
||||
+29
@@ -0,0 +1,29 @@
|
||||
def itemTemplate():
|
||||
|
||||
return ['object/tangible/loot/creature_loot/collections/shared_housing_improvement_04.iff']
|
||||
|
||||
def lootDescriptor():
|
||||
|
||||
return 'customattributes'
|
||||
|
||||
def customizationAttributes():
|
||||
return ['/private/index_color_1']
|
||||
|
||||
def customizationValues():
|
||||
return [7]
|
||||
|
||||
def STFparams():
|
||||
|
||||
return ['static_item_n','item_collection_housing_improvement_04_07','static_item_d','item_collection_housing_improvement_04_07']
|
||||
|
||||
def AddToCollection():
|
||||
|
||||
return 'housing_improvement_04'
|
||||
|
||||
def CollectionItemName():
|
||||
|
||||
return 'housing_improvement_04_07'
|
||||
|
||||
def stackable():
|
||||
|
||||
return 1
|
||||
+29
@@ -0,0 +1,29 @@
|
||||
def itemTemplate():
|
||||
|
||||
return ['object/tangible/loot/creature_loot/collections/shared_housing_improvement_04.iff']
|
||||
|
||||
def lootDescriptor():
|
||||
|
||||
return 'customattributes'
|
||||
|
||||
def customizationAttributes():
|
||||
return ['/private/index_color_1']
|
||||
|
||||
def customizationValues():
|
||||
return [8]
|
||||
|
||||
def STFparams():
|
||||
|
||||
return ['static_item_n','item_collection_housing_improvement_04_08','static_item_d','item_collection_housing_improvement_04_08']
|
||||
|
||||
def AddToCollection():
|
||||
|
||||
return 'housing_improvement_04'
|
||||
|
||||
def CollectionItemName():
|
||||
|
||||
return 'housing_improvement_04_08'
|
||||
|
||||
def stackable():
|
||||
|
||||
return 1
|
||||
+29
@@ -0,0 +1,29 @@
|
||||
def itemTemplate():
|
||||
|
||||
return ['object/tangible/loot/creature_loot/collections/shared_housing_improvement_04.iff']
|
||||
|
||||
def lootDescriptor():
|
||||
|
||||
return 'customattributes'
|
||||
|
||||
def customizationAttributes():
|
||||
return ['/private/index_color_1']
|
||||
|
||||
def customizationValues():
|
||||
return [9]
|
||||
|
||||
def STFparams():
|
||||
|
||||
return ['static_item_n','item_collection_housing_improvement_04_09','static_item_d','item_collection_housing_improvement_04_09']
|
||||
|
||||
def AddToCollection():
|
||||
|
||||
return 'housing_improvement_04'
|
||||
|
||||
def CollectionItemName():
|
||||
|
||||
return 'housing_improvement_04_09'
|
||||
|
||||
def stackable():
|
||||
|
||||
return 1
|
||||
+29
@@ -0,0 +1,29 @@
|
||||
def itemTemplate():
|
||||
|
||||
return ['object/tangible/loot/creature_loot/collections/shared_housing_improvement_03.iff']
|
||||
|
||||
def lootDescriptor():
|
||||
|
||||
return 'customattributes'
|
||||
|
||||
def customizationAttributes():
|
||||
return ['/private/index_color_1']
|
||||
|
||||
def customizationValues():
|
||||
return [1]
|
||||
|
||||
def STFparams():
|
||||
|
||||
return ['static_item_n','item_collection_housing_improvement_03_01','static_item_d','item_collection_housing_improvement_03_01']
|
||||
|
||||
def AddToCollection():
|
||||
|
||||
return 'housing_improvement_03'
|
||||
|
||||
def CollectionItemName():
|
||||
|
||||
return 'housing_improvement_03_01'
|
||||
|
||||
def stackable():
|
||||
|
||||
return 1
|
||||
+29
@@ -0,0 +1,29 @@
|
||||
def itemTemplate():
|
||||
|
||||
return ['object/tangible/loot/creature_loot/collections/shared_housing_improvement_03.iff']
|
||||
|
||||
def lootDescriptor():
|
||||
|
||||
return 'customattributes'
|
||||
|
||||
def customizationAttributes():
|
||||
return ['/private/index_color_1']
|
||||
|
||||
def customizationValues():
|
||||
return [10]
|
||||
|
||||
def STFparams():
|
||||
|
||||
return ['static_item_n','item_collection_housing_improvement_03_10','static_item_d','item_collection_housing_improvement_03_10']
|
||||
|
||||
def AddToCollection():
|
||||
|
||||
return 'housing_improvement_03'
|
||||
|
||||
def CollectionItemName():
|
||||
|
||||
return 'housing_improvement_03_10'
|
||||
|
||||
def stackable():
|
||||
|
||||
return 1
|
||||
+29
@@ -0,0 +1,29 @@
|
||||
def itemTemplate():
|
||||
|
||||
return ['object/tangible/loot/creature_loot/collections/shared_housing_improvement_03.iff']
|
||||
|
||||
def lootDescriptor():
|
||||
|
||||
return 'customattributes'
|
||||
|
||||
def customizationAttributes():
|
||||
return ['/private/index_color_1']
|
||||
|
||||
def customizationValues():
|
||||
return [2]
|
||||
|
||||
def STFparams():
|
||||
|
||||
return ['static_item_n','item_collection_housing_improvement_03_02','static_item_d','item_collection_housing_improvement_03_02']
|
||||
|
||||
def AddToCollection():
|
||||
|
||||
return 'housing_improvement_03'
|
||||
|
||||
def CollectionItemName():
|
||||
|
||||
return 'housing_improvement_03_02'
|
||||
|
||||
def stackable():
|
||||
|
||||
return 1
|
||||
+29
@@ -0,0 +1,29 @@
|
||||
def itemTemplate():
|
||||
|
||||
return ['object/tangible/loot/creature_loot/collections/shared_housing_improvement_03.iff']
|
||||
|
||||
def lootDescriptor():
|
||||
|
||||
return 'customattributes'
|
||||
|
||||
def customizationAttributes():
|
||||
return ['/private/index_color_1']
|
||||
|
||||
def customizationValues():
|
||||
return [3]
|
||||
|
||||
def STFparams():
|
||||
|
||||
return ['static_item_n','item_collection_housing_improvement_03_03','static_item_d','item_collection_housing_improvement_03_03']
|
||||
|
||||
def AddToCollection():
|
||||
|
||||
return 'housing_improvement_03'
|
||||
|
||||
def CollectionItemName():
|
||||
|
||||
return 'housing_improvement_03_03'
|
||||
|
||||
def stackable():
|
||||
|
||||
return 1
|
||||
+29
@@ -0,0 +1,29 @@
|
||||
def itemTemplate():
|
||||
|
||||
return ['object/tangible/loot/creature_loot/collections/shared_housing_improvement_03.iff']
|
||||
|
||||
def lootDescriptor():
|
||||
|
||||
return 'customattributes'
|
||||
|
||||
def customizationAttributes():
|
||||
return ['/private/index_color_1']
|
||||
|
||||
def customizationValues():
|
||||
return [4]
|
||||
|
||||
def STFparams():
|
||||
|
||||
return ['static_item_n','item_collection_housing_improvement_03_04','static_item_d','item_collection_housing_improvement_03_04']
|
||||
|
||||
def AddToCollection():
|
||||
|
||||
return 'housing_improvement_03'
|
||||
|
||||
def CollectionItemName():
|
||||
|
||||
return 'housing_improvement_03_04'
|
||||
|
||||
def stackable():
|
||||
|
||||
return 1
|
||||
+29
@@ -0,0 +1,29 @@
|
||||
def itemTemplate():
|
||||
|
||||
return ['object/tangible/loot/creature_loot/collections/shared_housing_improvement_03.iff']
|
||||
|
||||
def lootDescriptor():
|
||||
|
||||
return 'customattributes'
|
||||
|
||||
def customizationAttributes():
|
||||
return ['/private/index_color_1']
|
||||
|
||||
def customizationValues():
|
||||
return [5]
|
||||
|
||||
def STFparams():
|
||||
|
||||
return ['static_item_n','item_collection_housing_improvement_03_05','static_item_d','item_collection_housing_improvement_03_05']
|
||||
|
||||
def AddToCollection():
|
||||
|
||||
return 'housing_improvement_03'
|
||||
|
||||
def CollectionItemName():
|
||||
|
||||
return 'housing_improvement_03_05'
|
||||
|
||||
def stackable():
|
||||
|
||||
return 1
|
||||
+29
@@ -0,0 +1,29 @@
|
||||
def itemTemplate():
|
||||
|
||||
return ['object/tangible/loot/creature_loot/collections/shared_housing_improvement_03.iff']
|
||||
|
||||
def lootDescriptor():
|
||||
|
||||
return 'customattributes'
|
||||
|
||||
def customizationAttributes():
|
||||
return ['/private/index_color_1']
|
||||
|
||||
def customizationValues():
|
||||
return [6]
|
||||
|
||||
def STFparams():
|
||||
|
||||
return ['static_item_n','item_collection_housing_improvement_03_06','static_item_d','item_collection_housing_improvement_03_06']
|
||||
|
||||
def AddToCollection():
|
||||
|
||||
return 'housing_improvement_03'
|
||||
|
||||
def CollectionItemName():
|
||||
|
||||
return 'housing_improvement_03_06'
|
||||
|
||||
def stackable():
|
||||
|
||||
return 1
|
||||
+29
@@ -0,0 +1,29 @@
|
||||
def itemTemplate():
|
||||
|
||||
return ['object/tangible/loot/creature_loot/collections/shared_housing_improvement_03.iff']
|
||||
|
||||
def lootDescriptor():
|
||||
|
||||
return 'customattributes'
|
||||
|
||||
def customizationAttributes():
|
||||
return ['/private/index_color_1']
|
||||
|
||||
def customizationValues():
|
||||
return [7]
|
||||
|
||||
def STFparams():
|
||||
|
||||
return ['static_item_n','item_collection_housing_improvement_03_07','static_item_d','item_collection_housing_improvement_03_07']
|
||||
|
||||
def AddToCollection():
|
||||
|
||||
return 'housing_improvement_03'
|
||||
|
||||
def CollectionItemName():
|
||||
|
||||
return 'housing_improvement_03_07'
|
||||
|
||||
def stackable():
|
||||
|
||||
return 1
|
||||
+29
@@ -0,0 +1,29 @@
|
||||
def itemTemplate():
|
||||
|
||||
return ['object/tangible/loot/creature_loot/collections/shared_housing_improvement_03.iff']
|
||||
|
||||
def lootDescriptor():
|
||||
|
||||
return 'customattributes'
|
||||
|
||||
def customizationAttributes():
|
||||
return ['/private/index_color_1']
|
||||
|
||||
def customizationValues():
|
||||
return [8]
|
||||
|
||||
def STFparams():
|
||||
|
||||
return ['static_item_n','item_collection_housing_improvement_03_08','static_item_d','item_collection_housing_improvement_03_08']
|
||||
|
||||
def AddToCollection():
|
||||
|
||||
return 'housing_improvement_03'
|
||||
|
||||
def CollectionItemName():
|
||||
|
||||
return 'housing_improvement_03_08'
|
||||
|
||||
def stackable():
|
||||
|
||||
return 1
|
||||
+29
@@ -0,0 +1,29 @@
|
||||
def itemTemplate():
|
||||
|
||||
return ['object/tangible/loot/creature_loot/collections/shared_housing_improvement_03.iff']
|
||||
|
||||
def lootDescriptor():
|
||||
|
||||
return 'customattributes'
|
||||
|
||||
def customizationAttributes():
|
||||
return ['/private/index_color_1']
|
||||
|
||||
def customizationValues():
|
||||
return [9]
|
||||
|
||||
def STFparams():
|
||||
|
||||
return ['static_item_n','item_collection_housing_improvement_03_09','static_item_d','item_collection_housing_improvement_03_09']
|
||||
|
||||
def AddToCollection():
|
||||
|
||||
return 'housing_improvement_03'
|
||||
|
||||
def CollectionItemName():
|
||||
|
||||
return 'housing_improvement_03_09'
|
||||
|
||||
def stackable():
|
||||
|
||||
return 1
|
||||
+30
@@ -0,0 +1,30 @@
|
||||
|
||||
def itemTemplate():
|
||||
|
||||
return ['object/tangible/loot/creature_loot/collections/shared_housing_improvement_01.iff']
|
||||
|
||||
def lootDescriptor():
|
||||
|
||||
return 'customattributes'
|
||||
|
||||
def customizationAttributes():
|
||||
return ['/private/index_color_1']
|
||||
|
||||
def customizationValues():
|
||||
return [1]
|
||||
|
||||
def STFparams():
|
||||
|
||||
return ['static_item_n','item_collection_housing_improvement_01_01','static_item_d','item_collection_housing_improvement_01_01']
|
||||
|
||||
def AddToCollection():
|
||||
|
||||
return 'housing_improvement_01'
|
||||
|
||||
def CollectionItemName():
|
||||
|
||||
return 'housing_improvement_01_01'
|
||||
|
||||
def stackable():
|
||||
|
||||
return 1
|
||||
+30
@@ -0,0 +1,30 @@
|
||||
|
||||
def itemTemplate():
|
||||
|
||||
return ['object/tangible/loot/creature_loot/collections/shared_housing_improvement_01.iff']
|
||||
|
||||
def lootDescriptor():
|
||||
|
||||
return 'customattributes'
|
||||
|
||||
def customizationAttributes():
|
||||
return ['/private/index_color_1']
|
||||
|
||||
def customizationValues():
|
||||
return [10]
|
||||
|
||||
def STFparams():
|
||||
|
||||
return ['static_item_n','item_collection_housing_improvement_01_10','static_item_d','item_collection_housing_improvement_01_10']
|
||||
|
||||
def AddToCollection():
|
||||
|
||||
return 'housing_improvement_01'
|
||||
|
||||
def CollectionItemName():
|
||||
|
||||
return 'housing_improvement_01_10'
|
||||
|
||||
def stackable():
|
||||
|
||||
return 1
|
||||
+30
@@ -0,0 +1,30 @@
|
||||
|
||||
def itemTemplate():
|
||||
|
||||
return ['object/tangible/loot/creature_loot/collections/shared_housing_improvement_01.iff']
|
||||
|
||||
def lootDescriptor():
|
||||
|
||||
return 'customattributes'
|
||||
|
||||
def customizationAttributes():
|
||||
return ['/private/index_color_1']
|
||||
|
||||
def customizationValues():
|
||||
return [2]
|
||||
|
||||
def STFparams():
|
||||
|
||||
return ['static_item_n','item_collection_housing_improvement_01_02','static_item_d','item_collection_housing_improvement_01_02']
|
||||
|
||||
def AddToCollection():
|
||||
|
||||
return 'housing_improvement_01'
|
||||
|
||||
def CollectionItemName():
|
||||
|
||||
return 'housing_improvement_01_02'
|
||||
|
||||
def stackable():
|
||||
|
||||
return 1
|
||||
+30
@@ -0,0 +1,30 @@
|
||||
|
||||
def itemTemplate():
|
||||
|
||||
return ['object/tangible/loot/creature_loot/collections/shared_housing_improvement_01.iff']
|
||||
|
||||
def lootDescriptor():
|
||||
|
||||
return 'customattributes'
|
||||
|
||||
def customizationAttributes():
|
||||
return ['/private/index_color_1']
|
||||
|
||||
def customizationValues():
|
||||
return [3]
|
||||
|
||||
def STFparams():
|
||||
|
||||
return ['static_item_n','item_collection_housing_improvement_01_03','static_item_d','item_collection_housing_improvement_01_03']
|
||||
|
||||
def AddToCollection():
|
||||
|
||||
return 'housing_improvement_01'
|
||||
|
||||
def CollectionItemName():
|
||||
|
||||
return 'housing_improvement_01_03'
|
||||
|
||||
def stackable():
|
||||
|
||||
return 1
|
||||
+30
@@ -0,0 +1,30 @@
|
||||
|
||||
def itemTemplate():
|
||||
|
||||
return ['object/tangible/loot/creature_loot/collections/shared_housing_improvement_01.iff']
|
||||
|
||||
def lootDescriptor():
|
||||
|
||||
return 'customattributes'
|
||||
|
||||
def customizationAttributes():
|
||||
return ['/private/index_color_1']
|
||||
|
||||
def customizationValues():
|
||||
return [4]
|
||||
|
||||
def STFparams():
|
||||
|
||||
return ['static_item_n','item_collection_housing_improvement_01_04','static_item_d','item_collection_housing_improvement_01_04']
|
||||
|
||||
def AddToCollection():
|
||||
|
||||
return 'housing_improvement_01'
|
||||
|
||||
def CollectionItemName():
|
||||
|
||||
return 'housing_improvement_01_04'
|
||||
|
||||
def stackable():
|
||||
|
||||
return 1
|
||||
+30
@@ -0,0 +1,30 @@
|
||||
|
||||
def itemTemplate():
|
||||
|
||||
return ['object/tangible/loot/creature_loot/collections/shared_housing_improvement_01.iff']
|
||||
|
||||
def lootDescriptor():
|
||||
|
||||
return 'customattributes'
|
||||
|
||||
def customizationAttributes():
|
||||
return ['/private/index_color_1']
|
||||
|
||||
def customizationValues():
|
||||
return [5]
|
||||
|
||||
def STFparams():
|
||||
|
||||
return ['static_item_n','item_collection_housing_improvement_01_05','static_item_d','item_collection_housing_improvement_01_05']
|
||||
|
||||
def AddToCollection():
|
||||
|
||||
return 'housing_improvement_01'
|
||||
|
||||
def CollectionItemName():
|
||||
|
||||
return 'housing_improvement_01_05'
|
||||
|
||||
def stackable():
|
||||
|
||||
return 1
|
||||
+30
@@ -0,0 +1,30 @@
|
||||
|
||||
def itemTemplate():
|
||||
|
||||
return ['object/tangible/loot/creature_loot/collections/shared_housing_improvement_01.iff']
|
||||
|
||||
def lootDescriptor():
|
||||
|
||||
return 'customattributes'
|
||||
|
||||
def customizationAttributes():
|
||||
return ['/private/index_color_1']
|
||||
|
||||
def customizationValues():
|
||||
return [6]
|
||||
|
||||
def STFparams():
|
||||
|
||||
return ['static_item_n','item_collection_housing_improvement_01_06','static_item_d','item_collection_housing_improvement_01_06']
|
||||
|
||||
def AddToCollection():
|
||||
|
||||
return 'housing_improvement_01'
|
||||
|
||||
def CollectionItemName():
|
||||
|
||||
return 'housing_improvement_01_06'
|
||||
|
||||
def stackable():
|
||||
|
||||
return 1
|
||||
+30
@@ -0,0 +1,30 @@
|
||||
|
||||
def itemTemplate():
|
||||
|
||||
return ['object/tangible/loot/creature_loot/collections/shared_housing_improvement_01.iff']
|
||||
|
||||
def lootDescriptor():
|
||||
|
||||
return 'customattributes'
|
||||
|
||||
def customizationAttributes():
|
||||
return ['/private/index_color_1']
|
||||
|
||||
def customizationValues():
|
||||
return [7]
|
||||
|
||||
def STFparams():
|
||||
|
||||
return ['static_item_n','item_collection_housing_improvement_01_07','static_item_d','item_collection_housing_improvement_01_07']
|
||||
|
||||
def AddToCollection():
|
||||
|
||||
return 'housing_improvement_01'
|
||||
|
||||
def CollectionItemName():
|
||||
|
||||
return 'housing_improvement_01_07'
|
||||
|
||||
def stackable():
|
||||
|
||||
return 1
|
||||
+30
@@ -0,0 +1,30 @@
|
||||
|
||||
def itemTemplate():
|
||||
|
||||
return ['object/tangible/loot/creature_loot/collections/shared_housing_improvement_01.iff']
|
||||
|
||||
def lootDescriptor():
|
||||
|
||||
return 'customattributes'
|
||||
|
||||
def customizationAttributes():
|
||||
return ['/private/index_color_1']
|
||||
|
||||
def customizationValues():
|
||||
return [8]
|
||||
|
||||
def STFparams():
|
||||
|
||||
return ['static_item_n','item_collection_housing_improvement_01_08','static_item_d','item_collection_housing_improvement_01_08']
|
||||
|
||||
def AddToCollection():
|
||||
|
||||
return 'housing_improvement_01'
|
||||
|
||||
def CollectionItemName():
|
||||
|
||||
return 'housing_improvement_01_08'
|
||||
|
||||
def stackable():
|
||||
|
||||
return 1
|
||||
+30
@@ -0,0 +1,30 @@
|
||||
|
||||
def itemTemplate():
|
||||
|
||||
return ['object/tangible/loot/creature_loot/collections/shared_housing_improvement_01.iff']
|
||||
|
||||
def lootDescriptor():
|
||||
|
||||
return 'customattributes'
|
||||
|
||||
def customizationAttributes():
|
||||
return ['/private/index_color_1']
|
||||
|
||||
def customizationValues():
|
||||
return [9]
|
||||
|
||||
def STFparams():
|
||||
|
||||
return ['static_item_n','item_collection_housing_improvement_01_09','static_item_d','item_collection_housing_improvement_01_09']
|
||||
|
||||
def AddToCollection():
|
||||
|
||||
return 'housing_improvement_01'
|
||||
|
||||
def CollectionItemName():
|
||||
|
||||
return 'housing_improvement_01_09'
|
||||
|
||||
def stackable():
|
||||
|
||||
return 1
|
||||
+29
@@ -0,0 +1,29 @@
|
||||
def itemTemplate():
|
||||
|
||||
return ['object/tangible/loot/creature_loot/collections/shared_housing_improvement_02.iff']
|
||||
|
||||
def lootDescriptor():
|
||||
|
||||
return 'customattributes'
|
||||
|
||||
def customizationAttributes():
|
||||
return ['/private/index_color_1']
|
||||
|
||||
def customizationValues():
|
||||
return [1]
|
||||
|
||||
def STFparams():
|
||||
|
||||
return ['static_item_n','item_collection_housing_improvement_02_01','static_item_d','item_collection_housing_improvement_02_01']
|
||||
|
||||
def AddToCollection():
|
||||
|
||||
return 'housing_improvement_02'
|
||||
|
||||
def CollectionItemName():
|
||||
|
||||
return 'housing_improvement_02_01'
|
||||
|
||||
def stackable():
|
||||
|
||||
return 1
|
||||
+29
@@ -0,0 +1,29 @@
|
||||
def itemTemplate():
|
||||
|
||||
return ['object/tangible/loot/creature_loot/collections/shared_housing_improvement_02.iff']
|
||||
|
||||
def lootDescriptor():
|
||||
|
||||
return 'customattributes'
|
||||
|
||||
def customizationAttributes():
|
||||
return ['/private/index_color_1']
|
||||
|
||||
def customizationValues():
|
||||
return [1]
|
||||
|
||||
def STFparams():
|
||||
|
||||
return ['static_item_n','item_collection_housing_improvement_02_10','static_item_d','item_collection_housing_improvement_02_10']
|
||||
|
||||
def AddToCollection():
|
||||
|
||||
return 'housing_improvement_02'
|
||||
|
||||
def CollectionItemName():
|
||||
|
||||
return 'housing_improvement_02_10'
|
||||
|
||||
def stackable():
|
||||
|
||||
return 1
|
||||
+29
@@ -0,0 +1,29 @@
|
||||
def itemTemplate():
|
||||
|
||||
return ['object/tangible/loot/creature_loot/collections/shared_housing_improvement_02.iff']
|
||||
|
||||
def lootDescriptor():
|
||||
|
||||
return 'customattributes'
|
||||
|
||||
def customizationAttributes():
|
||||
return ['/private/index_color_1']
|
||||
|
||||
def customizationValues():
|
||||
return [2]
|
||||
|
||||
def STFparams():
|
||||
|
||||
return ['static_item_n','item_collection_housing_improvement_02_02','static_item_d','item_collection_housing_improvement_02_02']
|
||||
|
||||
def AddToCollection():
|
||||
|
||||
return 'housing_improvement_02'
|
||||
|
||||
def CollectionItemName():
|
||||
|
||||
return 'housing_improvement_02_02'
|
||||
|
||||
def stackable():
|
||||
|
||||
return 1
|
||||
+29
@@ -0,0 +1,29 @@
|
||||
def itemTemplate():
|
||||
|
||||
return ['object/tangible/loot/creature_loot/collections/shared_housing_improvement_02.iff']
|
||||
|
||||
def lootDescriptor():
|
||||
|
||||
return 'customattributes'
|
||||
|
||||
def customizationAttributes():
|
||||
return ['/private/index_color_1']
|
||||
|
||||
def customizationValues():
|
||||
return [3]
|
||||
|
||||
def STFparams():
|
||||
|
||||
return ['static_item_n','item_collection_housing_improvement_02_03','static_item_d','item_collection_housing_improvement_02_03']
|
||||
|
||||
def AddToCollection():
|
||||
|
||||
return 'housing_improvement_02'
|
||||
|
||||
def CollectionItemName():
|
||||
|
||||
return 'housing_improvement_02_03'
|
||||
|
||||
def stackable():
|
||||
|
||||
return 1
|
||||
+29
@@ -0,0 +1,29 @@
|
||||
def itemTemplate():
|
||||
|
||||
return ['object/tangible/loot/creature_loot/collections/shared_housing_improvement_02.iff']
|
||||
|
||||
def lootDescriptor():
|
||||
|
||||
return 'customattributes'
|
||||
|
||||
def customizationAttributes():
|
||||
return ['/private/index_color_1']
|
||||
|
||||
def customizationValues():
|
||||
return [4]
|
||||
|
||||
def STFparams():
|
||||
|
||||
return ['static_item_n','item_collection_housing_improvement_02_04','static_item_d','item_collection_housing_improvement_02_04']
|
||||
|
||||
def AddToCollection():
|
||||
|
||||
return 'housing_improvement_02'
|
||||
|
||||
def CollectionItemName():
|
||||
|
||||
return 'housing_improvement_02_04'
|
||||
|
||||
def stackable():
|
||||
|
||||
return 1
|
||||
+29
@@ -0,0 +1,29 @@
|
||||
def itemTemplate():
|
||||
|
||||
return ['object/tangible/loot/creature_loot/collections/shared_housing_improvement_02.iff']
|
||||
|
||||
def lootDescriptor():
|
||||
|
||||
return 'customattributes'
|
||||
|
||||
def customizationAttributes():
|
||||
return ['/private/index_color_1']
|
||||
|
||||
def customizationValues():
|
||||
return [5]
|
||||
|
||||
def STFparams():
|
||||
|
||||
return ['static_item_n','item_collection_housing_improvement_02_05','static_item_d','item_collection_housing_improvement_02_05']
|
||||
|
||||
def AddToCollection():
|
||||
|
||||
return 'housing_improvement_02'
|
||||
|
||||
def CollectionItemName():
|
||||
|
||||
return 'housing_improvement_02_05'
|
||||
|
||||
def stackable():
|
||||
|
||||
return 1
|
||||
+29
@@ -0,0 +1,29 @@
|
||||
def itemTemplate():
|
||||
|
||||
return ['object/tangible/loot/creature_loot/collections/shared_housing_improvement_02.iff']
|
||||
|
||||
def lootDescriptor():
|
||||
|
||||
return 'customattributes'
|
||||
|
||||
def customizationAttributes():
|
||||
return ['/private/index_color_1']
|
||||
|
||||
def customizationValues():
|
||||
return [6]
|
||||
|
||||
def STFparams():
|
||||
|
||||
return ['static_item_n','item_collection_housing_improvement_02_06','static_item_d','item_collection_housing_improvement_02_06']
|
||||
|
||||
def AddToCollection():
|
||||
|
||||
return 'housing_improvement_02'
|
||||
|
||||
def CollectionItemName():
|
||||
|
||||
return 'housing_improvement_02_06'
|
||||
|
||||
def stackable():
|
||||
|
||||
return 1
|
||||
+29
@@ -0,0 +1,29 @@
|
||||
def itemTemplate():
|
||||
|
||||
return ['object/tangible/loot/creature_loot/collections/shared_housing_improvement_02.iff']
|
||||
|
||||
def lootDescriptor():
|
||||
|
||||
return 'customattributes'
|
||||
|
||||
def customizationAttributes():
|
||||
return ['/private/index_color_1']
|
||||
|
||||
def customizationValues():
|
||||
return [7]
|
||||
|
||||
def STFparams():
|
||||
|
||||
return ['static_item_n','item_collection_housing_improvement_02_07','static_item_d','item_collection_housing_improvement_02_07']
|
||||
|
||||
def AddToCollection():
|
||||
|
||||
return 'housing_improvement_02'
|
||||
|
||||
def CollectionItemName():
|
||||
|
||||
return 'housing_improvement_02_07'
|
||||
|
||||
def stackable():
|
||||
|
||||
return 1
|
||||
+29
@@ -0,0 +1,29 @@
|
||||
def itemTemplate():
|
||||
|
||||
return ['object/tangible/loot/creature_loot/collections/shared_housing_improvement_02.iff']
|
||||
|
||||
def lootDescriptor():
|
||||
|
||||
return 'customattributes'
|
||||
|
||||
def customizationAttributes():
|
||||
return ['/private/index_color_1']
|
||||
|
||||
def customizationValues():
|
||||
return [8]
|
||||
|
||||
def STFparams():
|
||||
|
||||
return ['static_item_n','item_collection_housing_improvement_02_08','static_item_d','item_collection_housing_improvement_02_08']
|
||||
|
||||
def AddToCollection():
|
||||
|
||||
return 'housing_improvement_02'
|
||||
|
||||
def CollectionItemName():
|
||||
|
||||
return 'housing_improvement_02_08'
|
||||
|
||||
def stackable():
|
||||
|
||||
return 1
|
||||
+29
@@ -0,0 +1,29 @@
|
||||
def itemTemplate():
|
||||
|
||||
return ['object/tangible/loot/creature_loot/collections/shared_housing_improvement_02.iff']
|
||||
|
||||
def lootDescriptor():
|
||||
|
||||
return 'customattributes'
|
||||
|
||||
def customizationAttributes():
|
||||
return ['/private/index_color_1']
|
||||
|
||||
def customizationValues():
|
||||
return [9]
|
||||
|
||||
def STFparams():
|
||||
|
||||
return ['static_item_n','item_collection_housing_improvement_02_09','static_item_d','item_collection_housing_improvement_02_09']
|
||||
|
||||
def AddToCollection():
|
||||
|
||||
return 'housing_improvement_02'
|
||||
|
||||
def CollectionItemName():
|
||||
|
||||
return 'housing_improvement_02_01'
|
||||
|
||||
def stackable():
|
||||
|
||||
return 1
|
||||
+29
@@ -0,0 +1,29 @@
|
||||
def itemTemplate():
|
||||
|
||||
return ['object/tangible/loot/creature_loot/collections/shared_housing_improvement_05.iff']
|
||||
|
||||
def lootDescriptor():
|
||||
|
||||
return 'customattributes'
|
||||
|
||||
def customizationAttributes():
|
||||
return ['/private/index_color_1']
|
||||
|
||||
def customizationValues():
|
||||
return [1]
|
||||
|
||||
def STFparams():
|
||||
|
||||
return ['static_item_n','item_collection_housing_improvement_05_01','static_item_d','item_collection_housing_improvement_05_01']
|
||||
|
||||
def AddToCollection():
|
||||
|
||||
return 'housing_improvement_05'
|
||||
|
||||
def CollectionItemName():
|
||||
|
||||
return 'housing_improvement_05_01'
|
||||
|
||||
def stackable():
|
||||
|
||||
return 1
|
||||
+29
@@ -0,0 +1,29 @@
|
||||
def itemTemplate():
|
||||
|
||||
return ['object/tangible/loot/creature_loot/collections/shared_housing_improvement_05.iff']
|
||||
|
||||
def lootDescriptor():
|
||||
|
||||
return 'customattributes'
|
||||
|
||||
def customizationAttributes():
|
||||
return ['/private/index_color_1']
|
||||
|
||||
def customizationValues():
|
||||
return [10]
|
||||
|
||||
def STFparams():
|
||||
|
||||
return ['static_item_n','item_collection_housing_improvement_05_10','static_item_d','item_collection_housing_improvement_05_10']
|
||||
|
||||
def AddToCollection():
|
||||
|
||||
return 'housing_improvement_05'
|
||||
|
||||
def CollectionItemName():
|
||||
|
||||
return 'housing_improvement_05_10'
|
||||
|
||||
def stackable():
|
||||
|
||||
return 1
|
||||
+29
@@ -0,0 +1,29 @@
|
||||
def itemTemplate():
|
||||
|
||||
return ['object/tangible/loot/creature_loot/collections/shared_housing_improvement_05.iff']
|
||||
|
||||
def lootDescriptor():
|
||||
|
||||
return 'customattributes'
|
||||
|
||||
def customizationAttributes():
|
||||
return ['/private/index_color_1']
|
||||
|
||||
def customizationValues():
|
||||
return [2]
|
||||
|
||||
def STFparams():
|
||||
|
||||
return ['static_item_n','item_collection_housing_improvement_05_02','static_item_d','item_collection_housing_improvement_05_02']
|
||||
|
||||
def AddToCollection():
|
||||
|
||||
return 'housing_improvement_05'
|
||||
|
||||
def CollectionItemName():
|
||||
|
||||
return 'housing_improvement_05_02'
|
||||
|
||||
def stackable():
|
||||
|
||||
return 1
|
||||
+29
@@ -0,0 +1,29 @@
|
||||
def itemTemplate():
|
||||
|
||||
return ['object/tangible/loot/creature_loot/collections/shared_housing_improvement_05.iff']
|
||||
|
||||
def lootDescriptor():
|
||||
|
||||
return 'customattributes'
|
||||
|
||||
def customizationAttributes():
|
||||
return ['/private/index_color_1']
|
||||
|
||||
def customizationValues():
|
||||
return [3]
|
||||
|
||||
def STFparams():
|
||||
|
||||
return ['static_item_n','item_collection_housing_improvement_05_03','static_item_d','item_collection_housing_improvement_05_03']
|
||||
|
||||
def AddToCollection():
|
||||
|
||||
return 'housing_improvement_05'
|
||||
|
||||
def CollectionItemName():
|
||||
|
||||
return 'housing_improvement_05_03'
|
||||
|
||||
def stackable():
|
||||
|
||||
return 1
|
||||
+29
@@ -0,0 +1,29 @@
|
||||
def itemTemplate():
|
||||
|
||||
return ['object/tangible/loot/creature_loot/collections/shared_housing_improvement_05.iff']
|
||||
|
||||
def lootDescriptor():
|
||||
|
||||
return 'customattributes'
|
||||
|
||||
def customizationAttributes():
|
||||
return ['/private/index_color_1']
|
||||
|
||||
def customizationValues():
|
||||
return [4]
|
||||
|
||||
def STFparams():
|
||||
|
||||
return ['static_item_n','item_collection_housing_improvement_05_04','static_item_d','item_collection_housing_improvement_05_04']
|
||||
|
||||
def AddToCollection():
|
||||
|
||||
return 'housing_improvement_05'
|
||||
|
||||
def CollectionItemName():
|
||||
|
||||
return 'housing_improvement_05_04'
|
||||
|
||||
def stackable():
|
||||
|
||||
return 1
|
||||
+29
@@ -0,0 +1,29 @@
|
||||
def itemTemplate():
|
||||
|
||||
return ['object/tangible/loot/creature_loot/collections/shared_housing_improvement_05.iff']
|
||||
|
||||
def lootDescriptor():
|
||||
|
||||
return 'customattributes'
|
||||
|
||||
def customizationAttributes():
|
||||
return ['/private/index_color_1']
|
||||
|
||||
def customizationValues():
|
||||
return [5]
|
||||
|
||||
def STFparams():
|
||||
|
||||
return ['static_item_n','item_collection_housing_improvement_05_05','static_item_d','item_collection_housing_improvement_05_05']
|
||||
|
||||
def AddToCollection():
|
||||
|
||||
return 'housing_improvement_05'
|
||||
|
||||
def CollectionItemName():
|
||||
|
||||
return 'housing_improvement_05_05'
|
||||
|
||||
def stackable():
|
||||
|
||||
return 1
|
||||
+29
@@ -0,0 +1,29 @@
|
||||
def itemTemplate():
|
||||
|
||||
return ['object/tangible/loot/creature_loot/collections/shared_housing_improvement_05.iff']
|
||||
|
||||
def lootDescriptor():
|
||||
|
||||
return 'customattributes'
|
||||
|
||||
def customizationAttributes():
|
||||
return ['/private/index_color_1']
|
||||
|
||||
def customizationValues():
|
||||
return [6]
|
||||
|
||||
def STFparams():
|
||||
|
||||
return ['static_item_n','item_collection_housing_improvement_05_06','static_item_d','item_collection_housing_improvement_05_06']
|
||||
|
||||
def AddToCollection():
|
||||
|
||||
return 'housing_improvement_05'
|
||||
|
||||
def CollectionItemName():
|
||||
|
||||
return 'housing_improvement_05_06'
|
||||
|
||||
def stackable():
|
||||
|
||||
return 1
|
||||
+29
@@ -0,0 +1,29 @@
|
||||
def itemTemplate():
|
||||
|
||||
return ['object/tangible/loot/creature_loot/collections/shared_housing_improvement_05.iff']
|
||||
|
||||
def lootDescriptor():
|
||||
|
||||
return 'customattributes'
|
||||
|
||||
def customizationAttributes():
|
||||
return ['/private/index_color_1']
|
||||
|
||||
def customizationValues():
|
||||
return [7]
|
||||
|
||||
def STFparams():
|
||||
|
||||
return ['static_item_n','item_collection_housing_improvement_05_07','static_item_d','item_collection_housing_improvement_05_07']
|
||||
|
||||
def AddToCollection():
|
||||
|
||||
return 'housing_improvement_05'
|
||||
|
||||
def CollectionItemName():
|
||||
|
||||
return 'housing_improvement_05_07'
|
||||
|
||||
def stackable():
|
||||
|
||||
return 1
|
||||
+29
@@ -0,0 +1,29 @@
|
||||
def itemTemplate():
|
||||
|
||||
return ['object/tangible/loot/creature_loot/collections/shared_housing_improvement_05.iff']
|
||||
|
||||
def lootDescriptor():
|
||||
|
||||
return 'customattributes'
|
||||
|
||||
def customizationAttributes():
|
||||
return ['/private/index_color_1']
|
||||
|
||||
def customizationValues():
|
||||
return [8]
|
||||
|
||||
def STFparams():
|
||||
|
||||
return ['static_item_n','item_collection_housing_improvement_05_08','static_item_d','item_collection_housing_improvement_05_08']
|
||||
|
||||
def AddToCollection():
|
||||
|
||||
return 'housing_improvement_05'
|
||||
|
||||
def CollectionItemName():
|
||||
|
||||
return 'housing_improvement_05_08'
|
||||
|
||||
def stackable():
|
||||
|
||||
return 1
|
||||
+29
@@ -0,0 +1,29 @@
|
||||
def itemTemplate():
|
||||
|
||||
return ['object/tangible/loot/creature_loot/collections/shared_housing_improvement_05.iff']
|
||||
|
||||
def lootDescriptor():
|
||||
|
||||
return 'customattributes'
|
||||
|
||||
def customizationAttributes():
|
||||
return ['/private/index_color_1']
|
||||
|
||||
def customizationValues():
|
||||
return [9]
|
||||
|
||||
def STFparams():
|
||||
|
||||
return ['static_item_n','item_collection_housing_improvement_05_09','static_item_d','item_collection_housing_improvement_05_09']
|
||||
|
||||
def AddToCollection():
|
||||
|
||||
return 'housing_improvement_05'
|
||||
|
||||
def CollectionItemName():
|
||||
|
||||
return 'housing_improvement_05_09'
|
||||
|
||||
def stackable():
|
||||
|
||||
return 1
|
||||
+20
@@ -0,0 +1,20 @@
|
||||
|
||||
def itemTemplate():
|
||||
|
||||
return ['object/tangible/loot/creature_loot/collections/shared_nightsister_earrings.iff']
|
||||
|
||||
def STFparams():
|
||||
|
||||
return ['static_item_n','col_nightsister_earrings_01','static_item_d','col_nightsister_earrings_01']
|
||||
|
||||
def AddToCollection():
|
||||
|
||||
return 'col_nightsister_valuables'
|
||||
|
||||
def CollectionItemName():
|
||||
|
||||
return 'nightsister_earrings_01'
|
||||
|
||||
def stackable():
|
||||
|
||||
return 1
|
||||
+20
@@ -0,0 +1,20 @@
|
||||
|
||||
def itemTemplate():
|
||||
|
||||
return ['object/tangible/loot/creature_loot/collections/shared_nightsister_bracelet.iff']
|
||||
|
||||
def STFparams():
|
||||
|
||||
return ['static_item_n','col_nightsister_bracelet_01','static_item_d','col_nightsister_bracelet_01']
|
||||
|
||||
def AddToCollection():
|
||||
|
||||
return 'col_nightsister_valuables'
|
||||
|
||||
def CollectionItemName():
|
||||
|
||||
return 'nightsister_bracelet_01'
|
||||
|
||||
def stackable():
|
||||
|
||||
return 1
|
||||
+20
@@ -0,0 +1,20 @@
|
||||
|
||||
def itemTemplate():
|
||||
|
||||
return ['object/tangible/loot/creature_loot/collections/shared_nightsister_broach.iff']
|
||||
|
||||
def STFparams():
|
||||
|
||||
return ['static_item_n','col_nightsister_broach_01','static_item_d','col_nightsister_broach_01']
|
||||
|
||||
def AddToCollection():
|
||||
|
||||
return 'col_nightsister_valuables'
|
||||
|
||||
def CollectionItemName():
|
||||
|
||||
return 'nightsister_broach_01'
|
||||
|
||||
def stackable():
|
||||
|
||||
return 1
|
||||
+20
@@ -0,0 +1,20 @@
|
||||
|
||||
def itemTemplate():
|
||||
|
||||
return ['object/tangible/loot/creature_loot/collections/shared_nightsister_pendant.iff']
|
||||
|
||||
def STFparams():
|
||||
|
||||
return ['static_item_n','col_nightsister_pendant_01','static_item_d','col_nightsister_pendant_01']
|
||||
|
||||
def AddToCollection():
|
||||
|
||||
return 'col_nightsister_valuables'
|
||||
|
||||
def CollectionItemName():
|
||||
|
||||
return 'nightsister_pendant_01'
|
||||
|
||||
def stackable():
|
||||
|
||||
return 1
|
||||
+20
@@ -0,0 +1,20 @@
|
||||
|
||||
def itemTemplate():
|
||||
|
||||
return ['object/tangible/loot/creature_loot/collections/shared_nightsister_ring.iff']
|
||||
|
||||
def STFparams():
|
||||
|
||||
return ['static_item_n','col_nightsister_ring_01','static_item_d','col_nightsister_ring_01']
|
||||
|
||||
def AddToCollection():
|
||||
|
||||
return 'col_nightsister_valuables'
|
||||
|
||||
def CollectionItemName():
|
||||
|
||||
return 'nightsister_ring_01'
|
||||
|
||||
def stackable():
|
||||
|
||||
return 1
|
||||
@@ -0,0 +1,20 @@
|
||||
|
||||
def itemTemplate():
|
||||
|
||||
return ['object/tangible/loot/creature_loot/collections/shared_trader_eng_head.iff']
|
||||
|
||||
def STFparams():
|
||||
|
||||
return ['static_item_n','col_ig_88_head_02_01','static_item_d','col_ig_88_head_02_01']
|
||||
|
||||
def AddToCollection():
|
||||
|
||||
return 'col_eng_trader'
|
||||
|
||||
def CollectionItemName():
|
||||
|
||||
return 'trader_eng_head'
|
||||
|
||||
def stackable():
|
||||
|
||||
return 1
|
||||
@@ -0,0 +1,20 @@
|
||||
|
||||
def itemTemplate():
|
||||
|
||||
return ['object/tangible/loot/creature_loot/collections/shared_trader_eng_left_arm.iff']
|
||||
|
||||
def STFparams():
|
||||
|
||||
return ['static_item_n','col_ig_88_left_arm_02_01','static_item_d','col_ig_88_left_arm_02_01']
|
||||
|
||||
def AddToCollection():
|
||||
|
||||
return 'col_eng_trader'
|
||||
|
||||
def CollectionItemName():
|
||||
|
||||
return 'trader_eng_left_arm'
|
||||
|
||||
def stackable():
|
||||
|
||||
return 1
|
||||
@@ -0,0 +1,20 @@
|
||||
|
||||
def itemTemplate():
|
||||
|
||||
return ['object/tangible/loot/creature_loot/collections/shared_trader_eng_left_leg.iff']
|
||||
|
||||
def STFparams():
|
||||
|
||||
return ['static_item_n','col_ig_88_left_leg_02_01','static_item_d','col_ig_88_left_leg_02_01']
|
||||
|
||||
def AddToCollection():
|
||||
|
||||
return 'col_eng_trader'
|
||||
|
||||
def CollectionItemName():
|
||||
|
||||
return 'trader_eng_left_leg'
|
||||
|
||||
def stackable():
|
||||
|
||||
return 1
|
||||
@@ -0,0 +1,20 @@
|
||||
|
||||
def itemTemplate():
|
||||
|
||||
return ['object/tangible/loot/creature_loot/collections/shared_trader_eng_right_arm.iff']
|
||||
|
||||
def STFparams():
|
||||
|
||||
return ['static_item_n','col_ig_88_right_arm_02_01','static_item_d','col_ig_88_right_arm_02_01']
|
||||
|
||||
def AddToCollection():
|
||||
|
||||
return 'col_eng_trader'
|
||||
|
||||
def CollectionItemName():
|
||||
|
||||
return 'trader_eng_right_arm'
|
||||
|
||||
def stackable():
|
||||
|
||||
return 1
|
||||
@@ -0,0 +1,20 @@
|
||||
|
||||
def itemTemplate():
|
||||
|
||||
return ['object/tangible/loot/creature_loot/collections/shared_trader_eng_right_leg.iff']
|
||||
|
||||
def STFparams():
|
||||
|
||||
return ['static_item_n','col_ig_88_right_leg_02_01','static_item_d','col_ig_88_right_leg_02_01']
|
||||
|
||||
def AddToCollection():
|
||||
|
||||
return 'col_eng_trader'
|
||||
|
||||
def CollectionItemName():
|
||||
|
||||
return 'trader_eng_right_leg'
|
||||
|
||||
def stackable():
|
||||
|
||||
return 1
|
||||
@@ -0,0 +1,20 @@
|
||||
|
||||
def itemTemplate():
|
||||
|
||||
return ['object/tangible/loot/creature_loot/collections/shared_trader_eng_stand_base.iff']
|
||||
|
||||
def STFparams():
|
||||
|
||||
return ['static_item_n','col_ig_88_metal_stand_02_01','static_item_d','col_ig_88_metal_stand_02_01']
|
||||
|
||||
def AddToCollection():
|
||||
|
||||
return 'col_eng_trader'
|
||||
|
||||
def CollectionItemName():
|
||||
|
||||
return 'trader_eng_stand_base'
|
||||
|
||||
def stackable():
|
||||
|
||||
return 1
|
||||
@@ -0,0 +1,20 @@
|
||||
|
||||
def itemTemplate():
|
||||
|
||||
return ['object/tangible/loot/creature_loot/collections/shared_trader_eng_torso.iff']
|
||||
|
||||
def STFparams():
|
||||
|
||||
return ['static_item_n','col_ig_88_torso_02_01','static_item_d','col_ig_88_torso_02_01']
|
||||
|
||||
def AddToCollection():
|
||||
|
||||
return 'col_eng_trader'
|
||||
|
||||
def CollectionItemName():
|
||||
|
||||
return 'trader_eng_torso'
|
||||
|
||||
def stackable():
|
||||
|
||||
return 1
|
||||
@@ -0,0 +1,12 @@
|
||||
|
||||
def itemTemplate():
|
||||
|
||||
return ['object/tangible/loot/creature_loot/collections/shared_ig_88_wooden_dowel.iff']
|
||||
|
||||
def STFparams():
|
||||
|
||||
return ['static_item_n','col_ig_88_wooden_dowel_02_01','static_item_d','col_ig_88_wooden_dowel_02_01']
|
||||
|
||||
def stackable():
|
||||
|
||||
return 1
|
||||
@@ -0,0 +1,20 @@
|
||||
|
||||
def itemTemplate():
|
||||
|
||||
return ['object/tangible/loot/creature_loot/collections/shared_trader_mun_head.iff']
|
||||
|
||||
def STFparams():
|
||||
|
||||
return ['static_item_n','col_stormtrooper_head_02_01','static_item_d','col_stormtrooper_head_02_01']
|
||||
|
||||
def AddToCollection():
|
||||
|
||||
return 'col_mun_trader'
|
||||
|
||||
def CollectionItemName():
|
||||
|
||||
return 'trader_mun_head'
|
||||
|
||||
def stackable():
|
||||
|
||||
return 1
|
||||
@@ -0,0 +1,20 @@
|
||||
|
||||
def itemTemplate():
|
||||
|
||||
return ['object/tangible/loot/creature_loot/collections/shared_trader_mun_left_arm.iff']
|
||||
|
||||
def STFparams():
|
||||
|
||||
return ['static_item_n','col_stormtrooper_left_arm_02_01','static_item_d','col_stormtrooper_left_arm_02_01']
|
||||
|
||||
def AddToCollection():
|
||||
|
||||
return 'col_mun_trader'
|
||||
|
||||
def CollectionItemName():
|
||||
|
||||
return 'trader_mun_left_arm'
|
||||
|
||||
def stackable():
|
||||
|
||||
return 1
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user