mirror of
https://github.com/ProjectSWGCore/NGECore2.git
synced 2026-09-11 21:45:43 -04:00
item data entry
basic item data entry to add condition and volume to item examine window
This commit is contained in:
@@ -1,4 +1,10 @@
|
||||
import sys
|
||||
|
||||
def setup(core, object):
|
||||
|
||||
object = core.objectService.createObject('object/tangible/wearables/armor/shared_appearance_invisible_bicep_l.iff', object.getPlanet())
|
||||
object.setStringAttribute('condition', '100/100')
|
||||
object.setStringAttribute('volume', '1')
|
||||
inventory.add(object)
|
||||
|
||||
return
|
||||
@@ -1,4 +1,10 @@
|
||||
import sys
|
||||
|
||||
def setup(core, object):
|
||||
|
||||
object = core.objectService.createObject('object/tangible/wearables/armor/shared_appearance_invisible_bicep_r.iff', object.getPlanet())
|
||||
object.setStringAttribute('condition', '100/100')
|
||||
object.setStringAttribute('volume', '1')
|
||||
inventory.add(object)
|
||||
|
||||
return
|
||||
@@ -1,4 +1,10 @@
|
||||
import sys
|
||||
|
||||
def setup(core, object):
|
||||
|
||||
object = core.objectService.createObject('object/tangible/wearables/armor/shared_appearance_invisible_bracer_l.iff', object.getPlanet())
|
||||
object.setStringAttribute('condition', '100/100')
|
||||
object.setStringAttribute('volume', '1')
|
||||
inventory.add(object)
|
||||
|
||||
return
|
||||
@@ -1,4 +1,10 @@
|
||||
import sys
|
||||
|
||||
def setup(core, object):
|
||||
|
||||
object = core.objectService.createObject('object/tangible/wearables/armor/shared_appearance_invisible_bracer_r.iff', object.getPlanet())
|
||||
object.setStringAttribute('condition', '100/100')
|
||||
object.setStringAttribute('volume', '1')
|
||||
inventory.add(object)
|
||||
|
||||
return
|
||||
@@ -1,4 +1,10 @@
|
||||
import sys
|
||||
|
||||
def setup(core, object):
|
||||
|
||||
object = core.objectService.createObject('object/tangible/wearables/armor/nightsister/shared_armor_nightsister_bicep_r_s01.iff', object.getPlanet())
|
||||
object.setStringAttribute('condition', '100/100')
|
||||
object.setStringAttribute('volume', '1')
|
||||
inventory.add(object)
|
||||
|
||||
return
|
||||
@@ -1,4 +1,10 @@
|
||||
import sys
|
||||
|
||||
def setup(core, object):
|
||||
|
||||
object = core.objectService.createObject('object/tangible/wearables/backpack/shared_back_gmf_wings.iff', object.getPlanet())
|
||||
object.setStringAttribute('condition', '100/100')
|
||||
object.setStringAttribute('volume', '1')
|
||||
inventory.add(object)
|
||||
|
||||
return
|
||||
@@ -1,4 +1,10 @@
|
||||
import sys
|
||||
|
||||
def setup(core, object):
|
||||
|
||||
object = core.objectService.createObject('object/tangible/wearables/backpack/shared_back_love_day_10_blue_wings.iff', object.getPlanet())
|
||||
object.setStringAttribute('condition', '100/100')
|
||||
object.setStringAttribute('volume', '1')
|
||||
inventory.add(object)
|
||||
|
||||
return
|
||||
@@ -1,4 +1,10 @@
|
||||
import sys
|
||||
|
||||
def setup(core, object):
|
||||
|
||||
object = core.objectService.createObject('object/tangible/wearables/backpack/shared_back_love_day_10_golden_wings.iff', object.getPlanet())
|
||||
object.setStringAttribute('condition', '100/100')
|
||||
object.setStringAttribute('volume', '1')
|
||||
inventory.add(object)
|
||||
|
||||
return
|
||||
@@ -1,4 +1,10 @@
|
||||
import sys
|
||||
|
||||
def setup(core, object):
|
||||
|
||||
object = core.objectService.createObject('object/tangible/wearables/backpack/shared_back_love_day_10_pink_wings.iff', object.getPlanet())
|
||||
object.setStringAttribute('condition', '100/100')
|
||||
object.setStringAttribute('volume', '1')
|
||||
inventory.add(object)
|
||||
|
||||
return
|
||||
@@ -1,4 +1,10 @@
|
||||
import sys
|
||||
|
||||
def setup(core, object):
|
||||
|
||||
object = core.objectService.createObject('object/tangible/wearables/backpack/shared_back_love_day_11_hue_wings.iff', object.getPlanet())
|
||||
object.setStringAttribute('condition', '100/100')
|
||||
object.setStringAttribute('volume', '1')
|
||||
inventory.add(object)
|
||||
|
||||
return
|
||||
@@ -1,4 +1,10 @@
|
||||
import sys
|
||||
|
||||
def setup(core, object):
|
||||
|
||||
object = core.objectService.createObject('object/tangible/wearables/backpack/shared_back_love_day_wings.iff', object.getPlanet())
|
||||
object.setStringAttribute('condition', '100/100')
|
||||
object.setStringAttribute('volume', '1')
|
||||
inventory.add(object)
|
||||
|
||||
return
|
||||
@@ -1,4 +1,10 @@
|
||||
import sys
|
||||
|
||||
def setup(core, object):
|
||||
|
||||
object = core.objectService.createObject('object/tangible/wearables/backpack/shared_backpack_gmf_01.iff', object.getPlanet())
|
||||
object.setStringAttribute('condition', '100/100')
|
||||
object.setStringAttribute('volume', '1')
|
||||
inventory.add(object)
|
||||
|
||||
return
|
||||
@@ -1,4 +1,13 @@
|
||||
import sys
|
||||
|
||||
def setup(core, object):
|
||||
object = core.objectService.creatObject('object/tangible/werables/cape/shared_cape_imperial_01.iff', object.getPlanet())
|
||||
object.setCustomName('Imperial Cape')
|
||||
object.setStringAttribute('condition', '100/100')
|
||||
object.setStringAttribute('volume', '1')
|
||||
object.setStringAttribute('cost', '[2500] Imperial Galactic Civil War token')
|
||||
object.setStringAttribute('faction_restriction', 'Imperial')
|
||||
|
||||
inventory.add(object)
|
||||
|
||||
return
|
||||
@@ -1,4 +1,13 @@
|
||||
import sys
|
||||
|
||||
def setup(core, object):
|
||||
object = core.objectService.creatObject('object/tangible/werables/cape/shared_cape_rebel_01.iff', object.getPlanet())
|
||||
object.setCustomName('Rebel Alliance Cape')
|
||||
object.setStringAttribute('condition', '100/100')
|
||||
object.setStringAttribute('volume', '1')
|
||||
object.setStringAttribute('cost', '[2500] Rebel Alliance Galactic Civil War token')
|
||||
object.setStringAttribute('faction_restriction', 'Rebel Alliance')
|
||||
|
||||
inventory.add(object)
|
||||
|
||||
return
|
||||
@@ -1,4 +1,10 @@
|
||||
import sys
|
||||
|
||||
def setup(core, object):
|
||||
|
||||
object = core.objectService.createObject('object/tangible/wearables/gloves/shared_appearance_invisible_s01.iff', object.getPlanet())
|
||||
object.setStringAttribute('condition', '100/100')
|
||||
object.setStringAttribute('volume', '1')
|
||||
inventory.add(object)
|
||||
|
||||
return
|
||||
@@ -1,4 +1,10 @@
|
||||
import sys
|
||||
|
||||
def setup(core, object):
|
||||
|
||||
object = core.objectService.createObject('object/tangible/wearables/gloves/shared_gloves_tusken_raider.iff', object.getPlanet())
|
||||
object.setStringAttribute('condition', '100/100')
|
||||
object.setStringAttribute('volume', '1')
|
||||
inventory.add(object)
|
||||
|
||||
return
|
||||
@@ -1,4 +1,10 @@
|
||||
import sys
|
||||
|
||||
def setup(core, object):
|
||||
|
||||
object = core.objectService.createObject('object/tangible/wearables/goggles/shared_goggles_anniverary.iff', object.getPlanet())
|
||||
object.setStringAttribute('condition', '100/100')
|
||||
object.setStringAttribute('volume', '1')
|
||||
inventory.add(object)
|
||||
|
||||
return
|
||||
@@ -1,4 +1,10 @@
|
||||
import sys
|
||||
|
||||
def setup(core, object):
|
||||
|
||||
object = core.objectService.createObject('object/tangible/wearables/goggles/shared_goggles_s01.iff', object.getPlanet())
|
||||
object.setStringAttribute('condition', '100/100')
|
||||
object.setStringAttribute('volume', '1')
|
||||
inventory.add(object)
|
||||
|
||||
return
|
||||
@@ -1,4 +1,10 @@
|
||||
import sys
|
||||
|
||||
def setup(core, object):
|
||||
|
||||
object = core.objectService.createObject('object/tangible/wearables/goggles/shared_goggles_s02.iff', object.getPlanet())
|
||||
object.setStringAttribute('condition', '100/100')
|
||||
object.setStringAttribute('volume', '1')
|
||||
inventory.add(object)
|
||||
|
||||
return
|
||||
@@ -1,4 +1,10 @@
|
||||
import sys
|
||||
|
||||
def setup(core, object):
|
||||
|
||||
object = core.objectService.createObject('object/tangible/wearables/goggles/shared_goggles_s03.iff', object.getPlanet())
|
||||
object.setStringAttribute('condition', '100/100')
|
||||
object.setStringAttribute('volume', '1')
|
||||
inventory.add(object)
|
||||
|
||||
return
|
||||
@@ -1,4 +1,10 @@
|
||||
import sys
|
||||
|
||||
def setup(core, object):
|
||||
|
||||
object = core.objectService.createObject('object/tangible/wearables/goggles/shared_goggles_s04.iff', object.getPlanet())
|
||||
object.setStringAttribute('condition', '100/100')
|
||||
object.setStringAttribute('volume', '1')
|
||||
inventory.add(object)
|
||||
|
||||
return
|
||||
@@ -1,4 +1,10 @@
|
||||
import sys
|
||||
|
||||
def setup(core, object):
|
||||
|
||||
object = core.objectService.createObject('object/tangible/wearables/goggles/shared_goggles_s05.iff', object.getPlanet())
|
||||
object.setStringAttribute('condition', '100/100')
|
||||
object.setStringAttribute('volume', '1')
|
||||
inventory.add(object)
|
||||
|
||||
return
|
||||
@@ -1,4 +1,10 @@
|
||||
import sys
|
||||
|
||||
def setup(core, object):
|
||||
|
||||
object = core.objectService.createObject('object/tangible/wearables/goggles/shared_goggles_s06.iff', object.getPlanet())
|
||||
object.setStringAttribute('condition', '100/100')
|
||||
object.setStringAttribute('volume', '1')
|
||||
inventory.add(object)
|
||||
|
||||
return
|
||||
@@ -1,4 +1,10 @@
|
||||
import sys
|
||||
|
||||
def setup(core, object):
|
||||
|
||||
object = core.objectService.createObject('object/tangible/wearables/goggles/shared_rebreather.iff', object.getPlanet())
|
||||
object.setStringAttribute('condition', '100/100')
|
||||
object.setStringAttribute('volume', '1')
|
||||
inventory.add(object)
|
||||
|
||||
return
|
||||
@@ -1,4 +1,11 @@
|
||||
import sys
|
||||
|
||||
def setup(core, object):
|
||||
|
||||
object = core.objectService.createObject('object/tangible/wearables/helmet/shared_helmet_atat.iff', object.getPlanet())
|
||||
object.setStringAttribute('condition', '100/100')
|
||||
object.setStringAttribute('volume', '1')
|
||||
|
||||
inventory.add(object)
|
||||
|
||||
return
|
||||
@@ -1,4 +1,11 @@
|
||||
import sys
|
||||
|
||||
def setup(core, object):
|
||||
|
||||
object = core.objectService.createObject('object/tangible/wearables/helmet/shared_helmet_fighter_blacksun_ace.iff', object.getPlanet())
|
||||
object.setStringAttribute('condition', '100/100')
|
||||
object.setStringAttribute('volume', '1')
|
||||
|
||||
inventory.add(object)
|
||||
|
||||
return
|
||||
@@ -1,4 +1,12 @@
|
||||
import sys
|
||||
|
||||
def setup(core, object):
|
||||
|
||||
object = core.objectService.createObject('object/tangible/wearables/helmet/shared_helmet_fighter_imperial_ace.iff', object.getPlanet())
|
||||
object.setStringAttribute('condition', '100/100')
|
||||
object.setStringAttribute('volume', '1')
|
||||
|
||||
inventory.add(object)
|
||||
|
||||
|
||||
return
|
||||
@@ -1,4 +1,11 @@
|
||||
import sys
|
||||
|
||||
def setup(core, object):
|
||||
|
||||
object = core.objectService.createObject('object/tangible/wearables/helmet/shared_helmet_fighter_privateer_ace.iff', object.getPlanet())
|
||||
object.setStringAttribute('condition', '100/100')
|
||||
object.setStringAttribute('volume', '1')
|
||||
|
||||
inventory.add(object)
|
||||
|
||||
return
|
||||
@@ -1,4 +1,11 @@
|
||||
import sys
|
||||
|
||||
def setup(core, object):
|
||||
|
||||
object = core.objectService.createObject('object/tangible/wearables/helmet/shared_helmet_fighter_rebel_ace.iff', object.getPlanet())
|
||||
object.setStringAttribute('condition', '100/100')
|
||||
object.setStringAttribute('volume', '1')
|
||||
|
||||
inventory.add(object)
|
||||
|
||||
return
|
||||
@@ -1,4 +1,11 @@
|
||||
import sys
|
||||
|
||||
def setup(core, object):
|
||||
|
||||
object = core.objectService.createObject('object/tangible/wearables/helmet/shared_helmet_tie_fighter.iff', object.getPlanet())
|
||||
object.setStringAttribute('condition', '100/100')
|
||||
object.setStringAttribute('volume', '1')
|
||||
|
||||
inventory.add(object)
|
||||
|
||||
return
|
||||
@@ -1,4 +1,11 @@
|
||||
import sys
|
||||
|
||||
def setup(core, object):
|
||||
|
||||
object = core.objectService.createObject('object/tangible/wearables/helmet/shared_helmet_tusken_raider_s01.iff', object.getPlanet())
|
||||
object.setStringAttribute('condition', '100/100')
|
||||
object.setStringAttribute('volume', '1')
|
||||
|
||||
inventory.add(object)
|
||||
|
||||
return
|
||||
@@ -1,4 +1,11 @@
|
||||
import sys
|
||||
|
||||
def setup(core, object):
|
||||
|
||||
object = core.objectService.createObject('object/tangible/wearables/helmet/shared_helmet_tusken_raider_s02.iff', object.getPlanet())
|
||||
object.setStringAttribute('condition', '100/100')
|
||||
object.setStringAttribute('volume', '1')
|
||||
|
||||
inventory.add(object)
|
||||
|
||||
return
|
||||
@@ -1,4 +1,10 @@
|
||||
import sys
|
||||
|
||||
def setup(core, object):
|
||||
|
||||
object = core.objectService.createObject('object/tangible/wearables/utility/shared_utility_belt_tusken_raider.iff', object.getPlanet())
|
||||
object.setStringAttribute('condition', '100/100')
|
||||
object.setStringAttribute('volume', '1')
|
||||
inventory.add(object)
|
||||
|
||||
return
|
||||
@@ -1,4 +1,10 @@
|
||||
import sys
|
||||
|
||||
def setup(core, object):
|
||||
|
||||
object = core.objectService.createObject('object/tangible/wearables/vest/shared_appearance_invisible_s01.iff', object.getPlanet())
|
||||
object.setStringAttribute('condition', '100/100')
|
||||
object.setStringAttribute('volume', '1')
|
||||
inventory.add(object)
|
||||
|
||||
return
|
||||
Reference in New Issue
Block a user