mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-11 18:53:06 +00:00
Fixes exportpanel missing vars (#7016)
This commit is contained in:
@@ -122,7 +122,10 @@ type Belly = {
|
|||||||
shrink_grow_size: number;
|
shrink_grow_size: number;
|
||||||
vorespawn_blacklist: BooleanLike;
|
vorespawn_blacklist: BooleanLike;
|
||||||
egg_type: string;
|
egg_type: string;
|
||||||
|
egg_name: string;
|
||||||
selective_preference: string;
|
selective_preference: string;
|
||||||
|
recycling: BooleanLike;
|
||||||
|
entrance_logs: BooleanLike;
|
||||||
|
|
||||||
// Messages
|
// Messages
|
||||||
struggle_messages_outside: string[];
|
struggle_messages_outside: string[];
|
||||||
@@ -157,6 +160,8 @@ type Belly = {
|
|||||||
fancy_vore: BooleanLike;
|
fancy_vore: BooleanLike;
|
||||||
vore_sound: string;
|
vore_sound: string;
|
||||||
release_sound: string;
|
release_sound: string;
|
||||||
|
sound_volume: number;
|
||||||
|
noise_freq: number;
|
||||||
|
|
||||||
// Visuals
|
// Visuals
|
||||||
affects_vore_sprites: BooleanLike;
|
affects_vore_sprites: BooleanLike;
|
||||||
@@ -172,7 +177,13 @@ type Belly = {
|
|||||||
belly_sprite_to_affect: string;
|
belly_sprite_to_affect: string;
|
||||||
|
|
||||||
// Visuals (Belly Fullscreens Preview and Coloring)
|
// Visuals (Belly Fullscreens Preview and Coloring)
|
||||||
|
belly_fullscreen: string;
|
||||||
belly_fullscreen_color: string;
|
belly_fullscreen_color: string;
|
||||||
|
belly_fullscreen_color2: string;
|
||||||
|
belly_fullscreen_color3: string;
|
||||||
|
belly_fullscreen_color4: string;
|
||||||
|
belly_fullscreen_alpha: number;
|
||||||
|
colorization_enabled: BooleanLike;
|
||||||
|
|
||||||
// Visuals (Vore FX)
|
// Visuals (Vore FX)
|
||||||
disable_hud: BooleanLike;
|
disable_hud: BooleanLike;
|
||||||
@@ -214,6 +225,16 @@ type Belly = {
|
|||||||
custom_max_volume: number;
|
custom_max_volume: number;
|
||||||
vorefootsteps_sounds: BooleanLike;
|
vorefootsteps_sounds: BooleanLike;
|
||||||
reagent_mode_flag_list: string[];
|
reagent_mode_flag_list: string[];
|
||||||
|
liquid_overlay: BooleanLike;
|
||||||
|
max_liquid_level: number;
|
||||||
|
mush_overlay: BooleanLike;
|
||||||
|
mush_color: string;
|
||||||
|
mush_alpha: number;
|
||||||
|
max_mush: number;
|
||||||
|
min_mush: number;
|
||||||
|
item_mush_val: number;
|
||||||
|
custom_reagentcolor: string;
|
||||||
|
custom_reagentalpha: number;
|
||||||
|
|
||||||
// Liquid Messages
|
// Liquid Messages
|
||||||
liquid_fullness1_messages: BooleanLike;
|
liquid_fullness1_messages: BooleanLike;
|
||||||
@@ -263,7 +284,10 @@ const generateBellyString = (belly: Belly, index: number) => {
|
|||||||
shrink_grow_size,
|
shrink_grow_size,
|
||||||
vorespawn_blacklist,
|
vorespawn_blacklist,
|
||||||
egg_type,
|
egg_type,
|
||||||
|
egg_name,
|
||||||
selective_preference,
|
selective_preference,
|
||||||
|
recycling,
|
||||||
|
entrance_logs,
|
||||||
|
|
||||||
// Messages
|
// Messages
|
||||||
struggle_messages_outside,
|
struggle_messages_outside,
|
||||||
@@ -298,6 +322,8 @@ const generateBellyString = (belly: Belly, index: number) => {
|
|||||||
fancy_vore,
|
fancy_vore,
|
||||||
vore_sound,
|
vore_sound,
|
||||||
release_sound,
|
release_sound,
|
||||||
|
sound_volume,
|
||||||
|
noise_freq,
|
||||||
|
|
||||||
// Visuals
|
// Visuals
|
||||||
affects_vore_sprites,
|
affects_vore_sprites,
|
||||||
@@ -307,7 +333,13 @@ const generateBellyString = (belly: Belly, index: number) => {
|
|||||||
belly_sprite_to_affect,
|
belly_sprite_to_affect,
|
||||||
|
|
||||||
// Visuals (Belly Fullscreens Preview and Coloring)
|
// Visuals (Belly Fullscreens Preview and Coloring)
|
||||||
|
belly_fullscreen,
|
||||||
belly_fullscreen_color,
|
belly_fullscreen_color,
|
||||||
|
belly_fullscreen_color2,
|
||||||
|
belly_fullscreen_color3,
|
||||||
|
belly_fullscreen_color4,
|
||||||
|
belly_fullscreen_alpha,
|
||||||
|
colorization_enabled,
|
||||||
|
|
||||||
// Visuals (Vore FX)
|
// Visuals (Vore FX)
|
||||||
disable_hud,
|
disable_hud,
|
||||||
@@ -349,6 +381,16 @@ const generateBellyString = (belly: Belly, index: number) => {
|
|||||||
custom_max_volume,
|
custom_max_volume,
|
||||||
vorefootsteps_sounds,
|
vorefootsteps_sounds,
|
||||||
reagent_mode_flag_list,
|
reagent_mode_flag_list,
|
||||||
|
liquid_overlay,
|
||||||
|
max_liquid_level,
|
||||||
|
mush_overlay,
|
||||||
|
mush_color,
|
||||||
|
mush_alpha,
|
||||||
|
max_mush,
|
||||||
|
min_mush,
|
||||||
|
item_mush_val,
|
||||||
|
custom_reagentcolor,
|
||||||
|
custom_reagentalpha,
|
||||||
|
|
||||||
// Liquid Messages
|
// Liquid Messages
|
||||||
liquid_fullness1_messages,
|
liquid_fullness1_messages,
|
||||||
|
|||||||
File diff suppressed because one or more lines are too long
Reference in New Issue
Block a user