diff --git a/VPet-Simulator.Core/Display/Main.xaml.cs b/VPet-Simulator.Core/Display/Main.xaml.cs index 52a8b58..338747e 100644 --- a/VPet-Simulator.Core/Display/Main.xaml.cs +++ b/VPet-Simulator.Core/Display/Main.xaml.cs @@ -64,9 +64,7 @@ namespace VPet_Simulator.Core MsgBar = new MessageBar(this); MsgBar.Visibility = Visibility.Collapsed; UIGrid.Children.Add(MsgBar); - - - + if (loadtouchevent) { diff --git a/VPet-Simulator.Core/Graph/FoodAnimation.cs b/VPet-Simulator.Core/Graph/FoodAnimation.cs index e23d912..b2b3c4b 100644 --- a/VPet-Simulator.Core/Graph/FoodAnimation.cs +++ b/VPet-Simulator.Core/Graph/FoodAnimation.cs @@ -323,12 +323,14 @@ namespace VPet_Simulator.Core } IImageRun FL = (IImageRun)GraphCore.FindCOMMGraph(Front_Lay, ModeType); IImageRun BL = (IImageRun)GraphCore.FindCOMMGraph(Back_Lay, ModeType); - var t1 = FL.Run(FoodGrid.Front); - var t2 = BL.Run(FoodGrid.Back); + var t1 = FL?.Run(FoodGrid.Front); + var t2 = BL?.Run(FoodGrid.Back); FoodGrid.Food.Source = image; Task.Run(() => Animations[0].Run(FoodGrid.Food, EndAction)); - Task.Run(t1.Start); - Task.Run(t2.Start); + if (t1 != null) + Task.Run(t1.Start); + if (t2 != null) + Task.Run(t2.Start); }); } diff --git a/VPet-Simulator.Core/Handle/PetLoader.cs b/VPet-Simulator.Core/Handle/PetLoader.cs index 83040ed..243c2b7 100644 --- a/VPet-Simulator.Core/Handle/PetLoader.cs +++ b/VPet-Simulator.Core/Handle/PetLoader.cs @@ -81,7 +81,8 @@ namespace VPet_Simulator.Core } else { - MessageBox.Show("未知的图像类型: " + line.Name.ToLower()); + if (!string.IsNullOrEmpty(line.Name)) + MessageBox.Show("未知的图像类型: " + line.Name.ToLower()); } } } diff --git a/VPet-Simulator.Windows/MainWindow.cs b/VPet-Simulator.Windows/MainWindow.cs index ab2b502..aa06197 100644 --- a/VPet-Simulator.Windows/MainWindow.cs +++ b/VPet-Simulator.Windows/MainWindow.cs @@ -238,7 +238,7 @@ namespace VPet_Simulator.Windows txt = txt.FindAll(x => x.Strength == LowText.StrengthType.S); Main.Say(txt[Function.Rnd.Next(txt.Count)].Text, GraphCore.Helper.SayType.None); } - Task.Run(() => Main.Display(GraphCore.GraphType.Switch_Thirsty, Main.DisplayToNomal)); + Task.Run(() => Main.Display(GraphCore.GraphType.Switch_Hunger, Main.DisplayToNomal)); return; } if (Core.Save.StrengthDrink < 75 && Function.Rnd.Next(lowstrengthAskCountDrink--) == 0) @@ -286,7 +286,7 @@ namespace VPet_Simulator.Windows txt = txt.FindAll(x => x.Strength == LowText.StrengthType.S); Main.Say(txt[Function.Rnd.Next(txt.Count)].Text, GraphCore.Helper.SayType.None); } - Task.Run(() => Main.Display(GraphCore.GraphType.Switch_Thirsty, Main.DisplayToNomal)); + Task.Run(() => Main.Display(GraphCore.GraphType.Switch_Hunger, Main.DisplayToNomal)); return; } if (Core.Save.StrengthDrink < 60 && Function.Rnd.Next(lowstrengthAskCountDrink--) == 0) diff --git a/VPet-Simulator.Windows/WinDesign/winBetterBuy.xaml.cs b/VPet-Simulator.Windows/WinDesign/winBetterBuy.xaml.cs index 3586c67..91b030c 100644 --- a/VPet-Simulator.Windows/WinDesign/winBetterBuy.xaml.cs +++ b/VPet-Simulator.Windows/WinDesign/winBetterBuy.xaml.cs @@ -175,9 +175,17 @@ namespace VPet_Simulator.Windows } if (!_puswitch.IsChecked.Value) TryClose(); - IRunImage eat = (IRunImage)mw.Core.Graph.FindGraph(GraphType.Eat, mw.Core.Save.Mode); - var b = mw.Main.FindDisplayBorder(eat); - eat.Run(b, item.ImageSource, mw.Main.DisplayToNomal); + var ig = mw.Core.Graph.FindGraph(item.Type == Food.FoodType.Drink ? GraphType.Drink : GraphType.Eat, mw.Core.Save.Mode); + if (ig is IRunImage iri) + { + var b = mw.Main.FindDisplayBorder(iri); + iri.Run(b, item.ImageSource, mw.Main.DisplayToNomal); + } + else + { + mw.Main.Display(ig, mw.Main.DisplayToNomal); + } + } private void BtnSearch_Click(object sender, RoutedEventArgs e) diff --git a/VPet-Simulator.Windows/mod/0000_core/image/food/ab钙奶.png b/VPet-Simulator.Windows/mod/0000_core/image/food/ab钙奶.png index 865c523..275ca85 100644 Binary files a/VPet-Simulator.Windows/mod/0000_core/image/food/ab钙奶.png and b/VPet-Simulator.Windows/mod/0000_core/image/food/ab钙奶.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/image/food/凉茶.png b/VPet-Simulator.Windows/mod/0000_core/image/food/凉茶.png index aff0e79..5cad525 100644 Binary files a/VPet-Simulator.Windows/mod/0000_core/image/food/凉茶.png and b/VPet-Simulator.Windows/mod/0000_core/image/food/凉茶.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/image/food/可乐.png b/VPet-Simulator.Windows/mod/0000_core/image/food/可乐.png index 73c1ecf..7854aa8 100644 Binary files a/VPet-Simulator.Windows/mod/0000_core/image/food/可乐.png and b/VPet-Simulator.Windows/mod/0000_core/image/food/可乐.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/image/food/咖啡饮料.png b/VPet-Simulator.Windows/mod/0000_core/image/food/咖啡饮料.png index fc52a70..1992b48 100644 Binary files a/VPet-Simulator.Windows/mod/0000_core/image/food/咖啡饮料.png and b/VPet-Simulator.Windows/mod/0000_core/image/food/咖啡饮料.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/image/food/大鹏特饮.png b/VPet-Simulator.Windows/mod/0000_core/image/food/大鹏特饮.png index a00388b..6b89b87 100644 Binary files a/VPet-Simulator.Windows/mod/0000_core/image/food/大鹏特饮.png and b/VPet-Simulator.Windows/mod/0000_core/image/food/大鹏特饮.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/image/food/核桃仁.png b/VPet-Simulator.Windows/mod/0000_core/image/food/核桃仁.png index 012a150..6ec424a 100644 Binary files a/VPet-Simulator.Windows/mod/0000_core/image/food/核桃仁.png and b/VPet-Simulator.Windows/mod/0000_core/image/food/核桃仁.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/image/food/椰汁.png b/VPet-Simulator.Windows/mod/0000_core/image/food/椰汁.png index 6d8f049..d8e3d56 100644 Binary files a/VPet-Simulator.Windows/mod/0000_core/image/food/椰汁.png and b/VPet-Simulator.Windows/mod/0000_core/image/food/椰汁.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/image/food/盐汽水.png b/VPet-Simulator.Windows/mod/0000_core/image/food/盐汽水.png index b022568..7eedfab 100644 Binary files a/VPet-Simulator.Windows/mod/0000_core/image/food/盐汽水.png and b/VPet-Simulator.Windows/mod/0000_core/image/food/盐汽水.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/image/food/维他奶.png b/VPet-Simulator.Windows/mod/0000_core/image/food/维他奶.png index b98e518..92ee5ab 100644 Binary files a/VPet-Simulator.Windows/mod/0000_core/image/food/维他奶.png and b/VPet-Simulator.Windows/mod/0000_core/image/food/维他奶.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/image/food/维生素C含片.png b/VPet-Simulator.Windows/mod/0000_core/image/food/维生素C含片.png index 8d230dc..7055f72 100644 Binary files a/VPet-Simulator.Windows/mod/0000_core/image/food/维生素C含片.png and b/VPet-Simulator.Windows/mod/0000_core/image/food/维生素C含片.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/image/food/脑黑金.png b/VPet-Simulator.Windows/mod/0000_core/image/food/脑黑金.png index 0d9be48..c16c2d4 100644 Binary files a/VPet-Simulator.Windows/mod/0000_core/image/food/脑黑金.png and b/VPet-Simulator.Windows/mod/0000_core/image/food/脑黑金.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/image/food/雷碧.png b/VPet-Simulator.Windows/mod/0000_core/image/food/雷碧.png index b6b39df..e34424f 100644 Binary files a/VPet-Simulator.Windows/mod/0000_core/image/food/雷碧.png and b/VPet-Simulator.Windows/mod/0000_core/image/food/雷碧.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/image/food/黄牛.png b/VPet-Simulator.Windows/mod/0000_core/image/food/黄牛.png index cb716d4..84e65e6 100644 Binary files a/VPet-Simulator.Windows/mod/0000_core/image/food/黄牛.png and b/VPet-Simulator.Windows/mod/0000_core/image/food/黄牛.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Drink/Happy/back_lay/喝水_000_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Drink/Happy/back_lay/喝水_000_125.png new file mode 100644 index 0000000..dc624fc Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Drink/Happy/back_lay/喝水_000_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Drink/Happy/back_lay/喝水_001_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Drink/Happy/back_lay/喝水_001_125.png new file mode 100644 index 0000000..051a030 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Drink/Happy/back_lay/喝水_001_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Drink/Happy/back_lay/喝水_002_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Drink/Happy/back_lay/喝水_002_125.png new file mode 100644 index 0000000..11b0aea Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Drink/Happy/back_lay/喝水_002_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Drink/Happy/back_lay/喝水_003_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Drink/Happy/back_lay/喝水_003_125.png new file mode 100644 index 0000000..bcbc26b Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Drink/Happy/back_lay/喝水_003_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Drink/Happy/back_lay/喝水_004_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Drink/Happy/back_lay/喝水_004_125.png new file mode 100644 index 0000000..283d3ba Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Drink/Happy/back_lay/喝水_004_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Drink/Happy/back_lay/喝水_005_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Drink/Happy/back_lay/喝水_005_125.png new file mode 100644 index 0000000..cdb8423 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Drink/Happy/back_lay/喝水_005_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Drink/Happy/back_lay/喝水_006_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Drink/Happy/back_lay/喝水_006_125.png new file mode 100644 index 0000000..534a1ca Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Drink/Happy/back_lay/喝水_006_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Drink/Happy/back_lay/喝水_007_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Drink/Happy/back_lay/喝水_007_125.png new file mode 100644 index 0000000..cdb8423 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Drink/Happy/back_lay/喝水_007_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Drink/Happy/back_lay/喝水_008_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Drink/Happy/back_lay/喝水_008_125.png new file mode 100644 index 0000000..b82935a Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Drink/Happy/back_lay/喝水_008_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Drink/Happy/back_lay/喝水_009_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Drink/Happy/back_lay/喝水_009_125.png new file mode 100644 index 0000000..143e3e7 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Drink/Happy/back_lay/喝水_009_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Drink/Happy/back_lay/喝水_010_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Drink/Happy/back_lay/喝水_010_125.png new file mode 100644 index 0000000..b15ec9f Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Drink/Happy/back_lay/喝水_010_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Drink/Happy/back_lay/喝水_011_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Drink/Happy/back_lay/喝水_011_125.png new file mode 100644 index 0000000..e19dec2 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Drink/Happy/back_lay/喝水_011_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Drink/Happy/back_lay/喝水_012_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Drink/Happy/back_lay/喝水_012_125.png new file mode 100644 index 0000000..b15ec9f Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Drink/Happy/back_lay/喝水_012_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Drink/Happy/back_lay/喝水_013_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Drink/Happy/back_lay/喝水_013_125.png new file mode 100644 index 0000000..b4d62be Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Drink/Happy/back_lay/喝水_013_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Drink/Happy/back_lay/喝水_014_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Drink/Happy/back_lay/喝水_014_125.png new file mode 100644 index 0000000..b15ec9f Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Drink/Happy/back_lay/喝水_014_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Drink/Happy/back_lay/喝水_015_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Drink/Happy/back_lay/喝水_015_125.png new file mode 100644 index 0000000..c745da5 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Drink/Happy/back_lay/喝水_015_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Drink/Happy/back_lay/喝水_016_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Drink/Happy/back_lay/喝水_016_125.png new file mode 100644 index 0000000..dc624fc Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Drink/Happy/back_lay/喝水_016_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Drink/Happy/back_lay/喝水_017_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Drink/Happy/back_lay/喝水_017_125.png new file mode 100644 index 0000000..11b0aea Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Drink/Happy/back_lay/喝水_017_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Drink/Happy/back_lay/喝水_018_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Drink/Happy/back_lay/喝水_018_125.png new file mode 100644 index 0000000..5adfbf5 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Drink/Happy/back_lay/喝水_018_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Drink/Happy/back_lay/喝水_019_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Drink/Happy/back_lay/喝水_019_125.png new file mode 100644 index 0000000..dc624fc Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Drink/Happy/back_lay/喝水_019_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Drink/Nomal/back_lay/普通喝水_000_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Drink/Nomal/back_lay/普通喝水_000_125.png new file mode 100644 index 0000000..051557c Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Drink/Nomal/back_lay/普通喝水_000_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Drink/Nomal/back_lay/普通喝水_001_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Drink/Nomal/back_lay/普通喝水_001_125.png new file mode 100644 index 0000000..5e09b09 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Drink/Nomal/back_lay/普通喝水_001_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Drink/Nomal/back_lay/普通喝水_002_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Drink/Nomal/back_lay/普通喝水_002_125.png new file mode 100644 index 0000000..b3ecb89 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Drink/Nomal/back_lay/普通喝水_002_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Drink/Nomal/back_lay/普通喝水_003_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Drink/Nomal/back_lay/普通喝水_003_125.png new file mode 100644 index 0000000..8d25eb3 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Drink/Nomal/back_lay/普通喝水_003_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Drink/Nomal/back_lay/普通喝水_004_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Drink/Nomal/back_lay/普通喝水_004_125.png new file mode 100644 index 0000000..8ee9c5b Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Drink/Nomal/back_lay/普通喝水_004_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Drink/Nomal/back_lay/普通喝水_005_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Drink/Nomal/back_lay/普通喝水_005_125.png new file mode 100644 index 0000000..24d3023 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Drink/Nomal/back_lay/普通喝水_005_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Drink/Nomal/back_lay/普通喝水_006_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Drink/Nomal/back_lay/普通喝水_006_125.png new file mode 100644 index 0000000..e937026 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Drink/Nomal/back_lay/普通喝水_006_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Drink/Nomal/back_lay/普通喝水_007_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Drink/Nomal/back_lay/普通喝水_007_125.png new file mode 100644 index 0000000..24d3023 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Drink/Nomal/back_lay/普通喝水_007_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Drink/Nomal/back_lay/普通喝水_008_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Drink/Nomal/back_lay/普通喝水_008_125.png new file mode 100644 index 0000000..73bbd05 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Drink/Nomal/back_lay/普通喝水_008_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Drink/Nomal/back_lay/普通喝水_009_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Drink/Nomal/back_lay/普通喝水_009_125.png new file mode 100644 index 0000000..53e1049 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Drink/Nomal/back_lay/普通喝水_009_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Drink/Nomal/back_lay/普通喝水_010_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Drink/Nomal/back_lay/普通喝水_010_125.png new file mode 100644 index 0000000..ad59979 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Drink/Nomal/back_lay/普通喝水_010_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Drink/Nomal/back_lay/普通喝水_011_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Drink/Nomal/back_lay/普通喝水_011_125.png new file mode 100644 index 0000000..3b06e75 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Drink/Nomal/back_lay/普通喝水_011_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Drink/Nomal/back_lay/普通喝水_012_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Drink/Nomal/back_lay/普通喝水_012_125.png new file mode 100644 index 0000000..ad59979 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Drink/Nomal/back_lay/普通喝水_012_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Drink/Nomal/back_lay/普通喝水_013_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Drink/Nomal/back_lay/普通喝水_013_125.png new file mode 100644 index 0000000..5fd5b49 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Drink/Nomal/back_lay/普通喝水_013_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Drink/Nomal/back_lay/普通喝水_014_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Drink/Nomal/back_lay/普通喝水_014_125.png new file mode 100644 index 0000000..ad59979 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Drink/Nomal/back_lay/普通喝水_014_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Drink/Nomal/back_lay/普通喝水_015_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Drink/Nomal/back_lay/普通喝水_015_125.png new file mode 100644 index 0000000..e2571ec Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Drink/Nomal/back_lay/普通喝水_015_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Drink/Nomal/back_lay/普通喝水_016_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Drink/Nomal/back_lay/普通喝水_016_125.png new file mode 100644 index 0000000..051557c Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Drink/Nomal/back_lay/普通喝水_016_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Drink/Nomal/back_lay/普通喝水_017_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Drink/Nomal/back_lay/普通喝水_017_125.png new file mode 100644 index 0000000..b3ecb89 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Drink/Nomal/back_lay/普通喝水_017_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Drink/Nomal/back_lay/普通喝水_018_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Drink/Nomal/back_lay/普通喝水_018_125.png new file mode 100644 index 0000000..9a4b225 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Drink/Nomal/back_lay/普通喝水_018_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Drink/Nomal/back_lay/普通喝水_019_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Drink/Nomal/back_lay/普通喝水_019_125.png new file mode 100644 index 0000000..051557c Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Drink/Nomal/back_lay/普通喝水_019_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Drink/PoorCondition/back_lay/难过喝水_000_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Drink/PoorCondition/back_lay/难过喝水_000_125.png new file mode 100644 index 0000000..3117a18 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Drink/PoorCondition/back_lay/难过喝水_000_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Drink/PoorCondition/back_lay/难过喝水_001_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Drink/PoorCondition/back_lay/难过喝水_001_125.png new file mode 100644 index 0000000..255aeef Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Drink/PoorCondition/back_lay/难过喝水_001_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Drink/PoorCondition/back_lay/难过喝水_002_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Drink/PoorCondition/back_lay/难过喝水_002_125.png new file mode 100644 index 0000000..74db980 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Drink/PoorCondition/back_lay/难过喝水_002_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Drink/PoorCondition/back_lay/难过喝水_003_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Drink/PoorCondition/back_lay/难过喝水_003_125.png new file mode 100644 index 0000000..41f06a6 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Drink/PoorCondition/back_lay/难过喝水_003_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Drink/PoorCondition/back_lay/难过喝水_004_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Drink/PoorCondition/back_lay/难过喝水_004_125.png new file mode 100644 index 0000000..2a2603c Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Drink/PoorCondition/back_lay/难过喝水_004_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Drink/PoorCondition/back_lay/难过喝水_005_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Drink/PoorCondition/back_lay/难过喝水_005_125.png new file mode 100644 index 0000000..5eeeddb Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Drink/PoorCondition/back_lay/难过喝水_005_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Drink/PoorCondition/back_lay/难过喝水_006_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Drink/PoorCondition/back_lay/难过喝水_006_125.png new file mode 100644 index 0000000..b2433e5 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Drink/PoorCondition/back_lay/难过喝水_006_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Drink/PoorCondition/back_lay/难过喝水_007_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Drink/PoorCondition/back_lay/难过喝水_007_125.png new file mode 100644 index 0000000..5eeeddb Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Drink/PoorCondition/back_lay/难过喝水_007_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Drink/PoorCondition/back_lay/难过喝水_008_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Drink/PoorCondition/back_lay/难过喝水_008_125.png new file mode 100644 index 0000000..b899859 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Drink/PoorCondition/back_lay/难过喝水_008_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Drink/PoorCondition/back_lay/难过喝水_009_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Drink/PoorCondition/back_lay/难过喝水_009_125.png new file mode 100644 index 0000000..0be161c Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Drink/PoorCondition/back_lay/难过喝水_009_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Drink/PoorCondition/back_lay/难过喝水_010_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Drink/PoorCondition/back_lay/难过喝水_010_125.png new file mode 100644 index 0000000..9ca3369 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Drink/PoorCondition/back_lay/难过喝水_010_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Drink/PoorCondition/back_lay/难过喝水_011_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Drink/PoorCondition/back_lay/难过喝水_011_125.png new file mode 100644 index 0000000..3b06e75 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Drink/PoorCondition/back_lay/难过喝水_011_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Drink/PoorCondition/back_lay/难过喝水_012_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Drink/PoorCondition/back_lay/难过喝水_012_125.png new file mode 100644 index 0000000..9ca3369 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Drink/PoorCondition/back_lay/难过喝水_012_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Drink/PoorCondition/back_lay/难过喝水_013_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Drink/PoorCondition/back_lay/难过喝水_013_125.png new file mode 100644 index 0000000..22cff83 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Drink/PoorCondition/back_lay/难过喝水_013_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Drink/PoorCondition/back_lay/难过喝水_014_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Drink/PoorCondition/back_lay/难过喝水_014_125.png new file mode 100644 index 0000000..9ca3369 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Drink/PoorCondition/back_lay/难过喝水_014_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Drink/PoorCondition/back_lay/难过喝水_015_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Drink/PoorCondition/back_lay/难过喝水_015_125.png new file mode 100644 index 0000000..dfdc816 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Drink/PoorCondition/back_lay/难过喝水_015_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Drink/PoorCondition/back_lay/难过喝水_016_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Drink/PoorCondition/back_lay/难过喝水_016_125.png new file mode 100644 index 0000000..3117a18 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Drink/PoorCondition/back_lay/难过喝水_016_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Drink/PoorCondition/back_lay/难过喝水_017_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Drink/PoorCondition/back_lay/难过喝水_017_125.png new file mode 100644 index 0000000..74db980 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Drink/PoorCondition/back_lay/难过喝水_017_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Drink/PoorCondition/back_lay/难过喝水_018_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Drink/PoorCondition/back_lay/难过喝水_018_125.png new file mode 100644 index 0000000..f5ce44a Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Drink/PoorCondition/back_lay/难过喝水_018_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Drink/PoorCondition/back_lay/难过喝水_019_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Drink/PoorCondition/back_lay/难过喝水_019_125.png new file mode 100644 index 0000000..3117a18 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Drink/PoorCondition/back_lay/难过喝水_019_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Drink/info.lps b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Drink/info.lps new file mode 100644 index 0000000..f40ef17 --- /dev/null +++ b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Drink/info.lps @@ -0,0 +1,9 @@ +PNGAnimation#drink_back_lay:|path#Happy\back_lay:|mode#Happy:|graph#Not_Able:| +///PNGAnimation#drink_front_lay:|path#Happy\front_lay:|mode#Happy:|graph#Not_Able:| +PNGAnimation#drink_back_lay:|path#Nomal\back_lay:|mode#Nomal:|graph#Not_Able:| +///PNGAnimation#drink_front_lay:|path#Nomal\front_lay:|mode#Nomal:|graph#Not_Able:| +PNGAnimation#drink_back_lay:|path#PoorCondition\back_lay:|mode#PoorCondition:|graph#Not_Able:| +///PNGAnimation#drink_front_lay:|path#PoorCondition\front_lay:|mode#PoorCondition:|graph#Not_Able:| +FoodAnimation:|mode#Happy:|graph#drink:|a0#1000:|a1#125,268,286,77,60:|a2#125,167,164,78:|a3#125,198,160,78:|a4#125,199,163,78:|a5#125,199,160,78:|a6#125,199,163,78:|a7#125,199,160,78:|a8#125,169,164,78:|a9#125,268,286,77,60:|a10#625:|front_lay#drink_front_lay:|back_lay#drink_back_lay:| +FoodAnimation:|mode#nomal:|graph#drink:|a0#1000:|a1#125,268,286,77,60:|a2#125,167,164,78:|a3#125,198,160,78:|a4#125,199,163,78:|a5#125,199,160,78:|a6#125,199,163,78:|a7#125,199,160,78:|a8#125,169,164,78:|a9#125,268,286,77,60:|a10#625:|front_lay#drink_front_lay:|back_lay#drink_back_lay:| +FoodAnimation:|mode#PoorCondition:|graph#drink:|a0#1000:|a1#125,268,286,77,60:|a2#125,167,164,78:|a3#125,198,160,78:|a4#125,199,163,78:|a5#125,199,160,78:|a6#125,199,163,78:|a7#125,199,160,78:|a8#125,169,164,78:|a9#125,268,286,77,60:|a10#625:|front_lay#drink_front_lay:|back_lay#drink_back_lay:| diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Sleep/A_Happy/happysleep_000_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Sleep/A_Happy/happysleep_000_125.png new file mode 100644 index 0000000..b7869fd Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Sleep/A_Happy/happysleep_000_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Sleep/A_Happy/happysleep_001_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Sleep/A_Happy/happysleep_001_125.png new file mode 100644 index 0000000..e0caa81 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Sleep/A_Happy/happysleep_001_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Sleep/A_Happy/happysleep_002_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Sleep/A_Happy/happysleep_002_125.png new file mode 100644 index 0000000..fe21da7 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Sleep/A_Happy/happysleep_002_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Sleep/A_Happy/happysleep_003_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Sleep/A_Happy/happysleep_003_125.png new file mode 100644 index 0000000..aa89b29 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Sleep/A_Happy/happysleep_003_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Sleep/A_Happy/happysleep_004_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Sleep/A_Happy/happysleep_004_125.png new file mode 100644 index 0000000..934241d Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Sleep/A_Happy/happysleep_004_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Sleep/B_Happy/happysleep_000_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Sleep/B_Happy/happysleep_000_125.png new file mode 100644 index 0000000..f3bbc38 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Sleep/B_Happy/happysleep_000_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Sleep/B_Happy/happysleep_001_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Sleep/B_Happy/happysleep_001_125.png new file mode 100644 index 0000000..e780f1b Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Sleep/B_Happy/happysleep_001_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Sleep/B_Happy/happysleep_002_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Sleep/B_Happy/happysleep_002_125.png new file mode 100644 index 0000000..31085c3 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Sleep/B_Happy/happysleep_002_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Sleep/B_Happy/happysleep_003_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Sleep/B_Happy/happysleep_003_125.png new file mode 100644 index 0000000..2db3a1e Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Sleep/B_Happy/happysleep_003_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Sleep/B_Happy/happysleep_004_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Sleep/B_Happy/happysleep_004_125.png new file mode 100644 index 0000000..61bd040 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Sleep/B_Happy/happysleep_004_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Sleep/B_Happy/happysleep_005_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Sleep/B_Happy/happysleep_005_125.png new file mode 100644 index 0000000..0063035 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Sleep/B_Happy/happysleep_005_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Sleep/C_Happy/happysleep_000_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Sleep/C_Happy/happysleep_000_125.png new file mode 100644 index 0000000..0f6fbe2 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Sleep/C_Happy/happysleep_000_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Sleep/C_Happy/happysleep_001_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Sleep/C_Happy/happysleep_001_125.png new file mode 100644 index 0000000..c107f53 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Sleep/C_Happy/happysleep_001_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Sleep/C_Happy/happysleep_002_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Sleep/C_Happy/happysleep_002_125.png new file mode 100644 index 0000000..b1f92fb Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Sleep/C_Happy/happysleep_002_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Sleep/C_Happy/happysleep_003_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Sleep/C_Happy/happysleep_003_125.png new file mode 100644 index 0000000..a3cee6b Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Sleep/C_Happy/happysleep_003_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Sleep/C_Happy/happysleep_004_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Sleep/C_Happy/happysleep_004_125.png new file mode 100644 index 0000000..272adeb Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Sleep/C_Happy/happysleep_004_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Sleep/C_Happy/happysleep_005_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Sleep/C_Happy/happysleep_005_125.png new file mode 100644 index 0000000..511424a Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Sleep/C_Happy/happysleep_005_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Sleep/C_Happy/happysleep_006_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Sleep/C_Happy/happysleep_006_125.png new file mode 100644 index 0000000..6e1b456 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Sleep/C_Happy/happysleep_006_125.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/kouke_000_125.png similarity index 100% rename from VPet-Simulator.Windows/mod/0000_core/pet/vup/Switch/Thirsty/悲伤呼吸_000_125.png rename to VPet-Simulator.Windows/mod/0000_core/pet/vup/Switch/Thirsty/kouke_000_125.png diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Switch/Thirsty/kouke_001_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Switch/Thirsty/kouke_001_125.png new file mode 100644 index 0000000..7b6144b Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Switch/Thirsty/kouke_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/kouke_002_125.png similarity index 100% rename from VPet-Simulator.Windows/mod/0000_core/pet/vup/Switch/Thirsty/悲伤呼吸_002_125.png rename to VPet-Simulator.Windows/mod/0000_core/pet/vup/Switch/Thirsty/kouke_002_125.png diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Switch/Thirsty/kouke_003_500.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Switch/Thirsty/kouke_003_500.png new file mode 100644 index 0000000..edd2fb7 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Switch/Thirsty/kouke_003_500.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Switch/Thirsty/kouke_004_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Switch/Thirsty/kouke_004_125.png new file mode 100644 index 0000000..9e838e7 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Switch/Thirsty/kouke_004_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Switch/Thirsty/kouke_005_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Switch/Thirsty/kouke_005_125.png new file mode 100644 index 0000000..edd2fb7 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Switch/Thirsty/kouke_005_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Switch/Thirsty/kouke_006_375.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Switch/Thirsty/kouke_006_375.png new file mode 100644 index 0000000..9e838e7 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Switch/Thirsty/kouke_006_375.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Switch/Thirsty/kouke_007_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Switch/Thirsty/kouke_007_125.png new file mode 100644 index 0000000..edd2fb7 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Switch/Thirsty/kouke_007_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Switch/Thirsty/kouke_008_750.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Switch/Thirsty/kouke_008_750.png new file mode 100644 index 0000000..9e838e7 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Switch/Thirsty/kouke_008_750.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Switch/Thirsty/kouke_009_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Switch/Thirsty/kouke_009_125.png new file mode 100644 index 0000000..edd2fb7 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Switch/Thirsty/kouke_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/kouke_010_125.png similarity index 100% rename from VPet-Simulator.Windows/mod/0000_core/pet/vup/Switch/Thirsty/悲伤呼吸_010_125.png rename to VPet-Simulator.Windows/mod/0000_core/pet/vup/Switch/Thirsty/kouke_010_125.png diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Switch/Thirsty/kouke_011_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Switch/Thirsty/kouke_011_125.png new file mode 100644 index 0000000..7b6144b Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Switch/Thirsty/kouke_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/kouke_012_250.png similarity index 100% rename from VPet-Simulator.Windows/mod/0000_core/pet/vup/Switch/Thirsty/悲伤呼吸_012_250.png rename to VPet-Simulator.Windows/mod/0000_core/pet/vup/Switch/Thirsty/kouke_012_250.png 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 deleted file mode 100644 index 964a896..0000000 Binary files a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Switch/Thirsty/悲伤呼吸_001_125.png and /dev/null 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 deleted file mode 100644 index b22816e..0000000 Binary files a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Switch/Thirsty/悲伤呼吸_003_500.png and /dev/null 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 deleted file mode 100644 index 8d2baf3..0000000 Binary files a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Switch/Thirsty/悲伤呼吸_004_125.png and /dev/null 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 deleted file mode 100644 index b22816e..0000000 Binary files a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Switch/Thirsty/悲伤呼吸_005_125.png and /dev/null 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 deleted file mode 100644 index 8d2baf3..0000000 Binary files a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Switch/Thirsty/悲伤呼吸_006_375.png and /dev/null 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 deleted file mode 100644 index b22816e..0000000 Binary files a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Switch/Thirsty/悲伤呼吸_007_125.png and /dev/null 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 deleted file mode 100644 index 8d2baf3..0000000 Binary files a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Switch/Thirsty/悲伤呼吸_008_750.png and /dev/null 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 deleted file mode 100644 index b22816e..0000000 Binary files a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Switch/Thirsty/悲伤呼吸_009_125.png and /dev/null 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 deleted file mode 100644 index 964a896..0000000 Binary files a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Switch/Thirsty/悲伤呼吸_011_125.png and /dev/null differ