diff --git a/VPet-Simulator.Windows.Interface/GameSave_VPet.cs b/VPet-Simulator.Windows.Interface/GameSave_VPet.cs index ea4ae85..1feb76c 100644 --- a/VPet-Simulator.Windows.Interface/GameSave_VPet.cs +++ b/VPet-Simulator.Windows.Interface/GameSave_VPet.cs @@ -83,8 +83,9 @@ public class GameSave_VPet : IGameSave {//告知用户上限等级上升 imw.Dispatcher.Invoke(() => { - imw.Main.Say("萝莉斯要说的话".Translate()); - MessageBoxX.Show("上限等级上升内容介绍".Translate(), "上限等级上升标题".Translate()); + imw.Main.Say("邦邦咔邦,{0}等级突破了!".Translate(Name)); + MessageBoxX.Show("系统提示\n您的桌宠等级已经突破\nLv{0}→LV{1} x{2}\n已突破为尊贵的x{3}阶".Translate( + 1000 + (LevelMax - 1) * 100, 100 * LevelMax, LevelMax), "桌宠等级突破".Translate()); }); } exp = value; diff --git a/VPet-Simulator.Windows/MainWindow.cs b/VPet-Simulator.Windows/MainWindow.cs index 0619dc3..2f8b540 100644 --- a/VPet-Simulator.Windows/MainWindow.cs +++ b/VPet-Simulator.Windows/MainWindow.cs @@ -1526,7 +1526,24 @@ namespace VPet_Simulator.Windows } } - //桌宠生日:第一次启动日期 + //生日蛋糕默认为加满的 + var food = new Food() + { + Name = "生日蛋糕", + Likability = 5, + Exp = 1000, + Feeling = 100, + StrengthDrink = Core.Save.StrengthMax, + StrengthFood = Core.Save.StrengthMax, + Type = FoodType.Food, + isoverload = false, + Desc = "萝莉丝的专属生日蛋糕,由3桶牛奶+2份糖+1个鸡蛋+3份小麦合。制作而成。营养丰富,可使所有状态回满。只有在萝莉丝生日才能吃的到哦。" + }; + food.LoadImageSource(this); + food.Price = (int)Math.Max(0, food.RealPrice * .5); + Foods.Add(food); + + //第一次启动日期 if (GameSavesData.Data.FindLine("birthday") == null) { var sf = new FileInfo(ExtensionValue.BaseDirectory + @$"\Setting{PrefixSave}.lps"); @@ -2037,7 +2054,7 @@ namespace VPet_Simulator.Windows Content = "点击前往查看".Translate(), FontSize = 20, HorizontalAlignment = System.Windows.HorizontalAlignment.Right, - Background = Function.ResourcesBrush(Function.BrushType.Primary), + Background = Function.ResourcesBrush(Function.BrushType.PrimaryDark), Foreground = Function.ResourcesBrush(Function.BrushType.PrimaryText), }; button.Click += (x, y) => @@ -2052,6 +2069,60 @@ namespace VPet_Simulator.Windows Main.Say("哼哼~主人,我的考试成绩出炉了哦,快来和我一起看我的成绩单喵".Translate(), btn, "shining"); }); } + if (DateTime.Now < new DateTime(2024, 8, 22)) + { + food.Star = true; + Task.Run(() => + { + Thread.Sleep(10000); + var btn = Dispatcher.Invoke(() => + { + var button = new System.Windows.Controls.Button() + { + Content = "查看生日公告/视频".Translate(), + FontSize = 20, + HorizontalAlignment = System.Windows.HorizontalAlignment.Right, + Background = Function.ResourcesBrush(Function.BrushType.PrimaryDark), + Foreground = Function.ResourcesBrush(Function.BrushType.PrimaryText), + }; + button.Click += (x, y) => + { + if (LocalizeCore.CurrentCulture.StartsWith("zh")) + ExtensionFunction.StartURL("https://www.bilibili.com/opus/965218905364627474"); + else + ExtensionFunction.StartURL("https://store.steampowered.com/news/app/1920960/view/4374769594847756449"); + }; + return button; + }); + string bdt; + switch (DateTime.Now.Day) + { + case 14: + bdt = "祝我生日快乐~♪祝我生日快乐~♪,主人猜猜今天是什么日子?我的生日!主人真聪明!我就知道主人一定会记得我的生日的!谢谢主人!快来和我一起过生日吧~主人给我买的蛋糕真香啊~首先是是吹蜡烛许愿,我看看我的愿望清单: 一台5090电脑,嗨神话:吗喽 数字豪华版,还有..."; + break; + case 15: + bdt = "昨天生日过得真开心啊!谢谢主人陪我!什么?冰箱里还有剩蛋糕?太可恶了!马上拿嘴巴去吃!"; + break; + case 16: + bdt = "嗯。。生日蛋糕真好吃啊。。还想吃。。什么?今天也可以当生日过?!谢谢主人!"; + break; + case 17: + bdt = "虽然生日已经过去了好几天,但是生日那天的气氛一直影响到现在呢。我才不是又想吃生日蛋糕了呢!哼!"; + break; + case 18: + bdt = "过生日什么的太幼稚辣。人家也老大不小了,怎么可以去学小孩子过生日呢。和体重没关系!我被蛋糕所伤,今日起,戒蛋糕!"; + break; + case 19: + bdt = "是突然发现一个哲学问题,只要我把每天都当生日,那我就可以每天都过生日了!这可是辩证唯物主义的大发现啊!"; + break; + default: + bdt = "转眼之间已经过去一周了呢。生日的感觉也在慢慢淡忘。主人,明年你还愿意陪我一起过生日吗?"; + break; + + } + Main.Say(bdt.Translate(), btn, "self"); + }); + } #if NewYear //仅新年功能 if (DateTime.Now < new DateTime(2024, 2, 18)) diff --git a/VPet-Simulator.Windows/mod/0000_core/image/food/生日蛋糕.png b/VPet-Simulator.Windows/mod/0000_core/image/food/生日蛋糕.png new file mode 100644 index 0000000..9b5ffa7 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/image/food/生日蛋糕.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/lang/en/Base2408.lps b/VPet-Simulator.Windows/mod/0000_core/lang/en/Base2408.lps new file mode 100644 index 0000000..1855968 --- /dev/null +++ b/VPet-Simulator.Windows/mod/0000_core/lang/en/Base2408.lps @@ -0,0 +1,13 @@ +邦邦咔邦,{0}等级突破了!#Bang bang kabang, level {0} has been advanced through!:| +系统提示\n您的桌宠等级已经突破\nLv{0}→LV{1} x{2}\n已突破为尊贵的x{3}阶#System Notice\nYour VPet level has advanced\nLv{0}→LV{1} x{2}\nHas advanced to the prestigious x{3} rank:| +桌宠等级突破#VPet Level Advanced through:| +查看生日公告/视频#View Birthday Announcement/Video:| +生日蛋糕#Birthday Cake:| +萝莉丝的专属生日蛋糕,由3桶牛奶+2份糖+1个鸡蛋+3份小麦合。制作而成。营养丰富,可使所有状态回满。只有在萝莉丝生日才能吃的到哦。#Lolis's exclusive birthday cake is made of 3 buckets of milk, 2 portions of sugar, 1 egg, and 3 portions of wheat. It is nutritious and can restore all states. You can only eat it on Lolis's birthday.:| +祝我生日快乐~♪祝我生日快乐~♪,主人猜猜今天是什么日子?我的生日!主人真聪明!我就知道主人一定会记得我的生日的!谢谢主人!快来和我一起过生日吧~主人给我买的蛋糕真香啊~首先是是吹蜡烛许愿,我看看我的愿望清单: 一台5090电脑,嗨神话:吗喽 数字豪华版,还有...#Happy birthday to me~♪ Happy birthday to me~♪, Master, guess what day it is today? My birthday! Master is so smart! I knew Master would remember my birthday! Thank you, Master! Come and celebrate my birthday with me~ The cake Master bought for me smells so delicious~ First, it's blowing out the candles and making a wish. Let me see my wish list: a 5090 computer, Black Myth: Malao Digital Deluxe Edition, and ...:| +昨天生日过得真开心啊!谢谢主人陪我!什么?冰箱里还有剩蛋糕?太可恶了!马上拿嘴巴去吃!#I had a really happy birthday yesterday! Thanks for the host for keeping me company! What? There's still cake left in the fridge? That's so annoying! I'll go eat it right away!:| +嗯。。生日蛋糕真好吃啊。。还想吃。。什么?今天也可以当生日过?!谢谢主人!#Mmm... The birthday cake is really delicious... I still want to eat... What? Today can also be celebrated as a birthday?! Thank you, master!:| +虽然生日已经过去了好几天,但是生日那天的气氛一直影响到现在呢。我才不是又想吃生日蛋糕了呢!哼!#Although my birthday has been over for a few days now, the atmosphere from that day still lingers on. It's not like I'm craving another birthday cake! Hmph!:| +过生日什么的太幼稚辣。人家也老大不小了,怎么可以去学小孩子过生日呢。和体重没关系!我被蛋糕所伤,今日起,戒蛋糕!#Celebrating birthdays and such is too childish. I'm not a child anymore, how can I follow the childish ways of celebrating birthdays? It has nothing to do with weight! I've been hurt by cakes, starting today, I'm giving up on cakes!:| +是突然发现一个哲学问题,只要我把每天都当生日,那我就可以每天都过生日了!这可是辩证唯物主义的大发现啊!#I suddenly realized a philosophical problem: if I treat every day as my birthday, then I can celebrate my birthday every day! This is a great discovery of dialectical materialism!:| +转眼之间已经过去一周了呢。生日的感觉也在慢慢淡忘。主人,明年你还愿意陪我一起过生日吗?#It's been a week since then. The feeling of my birthday is slowly fading away. Master, will you still be willing to celebrate my birthday with me next year?:| diff --git a/VPet-Simulator.Windows/mod/0000_core/lang/zh-Hans/Base2408.lps b/VPet-Simulator.Windows/mod/0000_core/lang/zh-Hans/Base2408.lps new file mode 100644 index 0000000..7918e8f --- /dev/null +++ b/VPet-Simulator.Windows/mod/0000_core/lang/zh-Hans/Base2408.lps @@ -0,0 +1,13 @@ +邦邦咔邦,{0}等级突破了!#邦邦咔邦,{0}等级突破了!:| +系统提示\n您的桌宠等级已经突破\nLv{0}→LV{1} x{2}\n已突破为尊贵的x{3}阶#系统提示\n您的桌宠等级已经突破\nLv{0}→LV{1} x{2}\n已突破为尊贵的x{3}阶:| +桌宠等级突破#桌宠等级突破:| +查看生日公告/视频#查看生日公告/视频:| +生日蛋糕#生日蛋糕:| +萝莉丝的专属生日蛋糕,由3桶牛奶+2份糖+1个鸡蛋+3份小麦合。制作而成。营养丰富,可使所有状态回满。只有在萝莉丝生日才能吃的到哦。#萝莉丝的专属生日蛋糕,由3桶牛奶+2份糖+1个鸡蛋+3份小麦合。制作而成。营养丰富,可使所有状态回满。只有在萝莉丝生日才能吃的到哦。:| +祝我生日快乐~♪祝我生日快乐~♪,主人猜猜今天是什么日子?我的生日!主人真聪明!我就知道主人一定会记得我的生日的!谢谢主人!快来和我一起过生日吧~主人给我买的蛋糕真香啊~首先是是吹蜡烛许愿,我看看我的愿望清单: 一台5090电脑,嗨神话:吗喽 数字豪华版,还有...#祝我生日快乐~♪祝我生日快乐~♪,主人猜猜今天是什么日子?我的生日!主人真聪明!我就知道主人一定会记得我的生日的!谢谢主人!快来和我一起过生日吧~主人给我买的蛋糕真香啊~首先是是吹蜡烛许愿,我看看我的愿望清单: 一台5090电脑,嗨神话:吗喽 数字豪华版,还有...:| +昨天生日过得真开心啊!谢谢主人陪我!什么?冰箱里还有剩蛋糕?太可恶了!马上拿嘴巴去吃!#昨天生日过得真开心啊!谢谢主人陪我!什么?冰箱里还有剩蛋糕?太可恶了!马上拿嘴巴去吃!:| +嗯。。生日蛋糕真好吃啊。。还想吃。。什么?今天也可以当生日过?!谢谢主人!#嗯。。生日蛋糕真好吃啊。。还想吃。。什么?今天也可以当生日过?!谢谢主人!:| +虽然生日已经过去了好几天,但是生日那天的气氛一直影响到现在呢。我才不是又想吃生日蛋糕了呢!哼!#虽然生日已经过去了好几天,但是生日那天的气氛一直影响到现在呢。我才不是又想吃生日蛋糕了呢!哼!:| +过生日什么的太幼稚辣。人家也老大不小了,怎么可以去学小孩子过生日呢。和体重没关系!我被蛋糕所伤,今日起,戒蛋糕!#过生日什么的太幼稚辣。人家也老大不小了,怎么可以去学小孩子过生日呢。和体重没关系!我被蛋糕所伤,今日起,戒蛋糕!:| +是突然发现一个哲学问题,只要我把每天都当生日,那我就可以每天都过生日了!这可是辩证唯物主义的大发现啊!#是突然发现一个哲学问题,只要我把每天都当生日,那我就可以每天都过生日了!这可是辩证唯物主义的大发现啊!:| +转眼之间已经过去一周了呢。生日的感觉也在慢慢淡忘。主人,明年你还愿意陪我一起过生日吗?#转眼之间已经过去一周了呢。生日的感觉也在慢慢淡忘。主人,明年你还愿意陪我一起过生日吗?:| diff --git a/VPet-Simulator.Windows/mod/0000_core/lang/zh-Hant/Base2408.lps b/VPet-Simulator.Windows/mod/0000_core/lang/zh-Hant/Base2408.lps new file mode 100644 index 0000000..f6e2f98 --- /dev/null +++ b/VPet-Simulator.Windows/mod/0000_core/lang/zh-Hant/Base2408.lps @@ -0,0 +1,13 @@ +邦邦咔邦,{0}等级突破了!#邦咔,{0}等級突破了!:| +系统提示\n您的桌宠等级已经突破\nLv{0}→LV{1} x{2}\n已突破为尊贵的x{3}阶#系統提示\n您的桌寵等級已經突破\nLv{0}→LV{1} x{2}\n已突破為尊貴的x{3}階:| +桌宠等级突破#桌寵等級突破:| +查看生日公告/视频#查看生日公告/視頻:| +生日蛋糕#生日蛋糕:| +萝莉丝的专属生日蛋糕,由3桶牛奶+2份糖+1个鸡蛋+3份小麦合。制作而成。营养丰富,可使所有状态回满。只有在萝莉丝生日才能吃的到哦。#蘿莉絲的專屬生日蛋糕,由3桶牛奶+2份糖+1個雞蛋+3份小麥合。製作而成。營養豐富,可使所有狀態回滿。只有在蘿莉絲生日才能吃的到哦。:| +祝我生日快乐~♪祝我生日快乐~♪,主人猜猜今天是什么日子?我的生日!主人真聪明!我就知道主人一定会记得我的生日的!谢谢主人!快来和我一起过生日吧~主人给我买的蛋糕真香啊~首先是是吹蜡烛许愿,我看看我的愿望清单: 一台5090电脑,嗨神话:吗喽 数字豪华版,还有...#祝我生日快樂~♪祝我生日快樂~♪,主人猜猜今天是什麼日子?我的生日!主人真聰明!我就知道主人一定會記得我的生日的!謝謝主人!來和我一起過生日吧~主人給我買的蛋糕真香啊~首先是吹蠟燭許願,我看看我的願望清單: 一台5090電腦,嗨神話:嗎嘍數字豪華版,還有...:| +昨天生日过得真开心啊!谢谢主人陪我!什么?冰箱里还有剩蛋糕?太可恶了!马上拿嘴巴去吃!#昨天生日過得真開心啊!謝謝主人陪我!什麼?冰箱裡還有剩蛋糕?太可惡了!馬上拿嘴巴去吃!:| +嗯。。生日蛋糕真好吃啊。。还想吃。。什么?今天也可以当生日过?!谢谢主人!#嗯。 。生日蛋糕真好吃。 。還想吃。 。什麼?今天也可以當生日過? !謝謝主人!:| +虽然生日已经过去了好几天,但是生日那天的气氛一直影响到现在呢。我才不是又想吃生日蛋糕了呢!哼!#雖然生日已經過了好幾天,但生日的氣氛一直影響到現在。我才不是又想吃生日蛋糕了呢!哼!:| +过生日什么的太幼稚辣。人家也老大不小了,怎么可以去学小孩子过生日呢。和体重没关系!我被蛋糕所伤,今日起,戒蛋糕!#過生日什麼的太幼稚辣。人家也老大不小了,怎麼可以去學小孩過生日。和體重沒關係!我被蛋糕所傷,今日起,戒蛋糕!:| +是突然发现一个哲学问题,只要我把每天都当生日,那我就可以每天都过生日了!这可是辩证唯物主义的大发现啊!#是突然發現一個哲學問題,只要我把每天都當生日,那我就可以每天過生日了!這可是辯證唯物論的大發現啊!:| +转眼之间已经过去一周了呢。生日的感觉也在慢慢淡忘。主人,明年你还愿意陪我一起过生日吗?#轉眼之間已經過了一週呢。生日的感覺也在慢慢淡忘。主人,明年你還願意陪我過生日嗎?:| diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/1/开心一_000_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/1/开心一_000_125.png new file mode 100644 index 0000000..6096158 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/1/开心一_000_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/1/开心一_001_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/1/开心一_001_125.png new file mode 100644 index 0000000..60048f0 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/1/开心一_001_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/1/开心一_002_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/1/开心一_002_125.png new file mode 100644 index 0000000..c5c37fa Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/1/开心一_002_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/1/开心一_003_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/1/开心一_003_125.png new file mode 100644 index 0000000..626f9f1 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/1/开心一_003_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/1/开心一_004_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/1/开心一_004_125.png new file mode 100644 index 0000000..8452725 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/1/开心一_004_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/1/开心一_005_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/1/开心一_005_125.png new file mode 100644 index 0000000..c91f5cf Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/1/开心一_005_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/1/开心一_006_500.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/1/开心一_006_500.png new file mode 100644 index 0000000..c835d2b Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/1/开心一_006_500.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/1/开心一_007_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/1/开心一_007_125.png new file mode 100644 index 0000000..8452725 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/1/开心一_007_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/1/开心一_008_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/1/开心一_008_125.png new file mode 100644 index 0000000..a780a80 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/1/开心一_008_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/1/开心一_009_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/1/开心一_009_125.png new file mode 100644 index 0000000..011adc5 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/1/开心一_009_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/1/开心一_010_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/1/开心一_010_125.png new file mode 100644 index 0000000..5ac80d8 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/1/开心一_010_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/1/开心一_011_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/1/开心一_011_125.png new file mode 100644 index 0000000..ac3034c Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/1/开心一_011_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/1/开心一_012_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/1/开心一_012_125.png new file mode 100644 index 0000000..5ac80d8 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/1/开心一_012_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/1/开心一_013_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/1/开心一_013_125.png new file mode 100644 index 0000000..ac3034c Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/1/开心一_013_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/1/开心一_014_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/1/开心一_014_125.png new file mode 100644 index 0000000..5ac80d8 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/1/开心一_014_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/1/开心一_015_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/1/开心一_015_125.png new file mode 100644 index 0000000..33dcd0f Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/1/开心一_015_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/1/开心一_016_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/1/开心一_016_125.png new file mode 100644 index 0000000..35da93e Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/1/开心一_016_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/1/开心一_017_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/1/开心一_017_125.png new file mode 100644 index 0000000..c5c37fa Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/1/开心一_017_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/1/开心一_018_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/1/开心一_018_125.png new file mode 100644 index 0000000..60048f0 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/1/开心一_018_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/1/开心二_019_250.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/1/开心二_019_250.png new file mode 100644 index 0000000..6096158 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/1/开心二_019_250.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/1/开心二_020_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/1/开心二_020_125.png new file mode 100644 index 0000000..60048f0 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/1/开心二_020_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/1/开心二_021_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/1/开心二_021_125.png new file mode 100644 index 0000000..c5c37fa Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/1/开心二_021_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/1/开心二_022_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/1/开心二_022_125.png new file mode 100644 index 0000000..626f9f1 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/1/开心二_022_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/1/开心二_023_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/1/开心二_023_125.png new file mode 100644 index 0000000..8452725 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/1/开心二_023_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/1/开心二_024_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/1/开心二_024_125.png new file mode 100644 index 0000000..c91f5cf Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/1/开心二_024_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/1/开心二_025_500.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/1/开心二_025_500.png new file mode 100644 index 0000000..33dcd0f Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/1/开心二_025_500.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/1/开心二_026_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/1/开心二_026_125.png new file mode 100644 index 0000000..ac3034c Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/1/开心二_026_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/1/开心二_027_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/1/开心二_027_125.png new file mode 100644 index 0000000..5ac80d8 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/1/开心二_027_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/1/开心二_028_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/1/开心二_028_125.png new file mode 100644 index 0000000..ac3034c Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/1/开心二_028_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/1/开心二_029_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/1/开心二_029_125.png new file mode 100644 index 0000000..5ac80d8 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/1/开心二_029_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/1/开心二_030_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/1/开心二_030_125.png new file mode 100644 index 0000000..011adc5 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/1/开心二_030_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/1/开心二_031_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/1/开心二_031_125.png new file mode 100644 index 0000000..5ac80d8 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/1/开心二_031_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/1/开心二_032_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/1/开心二_032_125.png new file mode 100644 index 0000000..011adc5 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/1/开心二_032_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/1/开心二_033_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/1/开心二_033_125.png new file mode 100644 index 0000000..5ac80d8 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/1/开心二_033_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/1/开心二_034_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/1/开心二_034_125.png new file mode 100644 index 0000000..6f8847b Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/1/开心二_034_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/1/开心二_035_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/1/开心二_035_125.png new file mode 100644 index 0000000..35da93e Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/1/开心二_035_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/1/开心二_036_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/1/开心二_036_125.png new file mode 100644 index 0000000..c5c37fa Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/1/开心二_036_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/1/开心二_037_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/1/开心二_037_125.png new file mode 100644 index 0000000..60048f0 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/1/开心二_037_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/1/开心二_038_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/1/开心二_038_125.png new file mode 100644 index 0000000..6096158 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/1/开心二_038_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/2/开心一_000_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/2/开心一_000_125.png new file mode 100644 index 0000000..6096158 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/2/开心一_000_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/2/开心一_001_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/2/开心一_001_125.png new file mode 100644 index 0000000..2a5a822 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/2/开心一_001_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/2/开心一_002_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/2/开心一_002_125.png new file mode 100644 index 0000000..006d3a9 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/2/开心一_002_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/2/开心一_003_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/2/开心一_003_125.png new file mode 100644 index 0000000..ef90732 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/2/开心一_003_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/2/开心一_004_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/2/开心一_004_125.png new file mode 100644 index 0000000..ed79945 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/2/开心一_004_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/2/开心一_005_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/2/开心一_005_125.png new file mode 100644 index 0000000..3767d12 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/2/开心一_005_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/2/开心一_006_500.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/2/开心一_006_500.png new file mode 100644 index 0000000..14ea087 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/2/开心一_006_500.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/2/开心一_007_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/2/开心一_007_125.png new file mode 100644 index 0000000..ed79945 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/2/开心一_007_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/2/开心一_008_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/2/开心一_008_125.png new file mode 100644 index 0000000..d5ac4c7 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/2/开心一_008_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/2/开心一_009_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/2/开心一_009_125.png new file mode 100644 index 0000000..f3f7161 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/2/开心一_009_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/2/开心一_010_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/2/开心一_010_125.png new file mode 100644 index 0000000..fe55925 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/2/开心一_010_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/2/开心一_011_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/2/开心一_011_125.png new file mode 100644 index 0000000..f635eb4 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/2/开心一_011_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/2/开心一_012_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/2/开心一_012_125.png new file mode 100644 index 0000000..fe55925 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/2/开心一_012_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/2/开心一_013_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/2/开心一_013_125.png new file mode 100644 index 0000000..f635eb4 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/2/开心一_013_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/2/开心一_014_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/2/开心一_014_125.png new file mode 100644 index 0000000..fe55925 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/2/开心一_014_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/2/开心一_015_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/2/开心一_015_125.png new file mode 100644 index 0000000..a642793 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/2/开心一_015_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/2/开心一_016_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/2/开心一_016_125.png new file mode 100644 index 0000000..22ca8b6 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/2/开心一_016_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/2/开心一_017_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/2/开心一_017_125.png new file mode 100644 index 0000000..006d3a9 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/2/开心一_017_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/2/开心一_018_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/2/开心一_018_125.png new file mode 100644 index 0000000..2a5a822 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/2/开心一_018_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/2/开心二_019_250.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/2/开心二_019_250.png new file mode 100644 index 0000000..6096158 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/2/开心二_019_250.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/2/开心二_020_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/2/开心二_020_125.png new file mode 100644 index 0000000..60048f0 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/2/开心二_020_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/2/开心二_021_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/2/开心二_021_125.png new file mode 100644 index 0000000..c5c37fa Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/2/开心二_021_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/2/开心二_022_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/2/开心二_022_125.png new file mode 100644 index 0000000..626f9f1 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/2/开心二_022_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/2/开心二_023_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/2/开心二_023_125.png new file mode 100644 index 0000000..8452725 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/2/开心二_023_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/2/开心二_024_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/2/开心二_024_125.png new file mode 100644 index 0000000..c91f5cf Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/2/开心二_024_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/2/开心二_025_500.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/2/开心二_025_500.png new file mode 100644 index 0000000..33dcd0f Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/2/开心二_025_500.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/2/开心二_026_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/2/开心二_026_125.png new file mode 100644 index 0000000..ac3034c Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/2/开心二_026_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/2/开心二_027_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/2/开心二_027_125.png new file mode 100644 index 0000000..5ac80d8 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/2/开心二_027_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/2/开心二_028_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/2/开心二_028_125.png new file mode 100644 index 0000000..ac3034c Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/2/开心二_028_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/2/开心二_029_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/2/开心二_029_125.png new file mode 100644 index 0000000..5ac80d8 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/2/开心二_029_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/2/开心二_030_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/2/开心二_030_125.png new file mode 100644 index 0000000..011adc5 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/2/开心二_030_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/2/开心二_031_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/2/开心二_031_125.png new file mode 100644 index 0000000..5ac80d8 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/2/开心二_031_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/2/开心二_032_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/2/开心二_032_125.png new file mode 100644 index 0000000..011adc5 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/2/开心二_032_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/2/开心二_033_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/2/开心二_033_125.png new file mode 100644 index 0000000..5ac80d8 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/2/开心二_033_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/2/开心二_034_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/2/开心二_034_125.png new file mode 100644 index 0000000..6f8847b Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/2/开心二_034_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/2/开心二_035_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/2/开心二_035_125.png new file mode 100644 index 0000000..35da93e Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/2/开心二_035_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/2/开心二_036_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/2/开心二_036_125.png new file mode 100644 index 0000000..c5c37fa Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/2/开心二_036_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/2/开心二_037_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/2/开心二_037_125.png new file mode 100644 index 0000000..60048f0 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/2/开心二_037_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/2/开心二_038_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/2/开心二_038_125.png new file mode 100644 index 0000000..6096158 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/2/开心二_038_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/3/开心三_000_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/3/开心三_000_125.png new file mode 100644 index 0000000..6096158 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/3/开心三_000_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/3/开心三_001_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/3/开心三_001_125.png new file mode 100644 index 0000000..60048f0 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/3/开心三_001_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/3/开心三_002_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/3/开心三_002_125.png new file mode 100644 index 0000000..c5c37fa Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/3/开心三_002_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/3/开心三_003_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/3/开心三_003_125.png new file mode 100644 index 0000000..626f9f1 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/3/开心三_003_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/3/开心三_004_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/3/开心三_004_125.png new file mode 100644 index 0000000..8452725 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/3/开心三_004_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/3/开心三_005_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/3/开心三_005_125.png new file mode 100644 index 0000000..c91f5cf Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/3/开心三_005_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/3/开心三_006_500.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/3/开心三_006_500.png new file mode 100644 index 0000000..33dcd0f Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/3/开心三_006_500.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/3/开心三_007_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/3/开心三_007_125.png new file mode 100644 index 0000000..ac3034c Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/3/开心三_007_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/3/开心三_008_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/3/开心三_008_125.png new file mode 100644 index 0000000..5ac80d8 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/3/开心三_008_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/3/开心三_009_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/3/开心三_009_125.png new file mode 100644 index 0000000..ac3034c Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/3/开心三_009_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/3/开心三_010_500.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/3/开心三_010_500.png new file mode 100644 index 0000000..5ac80d8 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/3/开心三_010_500.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/3/开心三_011_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/3/开心三_011_125.png new file mode 100644 index 0000000..6f8847b Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/3/开心三_011_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/3/开心三_012_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/3/开心三_012_125.png new file mode 100644 index 0000000..011adc5 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/3/开心三_012_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/3/开心三_013_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/3/开心三_013_125.png new file mode 100644 index 0000000..35da93e Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/3/开心三_013_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/3/开心三_014_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/3/开心三_014_125.png new file mode 100644 index 0000000..c5c37fa Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/3/开心三_014_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/3/开心三_015_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/3/开心三_015_125.png new file mode 100644 index 0000000..60048f0 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/3/开心三_015_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/3/开心三_016_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/3/开心三_016_125.png new file mode 100644 index 0000000..6096158 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Happy/3/开心三_016_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Nomal/1/普通一_000_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Nomal/1/普通一_000_125.png new file mode 100644 index 0000000..191793f Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Nomal/1/普通一_000_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Nomal/1/普通一_001_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Nomal/1/普通一_001_125.png new file mode 100644 index 0000000..b6cdf09 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Nomal/1/普通一_001_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Nomal/1/普通一_002_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Nomal/1/普通一_002_125.png new file mode 100644 index 0000000..ceff28c Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Nomal/1/普通一_002_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Nomal/1/普通一_003_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Nomal/1/普通一_003_125.png new file mode 100644 index 0000000..626f9f1 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Nomal/1/普通一_003_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Nomal/1/普通一_004_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Nomal/1/普通一_004_125.png new file mode 100644 index 0000000..53161a9 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Nomal/1/普通一_004_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Nomal/1/普通一_005_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Nomal/1/普通一_005_125.png new file mode 100644 index 0000000..2d88727 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Nomal/1/普通一_005_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Nomal/1/普通一_006_500.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Nomal/1/普通一_006_500.png new file mode 100644 index 0000000..0936c80 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Nomal/1/普通一_006_500.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Nomal/1/普通一_007_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Nomal/1/普通一_007_125.png new file mode 100644 index 0000000..2d88727 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Nomal/1/普通一_007_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Nomal/1/普通一_008_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Nomal/1/普通一_008_125.png new file mode 100644 index 0000000..626f9f1 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Nomal/1/普通一_008_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Nomal/1/普通一_009_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Nomal/1/普通一_009_125.png new file mode 100644 index 0000000..53161a9 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Nomal/1/普通一_009_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Nomal/1/普通一_010_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Nomal/1/普通一_010_125.png new file mode 100644 index 0000000..2d88727 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Nomal/1/普通一_010_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Nomal/1/普通一_011_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Nomal/1/普通一_011_125.png new file mode 100644 index 0000000..de64ca2 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Nomal/1/普通一_011_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Nomal/1/普通一_012_500.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Nomal/1/普通一_012_500.png new file mode 100644 index 0000000..0936c80 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Nomal/1/普通一_012_500.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Nomal/1/普通一_013_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Nomal/1/普通一_013_125.png new file mode 100644 index 0000000..626f9f1 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Nomal/1/普通一_013_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Nomal/1/普通一_014_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Nomal/1/普通一_014_125.png new file mode 100644 index 0000000..ceff28c Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Nomal/1/普通一_014_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Nomal/1/普通一_015_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Nomal/1/普通一_015_125.png new file mode 100644 index 0000000..b6cdf09 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Nomal/1/普通一_015_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Nomal/1/普通一_016_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Nomal/1/普通一_016_125.png new file mode 100644 index 0000000..191793f Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Nomal/1/普通一_016_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Nomal/2/普通二_000_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Nomal/2/普通二_000_125.png new file mode 100644 index 0000000..191793f Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Nomal/2/普通二_000_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Nomal/2/普通二_001_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Nomal/2/普通二_001_125.png new file mode 100644 index 0000000..b6cdf09 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Nomal/2/普通二_001_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Nomal/2/普通二_002_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Nomal/2/普通二_002_125.png new file mode 100644 index 0000000..ceff28c Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Nomal/2/普通二_002_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Nomal/2/普通二_003_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Nomal/2/普通二_003_125.png new file mode 100644 index 0000000..626f9f1 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Nomal/2/普通二_003_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Nomal/2/普通二_004_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Nomal/2/普通二_004_125.png new file mode 100644 index 0000000..53161a9 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Nomal/2/普通二_004_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Nomal/2/普通二_005_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Nomal/2/普通二_005_125.png new file mode 100644 index 0000000..2d88727 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Nomal/2/普通二_005_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Nomal/2/普通二_006_500.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Nomal/2/普通二_006_500.png new file mode 100644 index 0000000..0936c80 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Nomal/2/普通二_006_500.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Nomal/2/普通二_007_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Nomal/2/普通二_007_125.png new file mode 100644 index 0000000..2d88727 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Nomal/2/普通二_007_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Nomal/2/普通二_008_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Nomal/2/普通二_008_125.png new file mode 100644 index 0000000..626f9f1 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Nomal/2/普通二_008_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Nomal/2/普通二_009_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Nomal/2/普通二_009_125.png new file mode 100644 index 0000000..53161a9 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Nomal/2/普通二_009_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Nomal/2/普通二_010_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Nomal/2/普通二_010_125.png new file mode 100644 index 0000000..2d88727 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Nomal/2/普通二_010_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Nomal/2/普通二_011_625.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Nomal/2/普通二_011_625.png new file mode 100644 index 0000000..0936c80 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Nomal/2/普通二_011_625.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Nomal/2/普通二_012_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Nomal/2/普通二_012_125.png new file mode 100644 index 0000000..626f9f1 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Nomal/2/普通二_012_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Nomal/2/普通二_013_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Nomal/2/普通二_013_125.png new file mode 100644 index 0000000..ceff28c Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Nomal/2/普通二_013_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Nomal/2/普通二_014_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Nomal/2/普通二_014_125.png new file mode 100644 index 0000000..b6cdf09 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Nomal/2/普通二_014_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Nomal/2/普通二_015_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Nomal/2/普通二_015_125.png new file mode 100644 index 0000000..191793f Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Nomal/2/普通二_015_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Nomal/3/普通三_000_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Nomal/3/普通三_000_125.png new file mode 100644 index 0000000..191793f Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Nomal/3/普通三_000_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Nomal/3/普通三_001_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Nomal/3/普通三_001_125.png new file mode 100644 index 0000000..b6cdf09 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Nomal/3/普通三_001_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Nomal/3/普通三_002_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Nomal/3/普通三_002_125.png new file mode 100644 index 0000000..ceff28c Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Nomal/3/普通三_002_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Nomal/3/普通三_003_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Nomal/3/普通三_003_125.png new file mode 100644 index 0000000..aae47d4 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Nomal/3/普通三_003_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Nomal/3/普通三_004_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Nomal/3/普通三_004_125.png new file mode 100644 index 0000000..ca97506 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Nomal/3/普通三_004_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Nomal/3/普通三_005_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Nomal/3/普通三_005_125.png new file mode 100644 index 0000000..695b802 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Nomal/3/普通三_005_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Nomal/3/普通三_006_500.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Nomal/3/普通三_006_500.png new file mode 100644 index 0000000..de64ca2 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Nomal/3/普通三_006_500.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Nomal/3/普通三_007_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Nomal/3/普通三_007_125.png new file mode 100644 index 0000000..695b802 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Nomal/3/普通三_007_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Nomal/3/普通三_008_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Nomal/3/普通三_008_125.png new file mode 100644 index 0000000..aae47d4 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Nomal/3/普通三_008_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Nomal/3/普通三_009_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Nomal/3/普通三_009_125.png new file mode 100644 index 0000000..ca97506 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Nomal/3/普通三_009_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Nomal/3/普通三_010_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Nomal/3/普通三_010_125.png new file mode 100644 index 0000000..695b802 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Nomal/3/普通三_010_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Nomal/3/普通三_011_625.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Nomal/3/普通三_011_625.png new file mode 100644 index 0000000..de64ca2 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Nomal/3/普通三_011_625.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Nomal/3/普通三_012_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Nomal/3/普通三_012_125.png new file mode 100644 index 0000000..626f9f1 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Nomal/3/普通三_012_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Nomal/3/普通三_013_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Nomal/3/普通三_013_125.png new file mode 100644 index 0000000..ceff28c Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Nomal/3/普通三_013_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Nomal/3/普通三_014_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Nomal/3/普通三_014_125.png new file mode 100644 index 0000000..b6cdf09 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Nomal/3/普通三_014_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Nomal/3/普通三_015_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Nomal/3/普通三_015_125.png new file mode 100644 index 0000000..191793f Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/Nomal/3/普通三_015_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/PoorCondition/1/不开心一_000_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/PoorCondition/1/不开心一_000_125.png new file mode 100644 index 0000000..81a694a Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/PoorCondition/1/不开心一_000_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/PoorCondition/1/不开心一_001_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/PoorCondition/1/不开心一_001_125.png new file mode 100644 index 0000000..3a867f7 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/PoorCondition/1/不开心一_001_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/PoorCondition/1/不开心一_002_250.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/PoorCondition/1/不开心一_002_250.png new file mode 100644 index 0000000..de532a8 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/PoorCondition/1/不开心一_002_250.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/PoorCondition/1/不开心一_003_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/PoorCondition/1/不开心一_003_125.png new file mode 100644 index 0000000..0e320ea Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/PoorCondition/1/不开心一_003_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/PoorCondition/1/不开心一_004_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/PoorCondition/1/不开心一_004_125.png new file mode 100644 index 0000000..51ab9b4 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/PoorCondition/1/不开心一_004_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/PoorCondition/1/不开心一_005_250.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/PoorCondition/1/不开心一_005_250.png new file mode 100644 index 0000000..0e320ea Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/PoorCondition/1/不开心一_005_250.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/PoorCondition/1/不开心一_006_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/PoorCondition/1/不开心一_006_125.png new file mode 100644 index 0000000..56ea9d8 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/PoorCondition/1/不开心一_006_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/PoorCondition/1/不开心一_007_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/PoorCondition/1/不开心一_007_125.png new file mode 100644 index 0000000..28ff7c8 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/PoorCondition/1/不开心一_007_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/PoorCondition/1/不开心一_008_375.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/PoorCondition/1/不开心一_008_375.png new file mode 100644 index 0000000..e6897c8 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/PoorCondition/1/不开心一_008_375.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/PoorCondition/1/不开心一_009_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/PoorCondition/1/不开心一_009_125.png new file mode 100644 index 0000000..28ff7c8 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/PoorCondition/1/不开心一_009_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/PoorCondition/1/不开心一_010_500.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/PoorCondition/1/不开心一_010_500.png new file mode 100644 index 0000000..56ea9d8 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/PoorCondition/1/不开心一_010_500.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/PoorCondition/1/不开心一_011_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/PoorCondition/1/不开心一_011_125.png new file mode 100644 index 0000000..dfe715d Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/PoorCondition/1/不开心一_011_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/PoorCondition/1/不开心一_012_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/PoorCondition/1/不开心一_012_125.png new file mode 100644 index 0000000..0e320ea Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/PoorCondition/1/不开心一_012_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/PoorCondition/1/不开心一_013_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/PoorCondition/1/不开心一_013_125.png new file mode 100644 index 0000000..de532a8 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/PoorCondition/1/不开心一_013_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/PoorCondition/1/不开心一_014_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/PoorCondition/1/不开心一_014_125.png new file mode 100644 index 0000000..3a867f7 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/PoorCondition/1/不开心一_014_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/PoorCondition/1/不开心一_015_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/PoorCondition/1/不开心一_015_125.png new file mode 100644 index 0000000..81a694a Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/PoorCondition/1/不开心一_015_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/PoorCondition/2/不开心二_000_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/PoorCondition/2/不开心二_000_125.png new file mode 100644 index 0000000..81a694a Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/PoorCondition/2/不开心二_000_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/PoorCondition/2/不开心二_001_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/PoorCondition/2/不开心二_001_125.png new file mode 100644 index 0000000..3a867f7 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/PoorCondition/2/不开心二_001_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/PoorCondition/2/不开心二_002_250.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/PoorCondition/2/不开心二_002_250.png new file mode 100644 index 0000000..de532a8 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/PoorCondition/2/不开心二_002_250.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/PoorCondition/2/不开心二_003_500.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/PoorCondition/2/不开心二_003_500.png new file mode 100644 index 0000000..0e320ea Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/PoorCondition/2/不开心二_003_500.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/PoorCondition/2/不开心二_004_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/PoorCondition/2/不开心二_004_125.png new file mode 100644 index 0000000..56ea9d8 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/PoorCondition/2/不开心二_004_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/PoorCondition/2/不开心二_005_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/PoorCondition/2/不开心二_005_125.png new file mode 100644 index 0000000..28ff7c8 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/PoorCondition/2/不开心二_005_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/PoorCondition/2/不开心二_006_375.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/PoorCondition/2/不开心二_006_375.png new file mode 100644 index 0000000..e6897c8 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/PoorCondition/2/不开心二_006_375.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/PoorCondition/2/不开心二_007_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/PoorCondition/2/不开心二_007_125.png new file mode 100644 index 0000000..28ff7c8 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/PoorCondition/2/不开心二_007_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/PoorCondition/2/不开心二_008_625.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/PoorCondition/2/不开心二_008_625.png new file mode 100644 index 0000000..56ea9d8 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/PoorCondition/2/不开心二_008_625.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/PoorCondition/2/不开心二_009_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/PoorCondition/2/不开心二_009_125.png new file mode 100644 index 0000000..0e320ea Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/PoorCondition/2/不开心二_009_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/PoorCondition/2/不开心二_010_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/PoorCondition/2/不开心二_010_125.png new file mode 100644 index 0000000..de532a8 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/PoorCondition/2/不开心二_010_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/PoorCondition/2/不开心二_011_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/PoorCondition/2/不开心二_011_125.png new file mode 100644 index 0000000..3a867f7 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/PoorCondition/2/不开心二_011_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/PoorCondition/2/不开心二_012_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/PoorCondition/2/不开心二_012_125.png new file mode 100644 index 0000000..81a694a Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/PoorCondition/2/不开心二_012_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/PoorCondition/3/不开心三_000_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/PoorCondition/3/不开心三_000_125.png new file mode 100644 index 0000000..81a694a Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/PoorCondition/3/不开心三_000_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/PoorCondition/3/不开心三_001_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/PoorCondition/3/不开心三_001_125.png new file mode 100644 index 0000000..3a867f7 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/PoorCondition/3/不开心三_001_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/PoorCondition/3/不开心三_002_250.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/PoorCondition/3/不开心三_002_250.png new file mode 100644 index 0000000..de532a8 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/PoorCondition/3/不开心三_002_250.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/PoorCondition/3/不开心三_003_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/PoorCondition/3/不开心三_003_125.png new file mode 100644 index 0000000..0e320ea Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/PoorCondition/3/不开心三_003_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/PoorCondition/3/不开心三_004_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/PoorCondition/3/不开心三_004_125.png new file mode 100644 index 0000000..fbee9ee Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/PoorCondition/3/不开心三_004_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/PoorCondition/3/不开心三_005_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/PoorCondition/3/不开心三_005_125.png new file mode 100644 index 0000000..d31ae9c Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/PoorCondition/3/不开心三_005_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/PoorCondition/3/不开心三_006_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/PoorCondition/3/不开心三_006_125.png new file mode 100644 index 0000000..fbee9ee Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/PoorCondition/3/不开心三_006_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/PoorCondition/3/不开心三_007_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/PoorCondition/3/不开心三_007_125.png new file mode 100644 index 0000000..56ea9d8 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/PoorCondition/3/不开心三_007_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/PoorCondition/3/不开心三_008_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/PoorCondition/3/不开心三_008_125.png new file mode 100644 index 0000000..28ff7c8 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/PoorCondition/3/不开心三_008_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/PoorCondition/3/不开心三_009_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/PoorCondition/3/不开心三_009_125.png new file mode 100644 index 0000000..27979a7 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/PoorCondition/3/不开心三_009_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/PoorCondition/3/不开心三_010_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/PoorCondition/3/不开心三_010_125.png new file mode 100644 index 0000000..f82fe6d Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/PoorCondition/3/不开心三_010_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/PoorCondition/3/不开心三_011_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/PoorCondition/3/不开心三_011_125.png new file mode 100644 index 0000000..27979a7 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/PoorCondition/3/不开心三_011_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/PoorCondition/3/不开心三_012_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/PoorCondition/3/不开心三_012_125.png new file mode 100644 index 0000000..28ff7c8 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/PoorCondition/3/不开心三_012_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/PoorCondition/3/不开心三_013_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/PoorCondition/3/不开心三_013_125.png new file mode 100644 index 0000000..56ea9d8 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/PoorCondition/3/不开心三_013_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/PoorCondition/3/不开心三_014_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/PoorCondition/3/不开心三_014_125.png new file mode 100644 index 0000000..2201456 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/PoorCondition/3/不开心三_014_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/PoorCondition/3/不开心三_015_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/PoorCondition/3/不开心三_015_125.png new file mode 100644 index 0000000..fa9d9a7 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/PoorCondition/3/不开心三_015_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/PoorCondition/3/不开心三_016_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/PoorCondition/3/不开心三_016_125.png new file mode 100644 index 0000000..2201456 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/PoorCondition/3/不开心三_016_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/PoorCondition/3/不开心三_017_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/PoorCondition/3/不开心三_017_125.png new file mode 100644 index 0000000..56ea9d8 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/PoorCondition/3/不开心三_017_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/PoorCondition/3/不开心三_018_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/PoorCondition/3/不开心三_018_125.png new file mode 100644 index 0000000..0e320ea Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/PoorCondition/3/不开心三_018_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/PoorCondition/3/不开心三_019_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/PoorCondition/3/不开心三_019_125.png new file mode 100644 index 0000000..de532a8 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/PoorCondition/3/不开心三_019_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/PoorCondition/3/不开心三_020_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/PoorCondition/3/不开心三_020_125.png new file mode 100644 index 0000000..3a867f7 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/PoorCondition/3/不开心三_020_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/PoorCondition/3/不开心三_021_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/PoorCondition/3/不开心三_021_125.png new file mode 100644 index 0000000..81a694a Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/IDEL/Meow/PoorCondition/3/不开心三_021_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/LevelUP/Happy/开心升级_000_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/LevelUP/Happy/开心升级_000_125.png new file mode 100644 index 0000000..d88c643 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/LevelUP/Happy/开心升级_000_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/LevelUP/Happy/开心升级_001_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/LevelUP/Happy/开心升级_001_125.png new file mode 100644 index 0000000..9b66668 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/LevelUP/Happy/开心升级_001_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/LevelUP/Happy/开心升级_002_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/LevelUP/Happy/开心升级_002_125.png new file mode 100644 index 0000000..57e415d Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/LevelUP/Happy/开心升级_002_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/LevelUP/Happy/开心升级_003_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/LevelUP/Happy/开心升级_003_125.png new file mode 100644 index 0000000..d0fb188 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/LevelUP/Happy/开心升级_003_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/LevelUP/Happy/开心升级_004_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/LevelUP/Happy/开心升级_004_125.png new file mode 100644 index 0000000..266afb0 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/LevelUP/Happy/开心升级_004_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/LevelUP/Happy/开心升级_005_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/LevelUP/Happy/开心升级_005_125.png new file mode 100644 index 0000000..82651de Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/LevelUP/Happy/开心升级_005_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/LevelUP/Happy/开心升级_006_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/LevelUP/Happy/开心升级_006_125.png new file mode 100644 index 0000000..88cfd40 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/LevelUP/Happy/开心升级_006_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/LevelUP/Happy/开心升级_007_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/LevelUP/Happy/开心升级_007_125.png new file mode 100644 index 0000000..82651de Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/LevelUP/Happy/开心升级_007_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/LevelUP/Happy/开心升级_008_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/LevelUP/Happy/开心升级_008_125.png new file mode 100644 index 0000000..266afb0 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/LevelUP/Happy/开心升级_008_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/LevelUP/Happy/开心升级_009_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/LevelUP/Happy/开心升级_009_125.png new file mode 100644 index 0000000..82651de Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/LevelUP/Happy/开心升级_009_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/LevelUP/Happy/开心升级_010_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/LevelUP/Happy/开心升级_010_125.png new file mode 100644 index 0000000..88cfd40 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/LevelUP/Happy/开心升级_010_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/LevelUP/Happy/开心升级_011_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/LevelUP/Happy/开心升级_011_125.png new file mode 100644 index 0000000..2d86abd Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/LevelUP/Happy/开心升级_011_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/LevelUP/Happy/开心升级_012_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/LevelUP/Happy/开心升级_012_125.png new file mode 100644 index 0000000..6fed9dc Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/LevelUP/Happy/开心升级_012_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/LevelUP/Happy/开心升级_013_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/LevelUP/Happy/开心升级_013_125.png new file mode 100644 index 0000000..92e72c9 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/LevelUP/Happy/开心升级_013_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/LevelUP/Happy/开心升级_014_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/LevelUP/Happy/开心升级_014_125.png new file mode 100644 index 0000000..ba00651 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/LevelUP/Happy/开心升级_014_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/LevelUP/Happy/开心升级_015_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/LevelUP/Happy/开心升级_015_125.png new file mode 100644 index 0000000..7d508fd Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/LevelUP/Happy/开心升级_015_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/LevelUP/Happy/开心升级_016_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/LevelUP/Happy/开心升级_016_125.png new file mode 100644 index 0000000..053c522 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/LevelUP/Happy/开心升级_016_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/LevelUP/Happy/开心升级_017_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/LevelUP/Happy/开心升级_017_125.png new file mode 100644 index 0000000..1e5cb3a Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/LevelUP/Happy/开心升级_017_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/LevelUP/Happy/开心升级_018_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/LevelUP/Happy/开心升级_018_125.png new file mode 100644 index 0000000..13c28a7 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/LevelUP/Happy/开心升级_018_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/LevelUP/Happy/开心升级_019_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/LevelUP/Happy/开心升级_019_125.png new file mode 100644 index 0000000..6c154d0 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/LevelUP/Happy/开心升级_019_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/LevelUP/Happy/开心升级_020_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/LevelUP/Happy/开心升级_020_125.png new file mode 100644 index 0000000..a57bdbd Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/LevelUP/Happy/开心升级_020_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/LevelUP/Happy/开心升级_021_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/LevelUP/Happy/开心升级_021_125.png new file mode 100644 index 0000000..29ab6cd Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/LevelUP/Happy/开心升级_021_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/LevelUP/Happy/开心升级_022_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/LevelUP/Happy/开心升级_022_125.png new file mode 100644 index 0000000..d82f079 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/LevelUP/Happy/开心升级_022_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/LevelUP/Happy/开心升级_023_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/LevelUP/Happy/开心升级_023_125.png new file mode 100644 index 0000000..476287b Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/LevelUP/Happy/开心升级_023_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/LevelUP/Happy/开心升级_024_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/LevelUP/Happy/开心升级_024_125.png new file mode 100644 index 0000000..523728a Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/LevelUP/Happy/开心升级_024_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/LevelUP/Happy/开心升级_025_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/LevelUP/Happy/开心升级_025_125.png new file mode 100644 index 0000000..764fcb6 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/LevelUP/Happy/开心升级_025_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/LevelUP/Happy/开心升级_026_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/LevelUP/Happy/开心升级_026_125.png new file mode 100644 index 0000000..ab68593 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/LevelUP/Happy/开心升级_026_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/LevelUP/Happy/开心升级_027_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/LevelUP/Happy/开心升级_027_125.png new file mode 100644 index 0000000..b100243 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/LevelUP/Happy/开心升级_027_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/LevelUP/Happy/开心升级_028_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/LevelUP/Happy/开心升级_028_125.png new file mode 100644 index 0000000..1439dde Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/LevelUP/Happy/开心升级_028_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/LevelUP/Nomal/普通升级_000_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/LevelUP/Nomal/普通升级_000_125.png new file mode 100644 index 0000000..70f1c61 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/LevelUP/Nomal/普通升级_000_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/LevelUP/Nomal/普通升级_001_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/LevelUP/Nomal/普通升级_001_125.png new file mode 100644 index 0000000..9b66668 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/LevelUP/Nomal/普通升级_001_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/LevelUP/Nomal/普通升级_002_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/LevelUP/Nomal/普通升级_002_125.png new file mode 100644 index 0000000..7d2bf91 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/LevelUP/Nomal/普通升级_002_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/LevelUP/Nomal/普通升级_003_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/LevelUP/Nomal/普通升级_003_125.png new file mode 100644 index 0000000..7883023 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/LevelUP/Nomal/普通升级_003_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/LevelUP/Nomal/普通升级_004_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/LevelUP/Nomal/普通升级_004_125.png new file mode 100644 index 0000000..ab1832e Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/LevelUP/Nomal/普通升级_004_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/LevelUP/Nomal/普通升级_005_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/LevelUP/Nomal/普通升级_005_125.png new file mode 100644 index 0000000..188c483 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/LevelUP/Nomal/普通升级_005_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/LevelUP/Nomal/普通升级_006_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/LevelUP/Nomal/普通升级_006_125.png new file mode 100644 index 0000000..25fd80a Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/LevelUP/Nomal/普通升级_006_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/LevelUP/Nomal/普通升级_007_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/LevelUP/Nomal/普通升级_007_125.png new file mode 100644 index 0000000..188c483 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/LevelUP/Nomal/普通升级_007_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/LevelUP/Nomal/普通升级_008_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/LevelUP/Nomal/普通升级_008_125.png new file mode 100644 index 0000000..ab1832e Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/LevelUP/Nomal/普通升级_008_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/LevelUP/Nomal/普通升级_009_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/LevelUP/Nomal/普通升级_009_125.png new file mode 100644 index 0000000..188c483 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/LevelUP/Nomal/普通升级_009_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/LevelUP/Nomal/普通升级_010_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/LevelUP/Nomal/普通升级_010_125.png new file mode 100644 index 0000000..25fd80a Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/LevelUP/Nomal/普通升级_010_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/LevelUP/Nomal/普通升级_011_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/LevelUP/Nomal/普通升级_011_125.png new file mode 100644 index 0000000..4905fbe Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/LevelUP/Nomal/普通升级_011_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/LevelUP/Nomal/普通升级_012_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/LevelUP/Nomal/普通升级_012_125.png new file mode 100644 index 0000000..4e28317 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/LevelUP/Nomal/普通升级_012_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/LevelUP/Nomal/普通升级_013_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/LevelUP/Nomal/普通升级_013_125.png new file mode 100644 index 0000000..1322086 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/LevelUP/Nomal/普通升级_013_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/LevelUP/Nomal/普通升级_014_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/LevelUP/Nomal/普通升级_014_125.png new file mode 100644 index 0000000..a503d5e Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/LevelUP/Nomal/普通升级_014_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/LevelUP/Nomal/普通升级_015_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/LevelUP/Nomal/普通升级_015_125.png new file mode 100644 index 0000000..09440c8 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/LevelUP/Nomal/普通升级_015_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/LevelUP/Nomal/普通升级_016_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/LevelUP/Nomal/普通升级_016_125.png new file mode 100644 index 0000000..64c602e Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/LevelUP/Nomal/普通升级_016_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/LevelUP/Nomal/普通升级_017_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/LevelUP/Nomal/普通升级_017_125.png new file mode 100644 index 0000000..cb25f14 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/LevelUP/Nomal/普通升级_017_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/LevelUP/Nomal/普通升级_018_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/LevelUP/Nomal/普通升级_018_125.png new file mode 100644 index 0000000..d26df32 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/LevelUP/Nomal/普通升级_018_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/LevelUP/Nomal/普通升级_019_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/LevelUP/Nomal/普通升级_019_125.png new file mode 100644 index 0000000..346b4da Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/LevelUP/Nomal/普通升级_019_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/LevelUP/Nomal/普通升级_020_500.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/LevelUP/Nomal/普通升级_020_500.png new file mode 100644 index 0000000..e71fcf0 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/LevelUP/Nomal/普通升级_020_500.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/LevelUP/Nomal/普通升级_021_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/LevelUP/Nomal/普通升级_021_125.png new file mode 100644 index 0000000..0943cfd Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/LevelUP/Nomal/普通升级_021_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/LevelUP/Nomal/普通升级_022_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/LevelUP/Nomal/普通升级_022_125.png new file mode 100644 index 0000000..62d1d66 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/LevelUP/Nomal/普通升级_022_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/LevelUP/Nomal/普通升级_023_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/LevelUP/Nomal/普通升级_023_125.png new file mode 100644 index 0000000..8c54434 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/LevelUP/Nomal/普通升级_023_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/LevelUP/Nomal/普通升级_024_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/LevelUP/Nomal/普通升级_024_125.png new file mode 100644 index 0000000..da4b0a1 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/LevelUP/Nomal/普通升级_024_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/LevelUP/Nomal/普通升级_025_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/LevelUP/Nomal/普通升级_025_125.png new file mode 100644 index 0000000..570c8cd Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/LevelUP/Nomal/普通升级_025_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/LevelUP/PoorCondition/不开心升级_000_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/LevelUP/PoorCondition/不开心升级_000_125.png new file mode 100644 index 0000000..cfacb6c Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/LevelUP/PoorCondition/不开心升级_000_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/LevelUP/PoorCondition/不开心升级_001_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/LevelUP/PoorCondition/不开心升级_001_125.png new file mode 100644 index 0000000..ca38975 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/LevelUP/PoorCondition/不开心升级_001_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/LevelUP/PoorCondition/不开心升级_002_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/LevelUP/PoorCondition/不开心升级_002_125.png new file mode 100644 index 0000000..ef67af8 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/LevelUP/PoorCondition/不开心升级_002_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/LevelUP/PoorCondition/不开心升级_003_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/LevelUP/PoorCondition/不开心升级_003_125.png new file mode 100644 index 0000000..fa5bac5 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/LevelUP/PoorCondition/不开心升级_003_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/LevelUP/PoorCondition/不开心升级_004_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/LevelUP/PoorCondition/不开心升级_004_125.png new file mode 100644 index 0000000..e32247e Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/LevelUP/PoorCondition/不开心升级_004_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/LevelUP/PoorCondition/不开心升级_005_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/LevelUP/PoorCondition/不开心升级_005_125.png new file mode 100644 index 0000000..c3aed78 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/LevelUP/PoorCondition/不开心升级_005_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/LevelUP/PoorCondition/不开心升级_006_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/LevelUP/PoorCondition/不开心升级_006_125.png new file mode 100644 index 0000000..50f08ae Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/LevelUP/PoorCondition/不开心升级_006_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/LevelUP/PoorCondition/不开心升级_007_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/LevelUP/PoorCondition/不开心升级_007_125.png new file mode 100644 index 0000000..25f48a3 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/LevelUP/PoorCondition/不开心升级_007_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/LevelUP/PoorCondition/不开心升级_008_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/LevelUP/PoorCondition/不开心升级_008_125.png new file mode 100644 index 0000000..e32247e Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/LevelUP/PoorCondition/不开心升级_008_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/LevelUP/PoorCondition/不开心升级_009_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/LevelUP/PoorCondition/不开心升级_009_125.png new file mode 100644 index 0000000..c3aed78 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/LevelUP/PoorCondition/不开心升级_009_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/LevelUP/PoorCondition/不开心升级_010_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/LevelUP/PoorCondition/不开心升级_010_125.png new file mode 100644 index 0000000..50f08ae Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/LevelUP/PoorCondition/不开心升级_010_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/LevelUP/PoorCondition/不开心升级_011_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/LevelUP/PoorCondition/不开心升级_011_125.png new file mode 100644 index 0000000..84c422c Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/LevelUP/PoorCondition/不开心升级_011_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/LevelUP/PoorCondition/不开心升级_012_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/LevelUP/PoorCondition/不开心升级_012_125.png new file mode 100644 index 0000000..279cc64 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/LevelUP/PoorCondition/不开心升级_012_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/LevelUP/PoorCondition/不开心升级_013_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/LevelUP/PoorCondition/不开心升级_013_125.png new file mode 100644 index 0000000..ce88599 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/LevelUP/PoorCondition/不开心升级_013_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/LevelUP/PoorCondition/不开心升级_014_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/LevelUP/PoorCondition/不开心升级_014_125.png new file mode 100644 index 0000000..eb57777 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/LevelUP/PoorCondition/不开心升级_014_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/LevelUP/PoorCondition/不开心升级_015_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/LevelUP/PoorCondition/不开心升级_015_125.png new file mode 100644 index 0000000..dea58ad Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/LevelUP/PoorCondition/不开心升级_015_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/LevelUP/PoorCondition/不开心升级_016_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/LevelUP/PoorCondition/不开心升级_016_125.png new file mode 100644 index 0000000..3675223 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/LevelUP/PoorCondition/不开心升级_016_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/LevelUP/PoorCondition/不开心升级_017_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/LevelUP/PoorCondition/不开心升级_017_125.png new file mode 100644 index 0000000..f240f1f Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/LevelUP/PoorCondition/不开心升级_017_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/LevelUP/PoorCondition/不开心升级_018_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/LevelUP/PoorCondition/不开心升级_018_125.png new file mode 100644 index 0000000..1b0c43e Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/LevelUP/PoorCondition/不开心升级_018_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/LevelUP/PoorCondition/不开心升级_019_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/LevelUP/PoorCondition/不开心升级_019_125.png new file mode 100644 index 0000000..9467cf8 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/LevelUP/PoorCondition/不开心升级_019_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/LevelUP/PoorCondition/不开心升级_020_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/LevelUP/PoorCondition/不开心升级_020_125.png new file mode 100644 index 0000000..db6b4ff Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/LevelUP/PoorCondition/不开心升级_020_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/LevelUP/PoorCondition/不开心升级_021_375.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/LevelUP/PoorCondition/不开心升级_021_375.png new file mode 100644 index 0000000..3282229 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/LevelUP/PoorCondition/不开心升级_021_375.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/LevelUP/PoorCondition/不开心升级_022_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/LevelUP/PoorCondition/不开心升级_022_125.png new file mode 100644 index 0000000..27d8dc9 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/LevelUP/PoorCondition/不开心升级_022_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/LevelUP/PoorCondition/不开心升级_023_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/LevelUP/PoorCondition/不开心升级_023_125.png new file mode 100644 index 0000000..04cf783 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/LevelUP/PoorCondition/不开心升级_023_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/LevelUP/PoorCondition/不开心升级_024_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/LevelUP/PoorCondition/不开心升级_024_125.png new file mode 100644 index 0000000..b271828 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/LevelUP/PoorCondition/不开心升级_024_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/LevelUP/PoorCondition/不开心升级_025_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/LevelUP/PoorCondition/不开心升级_025_125.png new file mode 100644 index 0000000..d94308d Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/LevelUP/PoorCondition/不开心升级_025_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/LevelUP/PoorCondition/不开心升级_026_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/LevelUP/PoorCondition/不开心升级_026_125.png new file mode 100644 index 0000000..917a846 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/LevelUP/PoorCondition/不开心升级_026_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/StartUP/Limit/Limit/礼物_000_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/StartUP/Limit/Limit/礼物_000_125.png new file mode 100644 index 0000000..f98151e Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/StartUP/Limit/Limit/礼物_000_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/StartUP/Limit/Limit/礼物_001_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/StartUP/Limit/Limit/礼物_001_125.png new file mode 100644 index 0000000..8bf73e2 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/StartUP/Limit/Limit/礼物_001_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/StartUP/Limit/Limit/礼物_002_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/StartUP/Limit/Limit/礼物_002_125.png new file mode 100644 index 0000000..2802a39 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/StartUP/Limit/Limit/礼物_002_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/StartUP/Limit/Limit/礼物_003_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/StartUP/Limit/Limit/礼物_003_125.png new file mode 100644 index 0000000..f54e361 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/StartUP/Limit/Limit/礼物_003_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/StartUP/Limit/Limit/礼物_004_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/StartUP/Limit/Limit/礼物_004_125.png new file mode 100644 index 0000000..e04cd54 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/StartUP/Limit/Limit/礼物_004_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/StartUP/Limit/Limit/礼物_005_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/StartUP/Limit/Limit/礼物_005_125.png new file mode 100644 index 0000000..2802a39 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/StartUP/Limit/Limit/礼物_005_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/StartUP/Limit/Limit/礼物_006_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/StartUP/Limit/Limit/礼物_006_125.png new file mode 100644 index 0000000..d1e3912 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/StartUP/Limit/Limit/礼物_006_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/StartUP/Limit/Limit/礼物_007_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/StartUP/Limit/Limit/礼物_007_125.png new file mode 100644 index 0000000..ca9b3b3 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/StartUP/Limit/Limit/礼物_007_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/StartUP/Limit/Limit/礼物_008_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/StartUP/Limit/Limit/礼物_008_125.png new file mode 100644 index 0000000..d3642ce Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/StartUP/Limit/Limit/礼物_008_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/StartUP/Limit/Limit/礼物_009_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/StartUP/Limit/Limit/礼物_009_125.png new file mode 100644 index 0000000..c778a3c Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/StartUP/Limit/Limit/礼物_009_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/StartUP/Limit/Limit/礼物_010_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/StartUP/Limit/Limit/礼物_010_125.png new file mode 100644 index 0000000..a9c394b Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/StartUP/Limit/Limit/礼物_010_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/StartUP/Limit/Limit/礼物_011_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/StartUP/Limit/Limit/礼物_011_125.png new file mode 100644 index 0000000..b4eb68e Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/StartUP/Limit/Limit/礼物_011_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/StartUP/Limit/Limit/礼物_012_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/StartUP/Limit/Limit/礼物_012_125.png new file mode 100644 index 0000000..b538e0d Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/StartUP/Limit/Limit/礼物_012_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/StartUP/Limit/Limit/礼物_013_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/StartUP/Limit/Limit/礼物_013_125.png new file mode 100644 index 0000000..b5dfa7f Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/StartUP/Limit/Limit/礼物_013_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/StartUP/Limit/Limit/礼物_014_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/StartUP/Limit/Limit/礼物_014_125.png new file mode 100644 index 0000000..5b49ffe Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/StartUP/Limit/Limit/礼物_014_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/StartUP/Limit/Limit/礼物_015_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/StartUP/Limit/Limit/礼物_015_125.png new file mode 100644 index 0000000..1b91812 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/StartUP/Limit/Limit/礼物_015_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/StartUP/Limit/Limit/礼物_016_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/StartUP/Limit/Limit/礼物_016_125.png new file mode 100644 index 0000000..8833210 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/StartUP/Limit/Limit/礼物_016_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/StartUP/Limit/Limit/礼物_017_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/StartUP/Limit/Limit/礼物_017_125.png new file mode 100644 index 0000000..38618f6 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/StartUP/Limit/Limit/礼物_017_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/StartUP/Limit/Limit/礼物_018_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/StartUP/Limit/Limit/礼物_018_125.png new file mode 100644 index 0000000..3716472 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/StartUP/Limit/Limit/礼物_018_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/StartUP/Limit/Limit/礼物_019_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/StartUP/Limit/Limit/礼物_019_125.png new file mode 100644 index 0000000..1931122 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/StartUP/Limit/Limit/礼物_019_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/StartUP/Limit/Limit/礼物_020_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/StartUP/Limit/Limit/礼物_020_125.png new file mode 100644 index 0000000..409f7ba Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/StartUP/Limit/Limit/礼物_020_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/StartUP/Limit/Limit/礼物_021_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/StartUP/Limit/Limit/礼物_021_125.png new file mode 100644 index 0000000..a93f95a Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/StartUP/Limit/Limit/礼物_021_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/StartUP/Limit/Limit/礼物_022_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/StartUP/Limit/Limit/礼物_022_125.png new file mode 100644 index 0000000..908b74c Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/StartUP/Limit/Limit/礼物_022_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/StartUP/Limit/info.lps b/VPet-Simulator.Windows/mod/0000_core/pet/vup/StartUP/Limit/info.lps new file mode 100644 index 0000000..e5a3207 --- /dev/null +++ b/VPet-Simulator.Windows/mod/0000_core/pet/vup/StartUP/Limit/info.lps @@ -0,0 +1,2 @@ +PNGAnimation#LimitStartUP:|path#Limit:|mode#happy:|graph#StartUP:| +PNGAnimation#LimitStartUP:|path#Limit:|mode#nomal:|graph#StartUP:|