diff --git a/scripts/object/tangible/loot/generic_usable/item_entertainer_clicky_01_02.py b/scripts/object/tangible/loot/generic_usable/item_entertainer_clicky_01_02.py new file mode 100644 index 00000000..dd6a2c0b --- /dev/null +++ b/scripts/object/tangible/loot/generic_usable/item_entertainer_clicky_01_02.py @@ -0,0 +1,9 @@ +import sys + +def setup(core, object): + object.setStfFilename('static_item_n') + object.setStfName('item_entertainer_clicky_01_02') + object.setDetailFilename('static_item_d') + object.setDetailName('item_entertainer_clicky_01_02') + object.setStringAttribute('class_required', 'Entertainer') + return diff --git a/scripts/roadmap/entertainer_1a.py b/scripts/roadmap/entertainer_1a.py index efe33465..0156686e 100644 --- a/scripts/roadmap/entertainer_1a.py +++ b/scripts/roadmap/entertainer_1a.py @@ -25,4 +25,40 @@ def getAction(): return 75 def getRewards(name): - return \ No newline at end of file + + if name == 'item_entertainer_backpack_01_02': + return "object/tangible/wearables/backpack/shared_backpack_s04.iff" + + if name == 'armor_entertainer_roadmap_cloak_02_01': + return "object/tangible/wearables/robe/shared_robe_s01.iff" + + if name == 'armor_entertainer_roadmap_boots_02_01': + return "object/tangible/wearables/boots/shared_boots_s03.iff" + + if name == 'armor_entertainer_roadmap_gloves_02_01': + return "object/tangible/wearables/gloves/shared_gloves_s02.iff" + + if name == 'armor_entertainer_roadmap_pants_02_01': + return "object/tangible/wearables/pants/shared_pants_s01.iff" + + if name == 'weapon_vibro_en_roadmap_01_02': + return "object/weapon/melee/special/shared_vibroknuckler.iff" + + if name == 'weapon_pistol_en_roadmap_01_02': + return "object/weapon/ranged/pistol/shared_pistol_striker.iff" + + if name == 'weapon_vibro_en_roadmap_02_02': + return "object/weapon/melee/special/shared_vibroknuckler.iff.iff" + + if name == 'item_entertainer_ring_01_02': + return "object/tangible/wearables/ring/shared_ring_s02.iff" + + if name == 'item_entertainer_pendant_01_02': + return "object/tangible/wearables/necklace/shared_necklace_s02.iff" + + if name == 'item_entertainer_clicky_01_02': + return "object/tangible/loot/generic_usable/shared_survey_pad_adv_generic.iff" + + if name == 'item_roadmap_belt_entertainer_01_02': + return "object/tangible/wearables/armor/zam/shared_armor_zam_wesell_belt.iff" + \ No newline at end of file