Files
NGECore2/scripts/loot/rarelootchestcontents/legendarytable.py
Light2 60ff7e519f changed powercrystal loottable to live values, changed tune values to live values
Flawless power crystal was rare loot too according to official forums
guide, however no screenshot proof could be found.
2014-06-09 20:40:44 +02:00

52 lines
3.9 KiB
Python

def itemNames():
# Legendary part
templates = ['biological_focus_crystal','synapse_focus_crystal','concentrated_bacta_tank','dna_storage_device_kowakian']
templates +=['dug_costume_instructions','mercenaries_despair','mercenaries_lament','nightsister_melee_armguard']
templates +=['rare_painting','sunriders_destiny'] # 10 items
# Exceptional part
templates +=['bacta_tank','legendary_e5_carbine','legendary_fwg5_pistol','legendary_nightsister_energy_lance']
templates +=['legendary_power_hammer','legendary_stun_baton','legendary_t21_rifle','advertisement_rodian']
templates +=['cunning_of_tyranus','dna_storage_device','dusk_in_kachirho','emperors_senate_office_chair']
templates +=['fighter','gungan_statue_style_1_schematic','gungan_statue_style_2_schematic','gungan_statue_style_3_schematic']
templates +=['gungan_statue_style_4_schematic','holo_entertainment_table','jedi_master_cloak','jedi_relic_1']
templates +=['poster_block_turret_schematic','prayer_mobile','shard_of_ferocity','shard_of_retaliation']
templates +=['sith_buff_holocron','sith_relic','war_phoenix']
# Rare part
templates +=['animal_hide_rack_style_1','animal_hide_rack_style_2','animal_hide_rack_style_3','animal_hide_rack_style_4']
templates +=['at_st_pilots_helmet','aurilian_sculpture_section_1','aurilian_sculpture_section_2','aurilian_sculpture_section_3']
templates +=['aurilian_sculpture_section_4','banes_heart','bar_corner_piece_1','bar_corner_piece_2']
templates +=['bar_corner_piece_3','bar_counter_large','bothan_beauty','bothan_buff']
templates +=['cast_wing_in_flight','corellian_seaside','data_disk_hologram','decorative_bubble_tank']
templates +=['droid_in_contrast','drum','emperors_eyes','family_bonds']
templates +=['feared','fighter_study','fighters_courage','geonosian_costume_instructions']
templates +=['hanging_life_day_orb','hutt_greed','imperial_oppression','jedi_statue_schematic']
templates +=['jubilee_wheel_schematic','kachirho_wall_cornucopia','kowakian_cage','krayt_costume_instructions']
templates +=['large_fruit_stand_schematic','large_unmarked_crate','lava_geode','life_day_lamp']
templates +=['life_day_proud_wookie','life_day_red_robed_wookie','living_canals','lugjack_machine_schematic']
templates +=['miniature_wroshyr_tree','modified_fusion_reactor_schematic','mustafarian_injector','mynock_costume_instructions']
templates +=['no_division','nym_collectible_globe','pilgrimage','poster_of_a_ship_schematic']
templates +=['poster_of_a_turret_schematic','poster_of_food_preparation','proton_chair','rancor_costume_instructions']
templates +=['rotj_helmet','shard_of_the_serpent','stap1_vehicle_deed','target_dummy_black_sun']
templates +=['target_dummy_rebel','target_dummy_stormtrooper','tatooine_dune_speeder','triumph']
templates +=['ugnaught_costume_instructions','victory','wampa_costume_instructions','war_terminal']
templates +=['warriors honor','wookie_home_banner_kit','wookie_life_day_orb','xeno_couch']
templates +=['xeno_desk','xeno_desk_lamp','xeno_rug','xeno_table']
templates += ['powercrystal_perfect']
return templates
def itemChances():
chances = [1.875,1.875,1.875,1.875,1.875,1.875,1.875,1.875,1.875,1.875] #10 Legendaries
chances += [1.25,1.25,1.25,1.25,1.25,1.25,1.25,1.25,1.25,1.25] #27 Exceptionals
chances += [1.25,1.25,1.25,1.25,1.25,1.25,1.25,1.25,1.25,1.25]
chances += [1.25,1.25,1.25,1.25,1.25,1.25,1.25]
chances += [0.616,0.616,0.616,0.616,0.616,0.616,0.616,0.616,0.616,0.616] #77 Rares
chances += [0.616,0.616,0.616,0.616,0.616,0.616,0.616,0.616,0.616,0.616]
chances += [0.616,0.616,0.616,0.616,0.616,0.616,0.616,0.616,0.616,0.616]
chances += [0.616,0.616,0.616,0.616,0.616,0.616,0.616,0.616,0.616,0.616]
chances += [0.616,0.616,0.616,0.616,0.616,0.616,0.616,0.616,0.616,0.616]
chances += [0.616,0.616,0.616,0.616,0.616,0.616,0.616,0.616,0.616,0.616]
chances += [0.616,0.616,0.616,0.616,0.616,0.616,0.616,0.616,0.616,0.616]
chances += [0.616,0.616,0.616,0.616,0.616,0.616,0.616]
return chances