mirror of
https://github.com/ProjectSWGCore/NGECore2.git
synced 2026-09-11 21:45:43 -04:00
Flawless power crystal was rare loot too according to official forums guide, however no screenshot proof could be found.
37 lines
2.5 KiB
Python
37 lines
2.5 KiB
Python
|
|
def itemNames():
|
|
|
|
items = ['animal_hide_rack_style_1','animal_hide_rack_style_2','animal_hide_rack_style_3','animal_hide_rack_style_4']
|
|
items +=['at_st_pilots_helmet','aurilian_sculpture_section_1','aurilian_sculpture_section_2','aurilian_sculpture_section_3']
|
|
items +=['aurilian_sculpture_section_4','banes_heart','bar_corner_piece_1','bar_corner_piece_2']
|
|
items +=['bar_corner_piece_3','bar_counter_large','bothan_beauty','bothan_buff']
|
|
items +=['cast_wing_in_flight','corellian_seaside','data_disk_hologram','decorative_bubble_tank']
|
|
items +=['droid_in_contrast','drum','emperors_eyes','family_bonds']
|
|
items +=['feared','fighter_study','fighters_courage','geonosian_costume_instructions']
|
|
items +=['hanging_life_day_orb','hutt_greed','imperial_oppression','jedi_statue_schematic']
|
|
items +=['jubilee_wheel_schematic','kachirho_wall_cornucopia','kowakian_cage','krayt_costume_instructions']
|
|
items +=['large_fruit_stand_schematic','large_unmarked_crate','lava_geode','life_day_lamp']
|
|
items +=['life_day_proud_wookie','life_day_red_robed_wookie','living_canals','lugjack_machine_schematic']
|
|
items +=['miniature_wroshyr_tree','modified_fusion_reactor_schematic','mustafarian_injector','mynock_costume_instructions']
|
|
items +=['no_division','nym_collectible_globe','pilgrimage','poster_of_a_ship_schematic']
|
|
items +=['poster_of_a_turret_schematic','poster_of_food_preparation','proton_chair','rancor_costume_instructions']
|
|
items +=['rotj_helmet','shard_of_the_serpent','stap1_vehicle_deed','target_dummy_black_sun']
|
|
items +=['target_dummy_rebel','target_dummy_stormtrooper','tatooine_dune_speeder','triumph']
|
|
items +=['ugnaught_costume_instructions','victory','wampa_costume_instructions','war_terminal']
|
|
items +=['warriors honor','wookie_home_banner_kit','wookie_life_day_orb','xeno_couch']
|
|
items +=['xeno_desk','xeno_desk_lamp','xeno_rug','xeno_table']
|
|
items += ['powercrystal_perfect']
|
|
return items
|
|
|
|
def itemChances():
|
|
|
|
chances=[1.298,1.298,1.298,1.298,1.298,1.298,1.298,1.298,1.298,1.298]
|
|
chances+=[1.298,1.298,1.298,1.298,1.298,1.298,1.298,1.298,1.298,1.298]
|
|
chances+=[1.298,1.298,1.298,1.298,1.298,1.298,1.298,1.298,1.298,1.298]
|
|
chances+=[1.298,1.298,1.298,1.298,1.298,1.298,1.298,1.298,1.298,1.298]
|
|
chances+=[1.298,1.298,1.298,1.298,1.298,1.298,1.298,1.298,1.298,1.298]
|
|
chances+=[1.298,1.298,1.298,1.298,1.298,1.298,1.298,1.298,1.298,1.298]
|
|
chances+=[1.298,1.298,1.298,1.298,1.298,1.298,1.298,1.298,1.298,1.298]
|
|
chances+=[1.298,1.298,1.298,1.298,1.298,1.298,1.298]
|
|
return chances ##Sum must be exactly 100 77 items -> 1.298
|
|
|