diff --git a/VPet-Simulator.Core/Display/Main.xaml b/VPet-Simulator.Core/Display/Main.xaml index d04ee5a..803b4f7 100644 --- a/VPet-Simulator.Core/Display/Main.xaml +++ b/VPet-Simulator.Core/Display/Main.xaml @@ -8,11 +8,10 @@ x:FieldModifier="public" MouseLeftButtonUp="MainGrid_MouseLeftButtonUp" MouseRightButtonDown="MainGrid_MouseRightButtonDown" MouseMove="MainGrid_MouseWave"> <MediaElement x:Name="VoicePlayer" LoadedBehavior="Manual" UnloadedBehavior="Stop" /> - <Grid x:Name="UIGrid_Back" x:FieldModifier="public" Height="500" VerticalAlignment="Top" Width="500" /> + <Grid x:Name="UIGrid_Back" x:FieldModifier="public" VerticalAlignment="Top" Width="500" /> <Border x:Name="PetGrid" Height="500" VerticalAlignment="Top" Width="500" /> <Border x:Name="PetGrid2" Height="500" VerticalAlignment="Top" Width="500" /> - <Grid x:Name="UIGrid" x:FieldModifier="public" Height="500" VerticalAlignment="Top" Width="500" /> - <Grid x:Name="UIGrid_Botton" x:FieldModifier="public" Width="500" VerticalAlignment="Top" Margin="0,500,0,0" /> + <Grid x:Name="UIGrid" x:FieldModifier="public" VerticalAlignment="Top" Width="500" /> </Grid> </Viewbox> </pu:ContentControlX> diff --git a/VPet-Simulator.Core/Display/MainLogic.cs b/VPet-Simulator.Core/Display/MainLogic.cs index 31961af..53f84b6 100644 --- a/VPet-Simulator.Core/Display/MainLogic.cs +++ b/VPet-Simulator.Core/Display/MainLogic.cs @@ -68,7 +68,16 @@ namespace VPet_Simulator.Core { if (Function.Rnd.Next(lowstrengthAskCount--) == 0) { - Say("肚子饿了,想吃东西", GraphCore.Helper.SayType.Serious);//TODO:饥饿动画//TODO:不同的饥饿说话方式 + Display(GraphCore.GraphType.Switch_Thirsty, () => Say("肚子饿了,想吃东西", GraphCore.Helper.SayType.Serious));//TODO:不同的饥饿说话方式 + lowstrengthAskCount = 15; + } + + } + private void lowStrengthDrink()//未来的Display + { + if (Function.Rnd.Next(lowstrengthAskCount--) == 0) + { + Display(GraphCore.GraphType.Switch_Thirsty, () => Say("渴了,想喝东西", GraphCore.Helper.SayType.Serious));//TODO:不同的饥饿说话方式 lowstrengthAskCount = 15; } @@ -216,6 +225,7 @@ namespace VPet_Simulator.Core if (Core.Save.StrengthDrink <= 25) { Core.Save.Health -= Function.Rnd.Next(0, 1) * TimePass; + lowStrengthDrink(); } else if (Core.Save.StrengthDrink >= 75) Core.Save.Health += Function.Rnd.Next(0, 1) * TimePass; diff --git a/VPet-Simulator.Core/Display/MessageBar.xaml b/VPet-Simulator.Core/Display/MessageBar.xaml index 32c60c2..bad8067 100644 --- a/VPet-Simulator.Core/Display/MessageBar.xaml +++ b/VPet-Simulator.Core/Display/MessageBar.xaml @@ -7,7 +7,7 @@ <UserControl.Resources> <ResourceDictionary Source="Theme.xaml" /> </UserControl.Resources> - <Border Background="{DynamicResource Primary}" BorderBrush="{DynamicResource DARKPrimaryDark}" BorderThickness="5" + <Border x:Name="BorderMain" Background="{DynamicResource Primary}" BorderBrush="{DynamicResource DARKPrimaryDark}" BorderThickness="5" VerticalAlignment="Bottom" Padding="10" Margin="5" CornerRadius="5" MouseEnter="Border_MouseEnter" MouseLeave="Border_MouseLeave"> <StackPanel> diff --git a/VPet-Simulator.Core/Display/MessageBar.xaml.cs b/VPet-Simulator.Core/Display/MessageBar.xaml.cs index 4da1af7..dedaa27 100644 --- a/VPet-Simulator.Core/Display/MessageBar.xaml.cs +++ b/VPet-Simulator.Core/Display/MessageBar.xaml.cs @@ -147,5 +147,17 @@ namespace VPet_Simulator.Core ShowTimer.Dispose(); CloseTimer.Dispose(); } + public void SetPlaceIN() + { + this.Height = 500; + BorderMain.VerticalAlignment = VerticalAlignment.Bottom; + Margin = new Thickness(0); + } + public void SetPlaceOUT() + { + this.Height = double.NaN; + BorderMain.VerticalAlignment = VerticalAlignment.Top; + Margin = new Thickness(0, 500, 0, 0); + } } } diff --git a/VPet-Simulator.Core/Display/ToolBar.xaml b/VPet-Simulator.Core/Display/ToolBar.xaml index 9d07fe9..5aa8350 100644 --- a/VPet-Simulator.Core/Display/ToolBar.xaml +++ b/VPet-Simulator.Core/Display/ToolBar.xaml @@ -3,7 +3,7 @@ xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:d="http://schemas.microsoft.com/expression/blend/2008" xmlns:local="clr-namespace:VPet_Simulator.Core" mc:Ignorable="d" xmlns:pu="https://opensource.panuon.com/wpf-ui" MouseEnter="UserControl_MouseEnter" - MouseLeave="UserControl_MouseLeave" Height="500" Width="500"> + MouseLeave="UserControl_MouseLeave" Height="500" Width="500" VerticalAlignment="Top"> <UserControl.Resources> <ResourceDictionary> <ResourceDictionary.MergedDictionaries> diff --git a/VPet-Simulator.Core/Graph/GraphCore.cs b/VPet-Simulator.Core/Graph/GraphCore.cs index 855ef28..95a2760 100644 --- a/VPet-Simulator.Core/Graph/GraphCore.cs +++ b/VPet-Simulator.Core/Graph/GraphCore.cs @@ -312,6 +312,10 @@ namespace VPet_Simulator.Core /// 直播 (结束) /// </summary> WorkTWO_C_End, + /// <summary> + /// 口渴 + /// </summary> + Switch_Thirsty, } /// <summary> diff --git a/VPet-Simulator.Core/Handle/IController.cs b/VPet-Simulator.Core/Handle/IController.cs index d19766c..b55516d 100644 --- a/VPet-Simulator.Core/Handle/IController.cs +++ b/VPet-Simulator.Core/Handle/IController.cs @@ -63,6 +63,6 @@ namespace VPet_Simulator.Core /// <summary> /// 互动周期 /// </summary> - int InteractionCycle { get; } + int InteractionCycle { get; } } } diff --git a/VPet-Simulator.Core/Handle/PetLoader.cs b/VPet-Simulator.Core/Handle/PetLoader.cs index c928308..da64724 100644 --- a/VPet-Simulator.Core/Handle/PetLoader.cs +++ b/VPet-Simulator.Core/Handle/PetLoader.cs @@ -87,7 +87,7 @@ namespace VPet_Simulator.Core } } #if DEBUG - throw new Exception("未知的图像类型: " + path_name); + //throw new Exception("未知的图像类型: " + path_name); #endif } else if (File.Exists(di.FullName + @"\info.lps")) diff --git a/VPet-Simulator.Windows.Interface/Setting.cs b/VPet-Simulator.Windows.Interface/Setting.cs index 7dd704f..32f6953 100644 --- a/VPet-Simulator.Windows.Interface/Setting.cs +++ b/VPet-Simulator.Windows.Interface/Setting.cs @@ -237,6 +237,14 @@ namespace VPet_Simulator.Windows.Interface set => this["gameconfig"].SetInt("smartmoveinterval", value); } /// <summary> + /// 消息框外置 + /// </summary> + public bool MessageBarOutside + { + get => this["gameconfig"].GetBool("msgbarout"); + set => this["gameconfig"].SetBool("msgbarout", value); + } + /// <summary> /// 开机启动 /// </summary> public bool StartUPBoot diff --git a/VPet-Simulator.Windows/MainWindow.cs b/VPet-Simulator.Windows/MainWindow.cs index 17b6b54..6b09b5e 100644 --- a/VPet-Simulator.Windows/MainWindow.cs +++ b/VPet-Simulator.Windows/MainWindow.cs @@ -34,7 +34,7 @@ namespace VPet_Simulator.Windows /// <summary> /// 版本号 /// </summary> - public int verison { get; } = 10; + public int verison { get; } = 40; /// <summary> /// 版本号 /// </summary> diff --git a/VPet-Simulator.Windows/MainWindow.xaml.cs b/VPet-Simulator.Windows/MainWindow.xaml.cs index f8e8862..65ba003 100644 --- a/VPet-Simulator.Windows/MainWindow.xaml.cs +++ b/VPet-Simulator.Windows/MainWindow.xaml.cs @@ -268,6 +268,9 @@ namespace VPet_Simulator.Windows Main.SetMoveMode(Set.AllowMove, Set.SmartMove, Set.SmartMoveInterval * 1000); Main.SetLogicInterval((int)(Set.LogicInterval * 1000)); + if (Set.MessageBarOutside) + Main.MsgBar.SetPlaceOUT(); + //加载图标 notifyIcon = new NotifyIcon(); notifyIcon.Text = "虚拟桌宠模拟器"; diff --git a/VPet-Simulator.Windows/WinDesign/TalkBox.xaml b/VPet-Simulator.Windows/WinDesign/TalkBox.xaml index 143f1f7..f572d27 100644 --- a/VPet-Simulator.Windows/WinDesign/TalkBox.xaml +++ b/VPet-Simulator.Windows/WinDesign/TalkBox.xaml @@ -2,7 +2,7 @@ xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:d="http://schemas.microsoft.com/expression/blend/2008" - xmlns:pu="clr-namespace:Panuon.WPF.UI;assembly=Panuon.WPF.UI" Height="500" Width="500"> + xmlns:pu="clr-namespace:Panuon.WPF.UI;assembly=Panuon.WPF.UI" Height="500" Width="500" VerticalAlignment="Top"> <Border Background="{DynamicResource PrimaryLighter}" BorderBrush="{DynamicResource Primary}" BorderThickness="5" VerticalAlignment="Top" Margin="5,50,5,5" CornerRadius="5" Padding="5"> <Grid> diff --git a/VPet-Simulator.Windows/WinDesign/TalkBoxAPI.xaml b/VPet-Simulator.Windows/WinDesign/TalkBoxAPI.xaml index 0580b9e..20a180d 100644 --- a/VPet-Simulator.Windows/WinDesign/TalkBoxAPI.xaml +++ b/VPet-Simulator.Windows/WinDesign/TalkBoxAPI.xaml @@ -3,7 +3,7 @@ xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:d="http://schemas.microsoft.com/expression/blend/2008" - xmlns:pu="clr-namespace:Panuon.WPF.UI;assembly=Panuon.WPF.UI" Height="500" Width="500"> + xmlns:pu="clr-namespace:Panuon.WPF.UI;assembly=Panuon.WPF.UI" Height="500" Width="500" VerticalAlignment="Top"> <Border Background="{DynamicResource SecondaryLighter}" BorderBrush="{DynamicResource Secondary}" BorderThickness="5" VerticalAlignment="Top" Margin="5,50,5,5" CornerRadius="5" Padding="5"> <Grid> diff --git a/VPet-Simulator.Windows/WinDesign/winGameSetting.xaml b/VPet-Simulator.Windows/WinDesign/winGameSetting.xaml index e814ad9..43d0ea1 100644 --- a/VPet-Simulator.Windows/WinDesign/winGameSetting.xaml +++ b/VPet-Simulator.Windows/WinDesign/winGameSetting.xaml @@ -115,6 +115,13 @@ BorderThickness="2" Click="BtnStartUpGet_Click" /> </Grid> + <TextBlock Grid.Row="6" Text="消息框" VerticalAlignment="Center" /> + <pu:Switch x:Name="SwitchMsgOut" Grid.Column="2" Grid.Row="6" BorderBrush="{DynamicResource PrimaryDark}" + CheckedBackground="{DynamicResource Primary}" CheckedBorderBrush="{DynamicResource Primary}" + Background="Transparent" BoxWidth="35" BoxHeight="18" ToggleSize="14" + ToggleShadowColor="{x:Null}" ToggleBrush="{DynamicResource PrimaryDark}" + CheckedToggleBrush="{DynamicResource DARKPrimaryText}" Checked="SwitchMsgOut_Checked" + Unchecked="TopMostBox_Unchecked" ToolTip="将消息框置于外部" Content="将消息框置于外部"/> <TextBlock Grid.Row="7" Text="开机启动" VerticalAlignment="Center" /> <Grid Grid.Row="7" Grid.Column="2"> <Grid.ColumnDefinitions> @@ -126,7 +133,7 @@ CheckedBorderBrush="{DynamicResource Primary}" Background="Transparent" BoxWidth="35" BoxHeight="18" ToggleSize="14" ToggleShadowColor="{x:Null}" ToggleBrush="{DynamicResource PrimaryDark}" Content="开机启动" - CheckedToggleBrush="{DynamicResource DARKPrimaryText}" ToolTip="该游戏随着开机启动该程序" + CheckedToggleBrush="{DynamicResource DARKPrimaryText}" ToolTip="该游戏随着开机启动该程序 如需卸载游戏,请关闭该选项" Checked="StartUpBox_Checked" Unchecked="StartUpBox_Checked" /> <pu:Switch x:Name="StartUpSteamBox" BorderBrush="{DynamicResource PrimaryDark}" CheckedBackground="{DynamicResource Primary}" diff --git a/VPet-Simulator.Windows/WinDesign/winGameSetting.xaml.cs b/VPet-Simulator.Windows/WinDesign/winGameSetting.xaml.cs index 4f7a978..dff7097 100644 --- a/VPet-Simulator.Windows/WinDesign/winGameSetting.xaml.cs +++ b/VPet-Simulator.Windows/WinDesign/winGameSetting.xaml.cs @@ -62,6 +62,7 @@ namespace VPet_Simulator.Windows MoveEventBox.IsChecked = mw.Set.AllowMove; SmartMoveEventBox.IsChecked = mw.Set.SmartMove; PressLengthSlider.Value = mw.Set.PressLength / 1000.0; + SwitchMsgOut.IsChecked = mw.Set.MessageBarOutside; StartUpBox.IsChecked = mw.Set.StartUPBoot; StartUpSteamBox.IsChecked = mw.Set.StartUPBootSteam; @@ -797,5 +798,16 @@ namespace VPet_Simulator.Windows MessageBoxX.Show("由于没做完,暂不支持数据计算\n敬请期待后续更新", "没做完!", MessageBoxButton.OK, MessageBoxIcon.Warning); mw.Set.EnableFunction = CalFunctionBox.IsChecked.Value; } + + private void SwitchMsgOut_Checked(object sender, RoutedEventArgs e) + { + if (!AllowChange) + return; + mw.Set.MessageBarOutside = SwitchMsgOut.IsChecked.Value; + if (SwitchMsgOut.IsChecked.Value) + mw.Main.MsgBar.SetPlaceOUT(); + else + mw.Main.MsgBar.SetPlaceIN(); + } } } diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Eat/吃饭向右、最前的手/时间轴 1_0001.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Eat/吃饭向右、最前的手/时间轴 1_0001.png new file mode 100644 index 0000000..b7346f2 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Eat/吃饭向右、最前的手/时间轴 1_0001.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Eat/吃饭向右、最前的手/时间轴 1_0002.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Eat/吃饭向右、最前的手/时间轴 1_0002.png new file mode 100644 index 0000000..b7346f2 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Eat/吃饭向右、最前的手/时间轴 1_0002.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Eat/吃饭向右、最前的手/时间轴 1_0003.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Eat/吃饭向右、最前的手/时间轴 1_0003.png new file mode 100644 index 0000000..b7346f2 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Eat/吃饭向右、最前的手/时间轴 1_0003.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Eat/吃饭向右、最前的手/时间轴 1_0004.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Eat/吃饭向右、最前的手/时间轴 1_0004.png new file mode 100644 index 0000000..b7346f2 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Eat/吃饭向右、最前的手/时间轴 1_0004.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Eat/吃饭向右、最前的手/时间轴 1_0005.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Eat/吃饭向右、最前的手/时间轴 1_0005.png new file mode 100644 index 0000000..ee3e2cd Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Eat/吃饭向右、最前的手/时间轴 1_0005.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Eat/吃饭向右、最前的手/时间轴 1_0006.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Eat/吃饭向右、最前的手/时间轴 1_0006.png new file mode 100644 index 0000000..31edbe2 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Eat/吃饭向右、最前的手/时间轴 1_0006.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Eat/吃饭向右、最前的手/时间轴 1_0007.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Eat/吃饭向右、最前的手/时间轴 1_0007.png new file mode 100644 index 0000000..d65bfa1 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Eat/吃饭向右、最前的手/时间轴 1_0007.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Eat/吃饭向右、最前的手/时间轴 1_0008.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Eat/吃饭向右、最前的手/时间轴 1_0008.png new file mode 100644 index 0000000..34ba7f3 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Eat/吃饭向右、最前的手/时间轴 1_0008.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Eat/吃饭向右、最前的手/时间轴 1_0009.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Eat/吃饭向右、最前的手/时间轴 1_0009.png new file mode 100644 index 0000000..34ba7f3 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Eat/吃饭向右、最前的手/时间轴 1_0009.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Eat/吃饭向右、最前的手/时间轴 1_0010.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Eat/吃饭向右、最前的手/时间轴 1_0010.png new file mode 100644 index 0000000..34ba7f3 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Eat/吃饭向右、最前的手/时间轴 1_0010.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Eat/吃饭向右、最前的手/时间轴 1_0011.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Eat/吃饭向右、最前的手/时间轴 1_0011.png new file mode 100644 index 0000000..dcf83c4 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Eat/吃饭向右、最前的手/时间轴 1_0011.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Eat/吃饭向右、最前的手/时间轴 1_0012.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Eat/吃饭向右、最前的手/时间轴 1_0012.png new file mode 100644 index 0000000..846e73f Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Eat/吃饭向右、最前的手/时间轴 1_0012.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Eat/吃饭向右、最前的手/时间轴 1_0013.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Eat/吃饭向右、最前的手/时间轴 1_0013.png new file mode 100644 index 0000000..1ee7cc1 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Eat/吃饭向右、最前的手/时间轴 1_0013.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Eat/吃饭向右、最前的手/时间轴 1_0014.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Eat/吃饭向右、最前的手/时间轴 1_0014.png new file mode 100644 index 0000000..aad10d9 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Eat/吃饭向右、最前的手/时间轴 1_0014.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Eat/吃饭向右、最前的手/时间轴 1_0015.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Eat/吃饭向右、最前的手/时间轴 1_0015.png new file mode 100644 index 0000000..dcf83c4 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Eat/吃饭向右、最前的手/时间轴 1_0015.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Eat/吃饭向右、最前的手/时间轴 1_0016.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Eat/吃饭向右、最前的手/时间轴 1_0016.png new file mode 100644 index 0000000..846e73f Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Eat/吃饭向右、最前的手/时间轴 1_0016.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Eat/吃饭向右、最前的手/时间轴 1_0017.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Eat/吃饭向右、最前的手/时间轴 1_0017.png new file mode 100644 index 0000000..1ee7cc1 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Eat/吃饭向右、最前的手/时间轴 1_0017.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Eat/吃饭向右、最前的手/时间轴 1_0018.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Eat/吃饭向右、最前的手/时间轴 1_0018.png new file mode 100644 index 0000000..aad10d9 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Eat/吃饭向右、最前的手/时间轴 1_0018.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Eat/吃饭向右、最前的手/时间轴 1_0019.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Eat/吃饭向右、最前的手/时间轴 1_0019.png new file mode 100644 index 0000000..b7346f2 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Eat/吃饭向右、最前的手/时间轴 1_0019.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Eat/吃饭向右、最前的手/时间轴 1_0020.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Eat/吃饭向右、最前的手/时间轴 1_0020.png new file mode 100644 index 0000000..b7346f2 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Eat/吃饭向右、最前的手/时间轴 1_0020.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Eat/吃饭向右、最前的手/时间轴 1_0021.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Eat/吃饭向右、最前的手/时间轴 1_0021.png new file mode 100644 index 0000000..b7346f2 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Eat/吃饭向右、最前的手/时间轴 1_0021.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Eat/吃饭向右、最后的身/吃饭向左_000_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Eat/吃饭向右、最后的身/吃饭向左_000_125.png new file mode 100644 index 0000000..5c4c890 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Eat/吃饭向右、最后的身/吃饭向左_000_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Eat/吃饭向右、最后的身/吃饭向左_001_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Eat/吃饭向右、最后的身/吃饭向左_001_125.png new file mode 100644 index 0000000..86756ca Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Eat/吃饭向右、最后的身/吃饭向左_001_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Eat/吃饭向右、最后的身/吃饭向左_002_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Eat/吃饭向右、最后的身/吃饭向左_002_125.png new file mode 100644 index 0000000..dfd5959 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Eat/吃饭向右、最后的身/吃饭向左_002_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Eat/吃饭向右、最后的身/吃饭向左_003_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Eat/吃饭向右、最后的身/吃饭向左_003_125.png new file mode 100644 index 0000000..3fe0d91 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Eat/吃饭向右、最后的身/吃饭向左_003_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Eat/吃饭向右、最后的身/吃饭向左_004_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Eat/吃饭向右、最后的身/吃饭向左_004_125.png new file mode 100644 index 0000000..2cfe018 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Eat/吃饭向右、最后的身/吃饭向左_004_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Eat/吃饭向右、最后的身/吃饭向左_005_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Eat/吃饭向右、最后的身/吃饭向左_005_125.png new file mode 100644 index 0000000..c56207e Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Eat/吃饭向右、最后的身/吃饭向左_005_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Eat/吃饭向右、最后的身/吃饭向左_006_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Eat/吃饭向右、最后的身/吃饭向左_006_125.png new file mode 100644 index 0000000..e510e25 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Eat/吃饭向右、最后的身/吃饭向左_006_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Eat/吃饭向右、最后的身/吃饭向左_007_375.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Eat/吃饭向右、最后的身/吃饭向左_007_375.png new file mode 100644 index 0000000..3f2ee37 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Eat/吃饭向右、最后的身/吃饭向左_007_375.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Eat/吃饭向右、最后的身/吃饭向左_008_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Eat/吃饭向右、最后的身/吃饭向左_008_125.png new file mode 100644 index 0000000..63cf24b Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Eat/吃饭向右、最后的身/吃饭向左_008_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Eat/吃饭向右、最后的身/吃饭向左_009_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Eat/吃饭向右、最后的身/吃饭向左_009_125.png new file mode 100644 index 0000000..5cd45d5 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Eat/吃饭向右、最后的身/吃饭向左_009_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Eat/吃饭向右、最后的身/吃饭向左_010_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Eat/吃饭向右、最后的身/吃饭向左_010_125.png new file mode 100644 index 0000000..9770d81 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Eat/吃饭向右、最后的身/吃饭向左_010_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Eat/吃饭向右、最后的身/吃饭向左_011_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Eat/吃饭向右、最后的身/吃饭向左_011_125.png new file mode 100644 index 0000000..92cfcbd Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Eat/吃饭向右、最后的身/吃饭向左_011_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Eat/吃饭向右、最后的身/吃饭向左_012_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Eat/吃饭向右、最后的身/吃饭向左_012_125.png new file mode 100644 index 0000000..63cf24b Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Eat/吃饭向右、最后的身/吃饭向左_012_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Eat/吃饭向右、最后的身/吃饭向左_013_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Eat/吃饭向右、最后的身/吃饭向左_013_125.png new file mode 100644 index 0000000..5cd45d5 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Eat/吃饭向右、最后的身/吃饭向左_013_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Eat/吃饭向右、最后的身/吃饭向左_014_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Eat/吃饭向右、最后的身/吃饭向左_014_125.png new file mode 100644 index 0000000..9770d81 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Eat/吃饭向右、最后的身/吃饭向左_014_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Eat/吃饭向右、最后的身/吃饭向左_015_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Eat/吃饭向右、最后的身/吃饭向左_015_125.png new file mode 100644 index 0000000..92cfcbd Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Eat/吃饭向右、最后的身/吃饭向左_015_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Eat/吃饭向右、最后的身/吃饭向左_016_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Eat/吃饭向右、最后的身/吃饭向左_016_125.png new file mode 100644 index 0000000..dfd5959 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Eat/吃饭向右、最后的身/吃饭向左_016_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Eat/吃饭向右、最后的身/吃饭向左_017_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Eat/吃饭向右、最后的身/吃饭向左_017_125.png new file mode 100644 index 0000000..86756ca Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Eat/吃饭向右、最后的身/吃饭向左_017_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Eat/吃饭向右、最后的身/吃饭向左_018_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Eat/吃饭向右、最后的身/吃饭向左_018_125.png new file mode 100644 index 0000000..5c4c890 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Eat/吃饭向右、最后的身/吃饭向左_018_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Eat/吃饭向右、食物位置/食物位置_0001.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Eat/吃饭向右、食物位置/食物位置_0001.png new file mode 100644 index 0000000..1c58fd8 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Eat/吃饭向右、食物位置/食物位置_0001.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Eat/吃饭向右、食物位置/食物位置_0002.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Eat/吃饭向右、食物位置/食物位置_0002.png new file mode 100644 index 0000000..76e95f0 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Eat/吃饭向右、食物位置/食物位置_0002.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Eat/吃饭向右、食物位置/食物位置_0003.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Eat/吃饭向右、食物位置/食物位置_0003.png new file mode 100644 index 0000000..36131d2 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Eat/吃饭向右、食物位置/食物位置_0003.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Eat/吃饭向右、食物位置/食物位置_0004.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Eat/吃饭向右、食物位置/食物位置_0004.png new file mode 100644 index 0000000..f5614ba Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Eat/吃饭向右、食物位置/食物位置_0004.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Eat/吃饭向右、食物位置/食物位置_0005.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Eat/吃饭向右、食物位置/食物位置_0005.png new file mode 100644 index 0000000..a2ed06f Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Eat/吃饭向右、食物位置/食物位置_0005.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Eat/吃饭向右、食物位置/食物位置_0006.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Eat/吃饭向右、食物位置/食物位置_0006.png new file mode 100644 index 0000000..a2ed06f Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Eat/吃饭向右、食物位置/食物位置_0006.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Eat/吃饭向右、食物位置/食物位置_0007.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Eat/吃饭向右、食物位置/食物位置_0007.png new file mode 100644 index 0000000..a2ed06f Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Eat/吃饭向右、食物位置/食物位置_0007.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Eat/吃饭向右、食物位置/食物位置_0008.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Eat/吃饭向右、食物位置/食物位置_0008.png new file mode 100644 index 0000000..a2ed06f Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Eat/吃饭向右、食物位置/食物位置_0008.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Eat/吃饭向右、食物位置/食物位置_0009.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Eat/吃饭向右、食物位置/食物位置_0009.png new file mode 100644 index 0000000..a2ed06f Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Eat/吃饭向右、食物位置/食物位置_0009.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Eat/吃饭向右、食物位置/食物位置_0010.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Eat/吃饭向右、食物位置/食物位置_0010.png new file mode 100644 index 0000000..a2ed06f Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Eat/吃饭向右、食物位置/食物位置_0010.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Eat/吃饭向右、食物位置/食物位置_0011.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Eat/吃饭向右、食物位置/食物位置_0011.png new file mode 100644 index 0000000..45a06cc Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Eat/吃饭向右、食物位置/食物位置_0011.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Eat/吃饭向右、食物位置/食物位置_0012.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Eat/吃饭向右、食物位置/食物位置_0012.png new file mode 100644 index 0000000..a2ed06f Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Eat/吃饭向右、食物位置/食物位置_0012.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Eat/吃饭向右、食物位置/食物位置_0013.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Eat/吃饭向右、食物位置/食物位置_0013.png new file mode 100644 index 0000000..a2ed06f Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Eat/吃饭向右、食物位置/食物位置_0013.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Eat/吃饭向右、食物位置/食物位置_0014.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Eat/吃饭向右、食物位置/食物位置_0014.png new file mode 100644 index 0000000..a2ed06f Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Eat/吃饭向右、食物位置/食物位置_0014.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Eat/吃饭向右、食物位置/食物位置_0015.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Eat/吃饭向右、食物位置/食物位置_0015.png new file mode 100644 index 0000000..45a06cc Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Eat/吃饭向右、食物位置/食物位置_0015.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Eat/吃饭向右、食物位置/食物位置_0016.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Eat/吃饭向右、食物位置/食物位置_0016.png new file mode 100644 index 0000000..b7346f2 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Eat/吃饭向右、食物位置/食物位置_0016.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Eat/吃饭向右、食物位置/食物位置_0017.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Eat/吃饭向右、食物位置/食物位置_0017.png new file mode 100644 index 0000000..b7346f2 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Eat/吃饭向右、食物位置/食物位置_0017.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Eat/吃饭向右、食物位置/食物位置_0018.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Eat/吃饭向右、食物位置/食物位置_0018.png new file mode 100644 index 0000000..b7346f2 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Eat/吃饭向右、食物位置/食物位置_0018.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Eat/吃饭向右、食物位置/食物位置_0019.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Eat/吃饭向右、食物位置/食物位置_0019.png new file mode 100644 index 0000000..b7346f2 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Eat/吃饭向右、食物位置/食物位置_0019.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Eat/吃饭向右、食物位置/食物位置_0020.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Eat/吃饭向右、食物位置/食物位置_0020.png new file mode 100644 index 0000000..b7346f2 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Eat/吃饭向右、食物位置/食物位置_0020.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Eat/吃饭向右、食物位置/食物位置_0021.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Eat/吃饭向右、食物位置/食物位置_0021.png new file mode 100644 index 0000000..b7346f2 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Eat/吃饭向右、食物位置/食物位置_0021.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Switch/Thirsty/口渴咳咳_000_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Switch/Thirsty/口渴咳咳_000_125.png new file mode 100644 index 0000000..5a9c4ff Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Switch/Thirsty/口渴咳咳_000_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Switch/Thirsty/口渴咳咳_001_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Switch/Thirsty/口渴咳咳_001_125.png new file mode 100644 index 0000000..38715bd Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Switch/Thirsty/口渴咳咳_001_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Switch/Thirsty/口渴咳咳_002_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Switch/Thirsty/口渴咳咳_002_125.png new file mode 100644 index 0000000..271eb53 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Switch/Thirsty/口渴咳咳_002_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Switch/Thirsty/口渴咳咳_003_500.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Switch/Thirsty/口渴咳咳_003_500.png new file mode 100644 index 0000000..3718257 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Switch/Thirsty/口渴咳咳_003_500.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Switch/Thirsty/口渴咳咳_004_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Switch/Thirsty/口渴咳咳_004_125.png new file mode 100644 index 0000000..9efd5d8 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Switch/Thirsty/口渴咳咳_004_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Switch/Thirsty/口渴咳咳_005_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Switch/Thirsty/口渴咳咳_005_125.png new file mode 100644 index 0000000..3718257 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Switch/Thirsty/口渴咳咳_005_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Switch/Thirsty/口渴咳咳_006_375.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Switch/Thirsty/口渴咳咳_006_375.png new file mode 100644 index 0000000..9efd5d8 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Switch/Thirsty/口渴咳咳_006_375.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Switch/Thirsty/口渴咳咳_007_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Switch/Thirsty/口渴咳咳_007_125.png new file mode 100644 index 0000000..3718257 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Switch/Thirsty/口渴咳咳_007_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Switch/Thirsty/口渴咳咳_008_750.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Switch/Thirsty/口渴咳咳_008_750.png new file mode 100644 index 0000000..9efd5d8 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Switch/Thirsty/口渴咳咳_008_750.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Switch/Thirsty/口渴咳咳_009_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Switch/Thirsty/口渴咳咳_009_125.png new file mode 100644 index 0000000..3718257 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Switch/Thirsty/口渴咳咳_009_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Switch/Thirsty/口渴咳咳_010_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Switch/Thirsty/口渴咳咳_010_125.png new file mode 100644 index 0000000..271eb53 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Switch/Thirsty/口渴咳咳_010_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Switch/Thirsty/口渴咳咳_011_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Switch/Thirsty/口渴咳咳_011_125.png new file mode 100644 index 0000000..38715bd Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Switch/Thirsty/口渴咳咳_011_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Switch/Thirsty/口渴咳咳_012_250.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Switch/Thirsty/口渴咳咳_012_250.png new file mode 100644 index 0000000..5a9c4ff Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Switch/Thirsty/口渴咳咳_012_250.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Walk_Left/A_Happy/哈皮走路向左_000_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Walk_Left/A_Happy/哈皮走路向左_000_125.png new file mode 100644 index 0000000..c4d45e6 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Walk_Left/A_Happy/哈皮走路向左_000_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Walk_Left/A_Happy/哈皮走路向左_001_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Walk_Left/A_Happy/哈皮走路向左_001_125.png new file mode 100644 index 0000000..7574197 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Walk_Left/A_Happy/哈皮走路向左_001_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Walk_Left/B_Happy/哈皮左走_000_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Walk_Left/B_Happy/哈皮左走_000_125.png new file mode 100644 index 0000000..b95d5de Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Walk_Left/B_Happy/哈皮左走_000_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Walk_Left/B_Happy/哈皮左走_001_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Walk_Left/B_Happy/哈皮左走_001_125.png new file mode 100644 index 0000000..3c46115 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Walk_Left/B_Happy/哈皮左走_001_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Walk_Left/B_Happy/哈皮左走_002_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Walk_Left/B_Happy/哈皮左走_002_125.png new file mode 100644 index 0000000..98715ee Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Walk_Left/B_Happy/哈皮左走_002_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Walk_Left/B_Happy/哈皮左走_003_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Walk_Left/B_Happy/哈皮左走_003_125.png new file mode 100644 index 0000000..a124b1f Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Walk_Left/B_Happy/哈皮左走_003_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Walk_Left/B_Happy/哈皮左走_004_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Walk_Left/B_Happy/哈皮左走_004_125.png new file mode 100644 index 0000000..98715ee Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Walk_Left/B_Happy/哈皮左走_004_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Walk_Left/B_Happy/哈皮左走_005_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Walk_Left/B_Happy/哈皮左走_005_125.png new file mode 100644 index 0000000..b95d5de Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Walk_Left/B_Happy/哈皮左走_005_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Walk_Left/B_Happy/哈皮左走_006_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Walk_Left/B_Happy/哈皮左走_006_125.png new file mode 100644 index 0000000..45550ac Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Walk_Left/B_Happy/哈皮左走_006_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Walk_Left/B_Happy/哈皮左走_007_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Walk_Left/B_Happy/哈皮左走_007_125.png new file mode 100644 index 0000000..00559f2 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Walk_Left/B_Happy/哈皮左走_007_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Walk_Left/B_Happy/哈皮左走_008_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Walk_Left/B_Happy/哈皮左走_008_125.png new file mode 100644 index 0000000..a31daa3 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Walk_Left/B_Happy/哈皮左走_008_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Walk_Left/B_Happy/哈皮左走_009_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Walk_Left/B_Happy/哈皮左走_009_125.png new file mode 100644 index 0000000..2bc8fde Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Walk_Left/B_Happy/哈皮左走_009_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Walk_Left/C_Happy/哈皮走路向左_000_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Walk_Left/C_Happy/哈皮走路向左_000_125.png new file mode 100644 index 0000000..94c1fdd Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Walk_Left/C_Happy/哈皮走路向左_000_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Walk_Left/C_Happy/哈皮走路向左_001_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Walk_Left/C_Happy/哈皮走路向左_001_125.png new file mode 100644 index 0000000..7574197 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Walk_Left/C_Happy/哈皮走路向左_001_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Walk_Right/A_Happy/走路路向右.png_000_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Walk_Right/A_Happy/走路路向右.png_000_125.png new file mode 100644 index 0000000..813f7c9 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Walk_Right/A_Happy/走路路向右.png_000_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Walk_Right/A_Happy/走路路向右2.png_001_250.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Walk_Right/A_Happy/走路路向右2.png_001_250.png new file mode 100644 index 0000000..c776fc9 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Walk_Right/A_Happy/走路路向右2.png_001_250.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Walk_Right/B_Happy/哈皮右走_000_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Walk_Right/B_Happy/哈皮右走_000_125.png new file mode 100644 index 0000000..f1ca42d Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Walk_Right/B_Happy/哈皮右走_000_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Walk_Right/B_Happy/哈皮右走_001_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Walk_Right/B_Happy/哈皮右走_001_125.png new file mode 100644 index 0000000..9bd13d3 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Walk_Right/B_Happy/哈皮右走_001_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Walk_Right/B_Happy/哈皮右走_002_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Walk_Right/B_Happy/哈皮右走_002_125.png new file mode 100644 index 0000000..20a58ec Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Walk_Right/B_Happy/哈皮右走_002_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Walk_Right/B_Happy/哈皮右走_003_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Walk_Right/B_Happy/哈皮右走_003_125.png new file mode 100644 index 0000000..a287146 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Walk_Right/B_Happy/哈皮右走_003_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Walk_Right/B_Happy/哈皮右走_004_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Walk_Right/B_Happy/哈皮右走_004_125.png new file mode 100644 index 0000000..20a58ec Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Walk_Right/B_Happy/哈皮右走_004_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Walk_Right/B_Happy/哈皮右走_005_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Walk_Right/B_Happy/哈皮右走_005_125.png new file mode 100644 index 0000000..f1ca42d Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Walk_Right/B_Happy/哈皮右走_005_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Walk_Right/B_Happy/哈皮右走_006_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Walk_Right/B_Happy/哈皮右走_006_125.png new file mode 100644 index 0000000..898ab25 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Walk_Right/B_Happy/哈皮右走_006_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Walk_Right/B_Happy/哈皮右走_007_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Walk_Right/B_Happy/哈皮右走_007_125.png new file mode 100644 index 0000000..42a3233 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Walk_Right/B_Happy/哈皮右走_007_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Walk_Right/B_Happy/哈皮右走_008_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Walk_Right/B_Happy/哈皮右走_008_125.png new file mode 100644 index 0000000..4040dfc Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Walk_Right/B_Happy/哈皮右走_008_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Walk_Right/B_Happy/哈皮右走_009_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Walk_Right/B_Happy/哈皮右走_009_125.png new file mode 100644 index 0000000..ebfd173 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Walk_Right/B_Happy/哈皮右走_009_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Walk_Right/C_Happy/哈皮走路向左_000_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Walk_Right/C_Happy/哈皮走路向左_000_125.png new file mode 100644 index 0000000..7058bf7 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Walk_Right/C_Happy/哈皮走路向左_000_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Walk_Right/C_Happy/哈皮走路向左_001_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Walk_Right/C_Happy/哈皮走路向左_001_125.png new file mode 100644 index 0000000..c776fc9 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Walk_Right/C_Happy/哈皮走路向左_001_125.png differ diff --git a/VPet-Simulator.Windows/mod/icon.png b/VPet-Simulator.Windows/mod/icon.png deleted file mode 100644 index 78c1176..0000000 Binary files a/VPet-Simulator.Windows/mod/icon.png and /dev/null differ