mirror of
https://github.com/ProjectSWGCore/NGECore2.git
synced 2026-08-01 02:16:15 -04:00
48 lines
3.5 KiB
Python
48 lines
3.5 KiB
Python
|
|
def itemNames():
|
|
# 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']
|
|
|
|
return templates
|
|
|
|
def itemChances():
|
|
chances = [1.908,1.908,1.908,1.908,1.908,1.908,1.908,1.908,1.908,1.908] #27 Exceptionals
|
|
chances += [1.908,1.908,1.908,1.908,1.908,1.908,1.908,1.908,1.908,1.908]
|
|
chances += [1.908,1.908,1.908,1.908,1.908,1.908,1.908]
|
|
chances += [0.636,0.636,0.636,0.636,0.636,0.636,0.636,0.636,0.636,0.636] #76 Rares
|
|
chances += [0.636,0.636,0.636,0.636,0.636,0.636,0.636,0.636,0.636,0.636]
|
|
chances += [0.636,0.636,0.636,0.636,0.636,0.636,0.636,0.636,0.636,0.636]
|
|
chances += [0.636,0.636,0.636,0.636,0.636,0.636,0.636,0.636,0.636,0.636]
|
|
chances += [0.636,0.636,0.636,0.636,0.636,0.636,0.636,0.636,0.636,0.636]
|
|
chances += [0.636,0.636,0.636,0.636,0.636,0.636,0.636,0.636,0.636,0.636]
|
|
chances += [0.636,0.636,0.636,0.636,0.636,0.636,0.636,0.636,0.636,0.636]
|
|
chances += [0.636,0.636,0.636,0.636,0.636,0.784]
|
|
|
|
return chances
|
|
|