diff --git a/VPet-Simulator.Core/Display/MainLogic.cs b/VPet-Simulator.Core/Display/MainLogic.cs
index 847aba5..226a1a7 100644
--- a/VPet-Simulator.Core/Display/MainLogic.cs
+++ b/VPet-Simulator.Core/Display/MainLogic.cs
@@ -38,12 +38,12 @@ namespace VPet_Simulator.Core
/// 说话
///
/// 说话内容
- public void Say(string text, GraphCore.Helper.SayType type = GraphCore.Helper.SayType.Shining)
+ public void Say(string text, GraphCore.Helper.SayType type = GraphCore.Helper.SayType.Shining, bool force = false)
{
Task.Run(() =>
{
OnSay?.Invoke(text);
- if (type != GraphCore.Helper.SayType.None && DisplayType == GraphCore.GraphType.Default)
+ if (force || type != GraphCore.Helper.SayType.None && DisplayType == GraphCore.GraphType.Default)
Display(GraphCore.Helper.Convert(type, GraphCore.Helper.AnimatType.A_Start), () =>
{
Dispatcher.Invoke(() => MsgBar.Show(Core.Save.Name, text, type));
diff --git a/VPet-Simulator.Core/Display/ToolBar.xaml.cs b/VPet-Simulator.Core/Display/ToolBar.xaml.cs
index 5ca3e85..b91f5ab 100644
--- a/VPet-Simulator.Core/Display/ToolBar.xaml.cs
+++ b/VPet-Simulator.Core/Display/ToolBar.xaml.cs
@@ -59,10 +59,22 @@ namespace VPet_Simulator.Core
pFeeling.Value = m.Core.Save.Feeling;
pStrengthFood.Value = m.Core.Save.StrengthFood;
pStrengthDrink.Value = m.Core.Save.StrengthDrink;
- tStrength.Text = $"{m.Core.Save.ChangeStrength:f1}/t";
- tFeeling.Text = $"{m.Core.Save.ChangeFeeling:f1}/t";
- tStrengthDrink.Text = $"{m.Core.Save.ChangeStrengthDrink:f1}/t";
- tStrengthFood.Text = $"{m.Core.Save.ChangeStrengthFood:f1}/t";
+ if (m.Core.Save.ChangeStrength < 1)
+ tStrength.Text = $"{m.Core.Save.ChangeStrength:f1}/t";
+ else
+ tStrength.Text = $"{m.Core.Save.ChangeStrength:f2}/t";
+ if (m.Core.Save.ChangeFeeling < 1)
+ tFeeling.Text = $"{m.Core.Save.ChangeFeeling:f1}/t";
+ else
+ tFeeling.Text = $"{m.Core.Save.ChangeFeeling:f2}/t";
+ if (m.Core.Save.ChangeStrengthDrink < 1)
+ tStrengthDrink.Text = $"{m.Core.Save.ChangeStrengthDrink:f1}/t";
+ else
+ tStrengthDrink.Text = $"{m.Core.Save.ChangeStrengthDrink:f2}/t";
+ if (m.Core.Save.ChangeStrengthFood < 1)
+ tStrengthFood.Text = $"{m.Core.Save.ChangeStrengthFood:f1}/t";
+ else
+ tStrengthFood.Text = $"{m.Core.Save.ChangeStrengthFood:f2}/t";
}
}
@@ -178,33 +190,33 @@ namespace VPet_Simulator.Core
private void PgbExperience_GeneratingPercentText(object sender, GeneratingPercentTextRoutedEventArgs e)
{
- e.Text = $"{e.Value} / {pExp.Maximum}";
+ e.Text = $"{e.Value:f2} / {pExp.Maximum:f0}";
}
private void PgbStrength_GeneratingPercentText(object sender, GeneratingPercentTextRoutedEventArgs e)
{
- e.Text = $"{e.Value} / 100";
+ e.Text = $"{e.Value:f2} / 100";
}
private void PgbSpirit_GeneratingPercentText(object sender, GeneratingPercentTextRoutedEventArgs e)
{
var progressBar = (ProgressBar)sender;
progressBar.Foreground = GetForeground(e.Value);
- e.Text = $"{e.Value} / 100";
+ e.Text = $"{e.Value:f2} / 100";
}
private void PgbHunger_GeneratingPercentText(object sender, GeneratingPercentTextRoutedEventArgs e)
{
var progressBar = (ProgressBar)sender;
progressBar.Foreground = GetForeground(e.Value);
- e.Text = $"{e.Value} / 100";
+ e.Text = $"{e.Value:f2} / 100";
}
private void PgbThirsty_GeneratingPercentText(object sender, GeneratingPercentTextRoutedEventArgs e)
{
var progressBar = (ProgressBar)sender;
progressBar.Foreground = GetForeground(e.Value);
- e.Text = $"{e.Value} / 100";
+ e.Text = $"{e.Value:f2} / 100";
//if (e.Value <= 20)
//{
// tHearth.Visibility = Visibility.Visible;
diff --git a/VPet-Simulator.Core/Display/WorkTimer.xaml.cs b/VPet-Simulator.Core/Display/WorkTimer.xaml.cs
index 657d338..165ae11 100644
--- a/VPet-Simulator.Core/Display/WorkTimer.xaml.cs
+++ b/VPet-Simulator.Core/Display/WorkTimer.xaml.cs
@@ -60,15 +60,18 @@ namespace VPet_Simulator.Core
{
case Main.WorkingState.Study:
m.Core.Save.Money += GetCount * 0.2;
- Stop(() => m.Say($"学习完成啦, 累计学会了 {(GetCount * 1.2):f2} EXP\n共计花费了{MaxTime}分钟"));
+ Stop(() => m.Say($"学习完成啦, 累计学会了 {(GetCount * 1.2):f2} 经验值\n共计花费了{MaxTime}分钟"
+ , GraphCore.Helper.SayType.Shining, true));
break;
case Main.WorkingState.WorkONE:
m.Core.Save.Money += GetCount * 0.15;
- Stop(() => m.Say($"{m.Core.Graph.GraphConfig.Str[(gstr)"work1"]}完成啦, 累计赚了 {GetCount * 1.15:f2} 金钱\n共计花费了{MaxTime}分钟"));
+ Stop(() => m.Say($"{m.Core.Graph.GraphConfig.Str[(gstr)"work1"]}完成啦, 累计赚了 {GetCount * 1.15:f2} 金钱\n共计花费了{MaxTime}分钟"
+ , GraphCore.Helper.SayType.Shining, true));
break;
case Main.WorkingState.WorkTWO:
m.Core.Save.Money += GetCount * 0.25;
- Stop(() => m.Say($"{m.Core.Graph.GraphConfig.Str[(gstr)"work2"]}完成啦, 累计赚了 {GetCount * 1.25:f2} 金钱\n共计花费了{MaxTime}分钟"));
+ Stop(() => m.Say($"{m.Core.Graph.GraphConfig.Str[(gstr)"work2"]}完成啦, 累计赚了 {GetCount * 1.25:f2} 金钱\n共计花费了{MaxTime}分钟"
+ , GraphCore.Helper.SayType.Shining, true));
break;
}
@@ -222,7 +225,10 @@ namespace VPet_Simulator.Core
m.Display(GraphCore.GraphType.WorkTWO_C_End, then ?? m.DisplayNomal);
break;
default:
- then?.Invoke();
+ if (then == null)
+ m.DisplayNomal();
+ else
+ then();
return;
}
}
diff --git a/VPet-Simulator.Windows.Interface/Food.cs b/VPet-Simulator.Windows.Interface/Food.cs
index a1e3eb5..dccc8b3 100644
--- a/VPet-Simulator.Windows.Interface/Food.cs
+++ b/VPet-Simulator.Windows.Interface/Food.cs
@@ -82,6 +82,7 @@ namespace VPet_Simulator.Windows.Interface
///
[Line(ignoreCase: true)]
public string Desc { get; set; }
+ private string desc = null;
///
/// 描述(ToBetterBuy)
///
@@ -89,8 +90,24 @@ namespace VPet_Simulator.Windows.Interface
{
get
{
- StringBuilder sb = new StringBuilder(Desc);
- return sb.ToString();
+ if(desc == null)
+ {
+ StringBuilder sb = new StringBuilder();
+ if (Exp != 0)
+ sb.Append("经验值:\t").Append(Exp > 0 ? "+" : "").Append(Exp.ToString("f2")).AppendLine();
+ if (StrengthFood != 0) sb.Append("饱腹度:\t").Append(StrengthFood > 0 ? "+" : "").Append(StrengthFood.ToString("f2")).Append("\t\t");
+ if (StrengthDrink != 0) sb.Append("口渴度:\t").Append(StrengthDrink > 0 ? "+" : "").Append(StrengthDrink.ToString("f2")).AppendLine();
+ if (Strength != 0) sb.Append("体力:\t").Append(Strength > 0 ? "+" : "").Append(Strength.ToString("f2")).Append("\t\t");
+ if (Feeling != 0)
+ sb.Append("心情:\t").Append(Feeling > 0 ? "+" : "").Append(Feeling.ToString("f2")).AppendLine();
+ if (Health != 0)
+ sb.Append("健康:\t").Append(Health > 0 ? "+" : "").Append(Health.ToString("f2")).Append("\t\t");
+ if (Likability != 0)
+ sb.Append("好感度:\t").Append(Likability > 0 ? "+" : "").Append(Likability.ToString("f2"));
+ sb.AppendLine().Append(Desc);
+ desc = sb.ToString();
+ }
+ return desc;
}
}
///
diff --git a/VPet-Simulator.Windows/WinDesign/winBetterBuy.xaml b/VPet-Simulator.Windows/WinDesign/winBetterBuy.xaml
index 901cdfb..0ca0dd1 100644
--- a/VPet-Simulator.Windows/WinDesign/winBetterBuy.xaml
+++ b/VPet-Simulator.Windows/WinDesign/winBetterBuy.xaml
@@ -104,7 +104,7 @@
-->
@@ -123,6 +123,7 @@
Foreground="{DynamicResource DARKPrimaryText}" Text="{Binding Name}" />
@@ -228,7 +229,7 @@
-
+
diff --git a/VPet-Simulator.Windows/WinDesign/winBetterBuy.xaml.cs b/VPet-Simulator.Windows/WinDesign/winBetterBuy.xaml.cs
index b7b3a17..2cb2804 100644
--- a/VPet-Simulator.Windows/WinDesign/winBetterBuy.xaml.cs
+++ b/VPet-Simulator.Windows/WinDesign/winBetterBuy.xaml.cs
@@ -142,7 +142,13 @@ namespace VPet_Simulator.Windows
// var item = repeatButton.DataContext as BetterBuyItem;
// item.Quantity = Math.Max(1, item.Quantity - 1);
//}
-
+ private void ScrollViewer_PreviewMouseWheel(object sender, MouseWheelEventArgs e)
+ {
+ var eventArg = new MouseWheelEventArgs(e.MouseDevice, e.Timestamp, e.Delta);
+ eventArg.RoutedEvent = UIElement.MouseWheelEvent;
+ eventArg.Source = sender;
+ PageDetail.RaiseEvent(eventArg);
+ }
private void BtnBuy_Click(object sender, RoutedEventArgs e)
{
diff --git a/VPet-Simulator.Windows/WinDesign/winGameSetting.xaml b/VPet-Simulator.Windows/WinDesign/winGameSetting.xaml
index ab86953..f03e328 100644
--- a/VPet-Simulator.Windows/WinDesign/winGameSetting.xaml
+++ b/VPet-Simulator.Windows/WinDesign/winGameSetting.xaml
@@ -99,7 +99,7 @@
CheckedBorderBrush="{DynamicResource Primary}" Background="Transparent" BoxWidth="35"
BoxHeight="18" ToggleSize="14" ToggleShadowColor="{x:Null}"
ToggleBrush="{DynamicResource PrimaryDark}" Content="退出位置"
- CheckedToggleBrush="{DynamicResource DARKPrimaryText}" ToolTip="该游戏随着开机启动该程序"
+ CheckedToggleBrush="{DynamicResource DARKPrimaryText}" ToolTip="游戏退出位置为下次桌宠启动出现的位置"
Unchecked="StartPlace_Checked" VerticalAlignment="Center" Checked="StartPlace_Checked" />
-
-
-
+
+
+
游戏策划
UI&程序
动画绘制
@@ -595,7 +595,7 @@
Click="Group_Click" FontWeight="Normal">相关群
-
+
用户名
版本
激活
@@ -605,7 +605,8 @@
v1.0 (100)
已通过Steam[uid]激活服务注册
-
+
杨远洛里斯, 广大MOD作者
洛里斯杨远, トニーちゃん Git贡献名单
diff --git a/VPet-Simulator.Windows/mod/0000_core/food/food.lps b/VPet-Simulator.Windows/mod/0000_core/food/food.lps
index ab34ddb..290a600 100644
--- a/VPet-Simulator.Windows/mod/0000_core/food/food.lps
+++ b/VPet-Simulator.Windows/mod/0000_core/food/food.lps
@@ -1,63 +1,63 @@
-food:|type#Drink:|name#ab钙奶:|price#5.0:|desc#健康美味,经济实惠:|Exp#10:|Strength#10:|StrengthDrink#10:|StrengthFood#5:|Health#1:|Feeling#1:|
-food:|type#Drink:|name#果汁:|price#7.0:|desc#那个那个那个那个果汁分你一半:|Exp#20:|Strength#20:|StrengthDrink#20:|StrengthFood#4:|Health#3:|Feeling#3:|
-food:|type#Drink:|name#可乐:|price#6.5:|desc#蓝色那个在日用品区谢谢:|Exp#10:|Strength#10:|StrengthDrink#10:|StrengthFood#2:|Health#-1:|Feeling#20:|
-food:|type#Drink:|name#凉茶:|price#12.0:|desc#怕上火,喝广东咖啡!:|Exp#50:|Strength#50:|StrengthDrink#50:|StrengthFood#1:|Health#5:|Feeling#5:|
-food:|type#Drink:|name#维他奶:|price#5.5:|desc#:|Exp#20:|Strength#20:|StrengthDrink#20:|StrengthFood#5:|Health#1:|Feeling#1:|
-food:|type#Drink:|name#雷碧:|price#5.5:|desc#透心扬,心飞凉:|Exp#6:|Strength#6:|StrengthDrink#6:|StrengthFood#3:|Health#-1:|Feeling#15:|
-food:|type#Drink:|name#盐汽水:|price#6.0:|desc#我一口盐汽水!:|Exp#20:|Strength#20:|StrengthDrink#20:|StrengthFood#3:|Health#-0.5:|Feeling#15:|
-food:|type#Drink:|name#椰汁:|price#8.0:|desc#白白胖胖,曲线圆润,要喝不加香油的椰O牌椰汁:|Exp#20:|Strength#20:|StrengthDrink#20:|StrengthFood#4:|Health#2:|Feeling#10:|
-food:|type#Functional:|name#咖啡饮料:|price#9.0:|desc#不小心倒在键盘上效果更好哦!:|Exp#80:|Strength#80:|StrengthDrink#80:|StrengthFood#3:|Health#-1:|Feeling#:|
-food:|type#Functional:|name#大鹏特饮:|price#11.5:|desc#困了累了,大鹏特饮:|Exp#120:|Strength#120:|StrengthDrink#120:|StrengthFood#3:|Health#-1:|Feeling#10:|
-food:|type#Functional:|name#黄牛:|price#13.0:|desc#放心,喝他的饮料不是他出钱你出命:|Exp#160:|Strength#160:|StrengthDrink#160:|StrengthFood#3:|Health#-1:|Feeling#10:|
-food:|type#Functional:|name#能量饮料:|price#14.0:|desc#:|Exp#280:|Strength#280:|StrengthDrink#280:|StrengthFood#3:|Health#-5:|Feeling#8:|
-food:|type#Functional:|name#土力架:|price#11.5:|desc#横扫自己,做回饥饿:|Exp#10:|Strength#10:|StrengthDrink#10:|StrengthFood#80:|Health#0:|Feeling#:|
-food:|type#Functional:|name#压缩饼干:|price#12.5:|desc#饼干.rar:|Exp#10:|Strength#10:|StrengthDrink#10:|StrengthFood#100:|Feeling#:|
-food:|type#Snack:|name#爆米花:|price#5.5:|desc#电影必备,吃不完也要买:|Exp#20:|Strength#20:|StrengthDrink#20:|StrengthFood#30:|Health#-1:|Feeling#10:|
-food:|type#Snack:|name#冰激凌:|price#6.0:|desc#中国人免费领:|Exp#10:|Strength#10:|StrengthDrink#10:|StrengthFood#24:|Health#-0.5:|Feeling#20:|
-food:|type#Snack:|name#瓜子:|price#5.5:|desc#嘎吱嘎吱嘎吱嘎吱嘎吱嘎吱嘎吱嘎吱嘎吱嘎吱嘎吱嘎吱嘎吱嘎吱嘎吱嘎吱嘎吱嘎吱嘎吱嘎吱嘎吱嘎吱嘎吱嘎吱嘎吱嘎吱嘎吱:|Exp#10:|Strength#10:|StrengthDrink#10:|StrengthFood#26:|Feeling#15:|
-food:|type#Snack:|name#核桃仁:|price#8.5:|desc#这次不用自己带锤子了:|Exp#80:|Strength#80:|StrengthDrink#80:|StrengthFood#5:|Health#5:|Feeling#:|
-food:|type#Snack:|name#火腿肠:|price#6.0:|desc#:|Exp#10:|Strength#10:|StrengthDrink#10:|StrengthFood#38:|Health#-0.5:|Feeling#:|
-food:|type#Snack:|name#花生米:|price#3.0:|desc#但凡有一粒花生米。。。:|Exp#10:|Strength#10:|StrengthDrink#10:|StrengthFood#20:|Health#-0.5:|Feeling#:|
-food:|type#Snack:|name#戒指糖:|price#1.5:|desc#这不比那个不能吃的破石头有用多了:|Exp#10:|Strength#10:|StrengthDrink#10:|StrengthFood#10:|Health#-0.5:|Feeling#:|
-food:|type#Snack:|name#老冰棍:|price#3.0:|desc#厂家正在考虑与辐射4联动中:|Exp#20:|Strength#20:|StrengthDrink#20:|StrengthFood#5:|Health#-0.5:|Feeling#2:|
-food:|type#Snack:|name#绿色心情:|price#2.5:|desc#几年前还是一块钱的呜呜呜:|Exp#10:|Strength#10:|StrengthDrink#10:|StrengthFood#5:|Health#-0.5:|Feeling#5:|
-food:|type#Snack:|name#奶片:|price#2.5:|desc#希望你们永远不会知道这个药。。。:|Exp#20:|Strength#20:|StrengthDrink#20:|StrengthFood#8:|Feeling#7:|
-food:|type#Snack:|name#奶糖:|price#4.5:|desc#小白兔牌:|Exp#30:|Strength#30:|StrengthDrink#30:|StrengthFood#15:|Feeling#15:|
-food:|type#Snack:|name#牛板筋:|price#2.5:|desc#只要来一根,大家都是好兄弟:|Exp#20:|Strength#20:|StrengthDrink#20:|StrengthFood#8:|Health#-1:|Feeling#10:|
-food:|type#Snack:|name#牛扎糖:|price#3.0:|desc#好甜,像你一样:|Exp#20:|Strength#20:|StrengthDrink#20:|StrengthFood#8:|Feeling#15:|
-food:|type#Snack:|name#泡泡糖:|price#3.5:|desc#就吹吧你:|Exp#30:|Strength#30:|StrengthDrink#30:|StrengthFood#5:|Feeling#17:|
-food:|type#Snack:|name#巧克力:|price#7.0:|desc#纵享丝滑:|Exp#20:|Strength#20:|StrengthDrink#20:|StrengthFood#38:|Feeling#15:|
-food:|type#Snack:|name#软糖:|price#2.5:|desc#come on baby~:|Exp#20:|Strength#20:|StrengthDrink#20:|StrengthFood#12:|Feeling#5:|
-food:|type#Snack:|name#薯片:|price#5.5:|desc#开趴必备:|Exp#20:|Strength#20:|StrengthDrink#20:|StrengthFood#28:|Feeling#5:|
-food:|type#Snack:|name#娃仔小馒头:|price#3.5:|desc#这是我们的宝贝~~:|Exp#20:|Strength#20:|StrengthDrink#20:|StrengthFood#12:|Feeling#10:|
-food:|type#Snack:|name#小布丁:|price#3.0:|desc#没关系,小小的也很好吃:|Exp#20:|Strength#20:|StrengthDrink#20:|StrengthFood#10:|Feeling#5:|
-food:|type#Snack:|name#雪饼:|price#4.0:|desc#小时候的一口吃不下:|Exp#20:|Strength#20:|StrengthDrink#20:|StrengthFood#15:|Feeling#10:|
-food:|type#Snack:|name#散射雪糕:|price#4.5:|desc#三倍的快乐:|Exp#10:|Strength#10:|StrengthDrink#10:|StrengthFood#20:|Feeling#10:|
-food:|type#Snack:|name#猪肉脯:|price#9.5:|desc#你感觉在吃牛皮。。:|Exp#30:|Strength#30:|StrengthFood#48:|Feeling#15:|
-food:|type#Meal:|name#臭豆腐:|price#14.5:|desc#闻起来臭,吃起来也臭,就是越吃越香。:|Exp#100:|Strength#100:|StrengthFood#55:|Feeling#5:|
-food:|type#Meal:|name#东坡肘子:|price#30.5:|desc#小知识:东坡肘子其实并非苏东坡之功,而是其妻子王弗的妙作:|Exp#300:|Strength#300:|StrengthFood#85:|Health#1:|Feeling#30:|
-food:|type#Meal:|name#番茄意面:|price#28.0:|desc#只要不是巧克力酱什么都好说。。:|Exp#200:|Strength#200:|StrengthFood#110:|Health#1:|Feeling#20:|
-food:|type#Meal:|name#红烧狮子头:|price#32.0:|desc#芋头西米露:|Exp#300:|Strength#300:|StrengthFood#90:|Health#1:|Feeling#30:|
-food:|type#Meal:|name#红烧牛肉:|price#37.5:|desc#不是4块钱的,请放心:|Exp#300:|Strength#300:|StrengthFood#130:|Health#1:|Feeling#30:|
-food:|type#Meal:|name#华夫饼:|price#22.0:|desc#蜜饼!小刻最爱!:|Exp#140:|Strength#140:|StrengthFood#80:|Feeling#30:|
-food:|type#Meal:|name#鸡翅:|price#16.5:|desc#红烧翅膀~我喜欢吃~:|Exp#60:|Strength#60:|StrengthFood#75:|Feeling#20:|
-food:|type#Meal:|name#煎西冷牛排:|price#52.0:|desc#开瓶可乐吧,上流:|Exp#450:|Strength#450:|StrengthFood#150:|Health#5:|Feeling#40:|
-food:|type#Meal:|name#辣子鸡:|price#35.5:|desc#当红辣子鸡哟:|Exp#300:|Strength#300:|StrengthFood#120:|Feeling#40:|
-food:|type#Meal:|name#罗宋汤:|price#28.5:|desc#咲夜!“给我吃!”:|Exp#200:|Strength#200:|StrengthFood#110:|Feeling#30:|
-food:|type#Meal:|name#麻婆豆腐:|price#26.0:|desc#麻婆豆腐之所以叫麻婆豆腐是因为麻婆喜欢吃:|Exp#150:|Strength#150:|StrengthFood#110:|Feeling#30:|
-food:|type#Meal:|name#梅菜扣肉:|price#29.5:|desc#不会咬人的谢谢:|Exp#250:|Strength#250:|StrengthFood#100:|Feeling#25:|
-food:|type#Meal:|name#面包:|price#14.5:|desc#你还记得你吃过多少块面包吗:|Strength#:|StrengthFood#100:|
-food:|type#Meal:|name#南瓜吐司:|price#20.5:|desc#加了南瓜!是的!我加了南瓜!:|Exp#100:|Strength#100:|StrengthFood#100:|Feeling#15:|
-food:|type#Meal:|name#酿豆腐:|price#21.0:|desc#你中有我,我中有你:|Exp#150:|Strength#150:|StrengthFood#80:|Feeling#15:|
-food:|type#Meal:|name#披萨:|price#31.5:|desc#不要放菠萝!!!:|Exp#300:|Strength#300:|StrengthFood#100:|Feeling#20:|
-food:|type#Meal:|name#三明治:|price#18.5:|desc#两面包夹芝士:|Exp#100:|Strength#100:|StrengthFood#85:|Feeling#15:|
-food:|type#Meal:|name#沙拉:|price#38.5:|desc#沙拉沙拉啦啦啦:|Exp#300:|Strength#300:|StrengthFood#80:|Health#10:|Feeling#5:|
-food:|type#Meal:|name#烧鹅:|price#33.0:|desc#官方特意调整成鹅的,这让我文案不好做啊,我就要在这里写上烧鸡两个大字!:|Exp#300:|Strength#300:|StrengthFood#100:|Feeling#30:|
-food:|type#Meal:|name#酸菜鱼:|price#34.5:|desc#人人皆是酸菜鱼:|Exp#300:|Strength#300:|StrengthFood#110:|Feeling#35:|
-food:|type#Meal:|name#西冷牛排:|price#52.5:|desc#开瓶拉菲吧,上流:|Exp#500:|Strength#500:|StrengthFood#140:|Health#5:|Feeling#40:|
-food:|type#Meal:|name#香煎牛仔骨:|price#68.0:|desc#开瓶红酒吧,上流:|Exp#600:|Strength#600:|StrengthFood#160:|Health#10:|Feeling#50:|
-food:|type#Meal:|name#盐焗鸡:|price#31.0:|desc#谁说的腌鸡!站出来!:|Exp#300:|Strength#300:|StrengthFood#90:|Feeling#30:|
-food:|type#Meal:|name#芝士焗虾:|price#25.5:|desc#焗虾闭嘴:|Exp#250:|Strength#250:|StrengthFood#70:|Feeling#30:|
-food:|type#Meal:|name#纸包鸡:|price#24.0:|desc#纸包鸡包纸包鸡包鸡包纸:|Exp#200:|Strength#200:|StrengthFood#75:|Feeling#30:|
-food:|type#Meal:|name#炸鸡腿:|price#12.5:|desc#:|Exp#100:|Strength#100:|StrengthFood#40:|Feeling#20:|
-food:|type#Meal:|name#汉堡:|price#15.5:|desc#还想要汉O王?这价格不是华O士已经对你很好了。:|Exp#100:|Strength#100:|StrengthFood#60:|Feeling#20:|
+food:|type#Drink:|name#ab钙奶:|price#6.5:|desc#健康美味,经济实惠:|Exp#5:|Strength#10:|StrengthDrink#40:|StrengthFood#5:|Health#1:|Feeling#1:|
+food:|type#Drink:|name#果汁:|price#8.5:|desc#那个那个那个那个果汁分你一半:|Exp#10:|Strength#10:|StrengthDrink#40:|StrengthFood#4:|Health#3:|Feeling#3:|
+food:|type#Drink:|name#可乐:|price#8.5:|desc#蓝色那个在日用品区谢谢:|Exp#5:|Strength#10:|StrengthDrink#50:|StrengthFood#2:|Health#-1:|Feeling#20:|
+food:|type#Drink:|name#凉茶:|price#13.5:|desc#怕上火,喝广东咖啡!:|Exp#25:|Strength#10:|StrengthDrink#60:|StrengthFood#1:|Health#5:|Feeling#5:|
+food:|type#Drink:|name#维他奶:|price#6.5:|desc#:|Exp#10:|Strength#15:|StrengthDrink#35:|StrengthFood#5:|Health#1:|Feeling#1:|
+food:|type#Drink:|name#雷碧:|price#7.0:|desc#透心扬,心飞凉:|Exp#3:|Strength#5:|StrengthDrink#45:|StrengthFood#3:|Health#-1:|Feeling#15:|
+food:|type#Drink:|name#盐汽水:|price#8.0:|desc#我一口盐汽水!:|Exp#10:|Strength#15:|StrengthDrink#40:|StrengthFood#3:|Health#-0.5:|Feeling#15:|
+food:|type#Drink:|name#椰汁:|price#10.0:|desc#白白胖胖,曲线圆润,要喝不加香油的椰O牌椰汁:|Exp#10:|Strength#15:|StrengthDrink#50:|StrengthFood#4:|Health#2:|Feeling#10:|
+food:|type#Functional:|name#咖啡饮料:|price#10.0:|desc#不小心倒在键盘上效果更好哦!:|Exp#40:|Strength#80:|StrengthDrink#20:|StrengthFood#3:|Health#-1:|
+food:|type#Functional:|name#大鹏特饮:|price#13.0:|desc#困了累了,大鹏特饮:|Exp#60:|Strength#85:|StrengthDrink#20:|StrengthFood#3:|Health#-1:|Feeling#10:|
+food:|type#Functional:|name#黄牛:|price#14.0:|desc#放心,喝他的饮料不是他出钱你出命:|Exp#80:|Strength#85:|StrengthDrink#20:|StrengthFood#3:|Health#-1:|Feeling#10:|
+food:|type#Functional:|name#能量饮料:|price#14.0:|desc#:|Exp#140:|Strength#80:|StrengthDrink#20:|StrengthFood#3:|Health#-5:|Feeling#8:|
+food:|type#Functional:|name#土力架:|price#17.5:|desc#横扫自己,做回饥饿:|Exp#5:|Strength#80:|StrengthDrink#-10:|StrengthFood#80:|Health#0:|
+food:|type#Functional:|name#压缩饼干:|price#18.5:|desc#饼干.rar:|Exp#5:|Strength#60:|StrengthDrink#-20:|StrengthFood#100:|
+food:|type#Snack:|name#爆米花:|price#8.5:|desc#电影必备,吃不完也要买:|Exp#10:|Strength#40:|StrengthDrink#-5:|StrengthFood#30:|Health#-1:|Feeling#10:|
+food:|type#Snack:|name#冰激凌:|price#9.5:|desc#中国人免费领:|Exp#5:|Strength#40:|StrengthDrink#5:|StrengthFood#24:|Health#-0.5:|Feeling#20:|
+food:|type#Snack:|name#瓜子:|price#8.0:|desc#嘎吱嘎吱嘎吱嘎吱嘎吱嘎吱嘎吱嘎吱嘎吱嘎吱嘎吱嘎吱嘎吱嘎吱嘎吱嘎吱嘎吱嘎吱嘎吱嘎吱嘎吱嘎吱嘎吱嘎吱嘎吱嘎吱嘎吱:|Exp#5:|Strength#30:|StrengthDrink#-2:|StrengthFood#26:|Feeling#15:|
+food:|type#Snack:|name#核桃仁:|price#8.5:|desc#这次不用自己带锤子了:|Exp#40:|Strength#20:|StrengthDrink#-2:|StrengthFood#5:|Health#5:|
+food:|type#Snack:|name#火腿肠:|price#9.0:|desc#:|Exp#5:|Strength#40:|StrengthDrink#0:|StrengthFood#38:|Health#-0.5:|
+food:|type#Snack:|name#花生米:|price#4.5:|desc#但凡有一粒花生米。。。:|Exp#5:|Strength#20:|StrengthDrink#-2:|StrengthFood#20:|Health#-0.5:|
+food:|type#Snack:|name#戒指糖:|price#2.5:|desc#这不比那个不能吃的破石头有用多了:|Exp#5:|Strength#20:|StrengthDrink#-2:|StrengthFood#10:|Health#-0.5:|
+food:|type#Snack:|name#老冰棍:|price#4.0:|desc#厂家正在考虑与辐射4联动中:|Exp#10:|Strength#15:|StrengthDrink#15:|StrengthFood#5:|Health#-0.5:|Feeling#2:|
+food:|type#Snack:|name#绿色心情:|price#3.5:|desc#几年前还是一块钱的呜呜呜:|Exp#5:|Strength#5:|StrengthDrink#15:|StrengthFood#5:|Health#-0.5:|Feeling#5:|
+food:|type#Snack:|name#奶片:|price#3.0:|desc#希望你们永远不会知道这个药。。。:|Exp#10:|Strength#8:|StrengthDrink#-2:|StrengthFood#8:|Feeling#7:|
+food:|type#Snack:|name#奶糖:|price#5.0:|desc#小白兔牌:|Exp#15:|Strength#8:|StrengthDrink#-2:|StrengthFood#15:|Feeling#15:|
+food:|type#Snack:|name#牛板筋:|price#3.0:|desc#只要来一根,大家都是好兄弟:|Exp#10:|Strength#10:|StrengthDrink#-1:|StrengthFood#8:|Health#-1:|Feeling#10:|
+food:|type#Snack:|name#牛扎糖:|price#4.0:|desc#好甜,像你一样:|Exp#10:|Strength#10:|StrengthDrink#-2:|StrengthFood#8:|Feeling#15:|
+food:|type#Snack:|name#泡泡糖:|price#3.5:|desc#就吹吧你:|Exp#15:|Strength#5:|StrengthDrink#-1:|StrengthFood#5:|Feeling#17:|
+food:|type#Snack:|name#巧克力:|price#10.0:|desc#纵享丝滑:|Exp#10:|Strength#30:|StrengthDrink#-5:|StrengthFood#38:|Feeling#15:|
+food:|type#Snack:|name#软糖:|price#3.0:|desc#come on baby~:|Exp#10:|Strength#5:|StrengthDrink#-2:|StrengthFood#12:|Feeling#5:|
+food:|type#Snack:|name#薯片:|price#7.0:|desc#开趴必备:|Exp#10:|Strength#10:|StrengthDrink#5:|StrengthFood#28:|Feeling#5:|
+food:|type#Snack:|name#娃仔小馒头:|price#4.5:|desc#这是我们的宝贝~~:|Exp#10:|Strength#15:|StrengthDrink#0:|StrengthFood#12:|Feeling#10:|
+food:|type#Snack:|name#小布丁:|price#4.0:|desc#没关系,小小的也很好吃:|Exp#10:|Strength#10:|StrengthDrink#5:|StrengthFood#10:|Feeling#5:|
+food:|type#Snack:|name#雪饼:|price#5.5:|desc#小时候的一口吃不下:|Exp#10:|Strength#10:|StrengthDrink#5:|StrengthFood#15:|Feeling#10:|
+food:|type#Snack:|name#散射雪糕:|price#6.5:|desc#三倍的快乐:|Exp#5:|Strength#10:|StrengthDrink#10:|StrengthFood#20:|Feeling#10:|
+food:|type#Snack:|name#猪肉脯:|price#13.0:|desc#你感觉在吃牛皮。。:|Exp#15:|Strength#40:|StrengthFood#48:|Feeling#15:|
+food:|type#Meal:|name#臭豆腐:|price#19.5:|desc#闻起来臭,吃起来也臭,就是越吃越香。:|Exp#50:|Strength#100:|StrengthFood#55:|Feeling#5:|
+food:|type#Meal:|name#东坡肘子:|price#34.5:|desc#小知识:东坡肘子其实并非苏东坡之功,而是其妻子王弗的妙作:|Exp#150:|Strength#100:|StrengthFood#85:|Health#1:|Feeling#30:|
+food:|type#Meal:|name#番茄意面:|price#34.0:|desc#只要不是巧克力酱什么都好说。。:|Exp#100:|Strength#100:|StrengthFood#110:|Health#1:|Feeling#20:|
+food:|type#Meal:|name#红烧狮子头:|price#36.5:|desc#芋头西米露:|Exp#150:|Strength#120:|StrengthFood#90:|Health#1:|Feeling#30:|
+food:|type#Meal:|name#红烧牛肉:|price#44.5:|desc#不是4块钱的,请放心:|Exp#150:|Strength#140:|StrengthFood#130:|Health#1:|Feeling#30:|
+food:|type#Meal:|name#华夫饼:|price#28.0:|desc#蜜饼!小刻最爱!:|Exp#70:|Strength#100:|StrengthFood#80:|Feeling#30:|
+food:|type#Meal:|name#鸡翅:|price#23.0:|desc#红烧翅膀~我喜欢吃~:|Exp#30:|Strength#100:|StrengthFood#75:|Feeling#20:|
+food:|type#Meal:|name#煎西冷牛排:|price#57.5:|desc#开瓶可乐吧,上流:|Exp#225:|Strength#140:|StrengthFood#150:|Health#5:|Feeling#40:|
+food:|type#Meal:|name#辣子鸡:|price#41.0:|desc#当红辣子鸡哟:|Exp#150:|Strength#100:|StrengthFood#120:|Feeling#40:|
+food:|type#Meal:|name#罗宋汤:|price#35.0:|desc#咲夜!“给我吃!”:|Exp#100:|Strength#100:|StrengthFood#110:|Feeling#30:|
+food:|type#Meal:|name#麻婆豆腐:|price#33.0:|desc#麻婆豆腐之所以叫麻婆豆腐是因为麻婆喜欢吃:|Exp#75:|Strength#100:|StrengthFood#110:|Feeling#30:|
+food:|type#Meal:|name#梅菜扣肉:|price#34.0:|desc#不会咬人的谢谢:|Exp#125:|Strength#100:|StrengthFood#100:|Feeling#25:|
+food:|type#Meal:|name#面包:|price#21.0:|desc#你还记得你吃过多少块面包吗:|Exp#0:|Strength#50:|StrengthFood#100:|Feeling#10:|
+food:|type#Meal:|name#南瓜吐司:|price#27.0:|desc#加了南瓜!是的!我加了南瓜!:|Exp#50:|Strength#80:|StrengthFood#100:|Feeling#15:|
+food:|type#Meal:|name#酿豆腐:|price#26.5:|desc#你中有我,我中有你:|Exp#75:|Strength#100:|StrengthFood#80:|Feeling#15:|
+food:|type#Meal:|name#披萨:|price#35.5:|desc#不要放菠萝!!!:|Exp#150:|Strength#100:|StrengthFood#100:|Feeling#20:|
+food:|type#Meal:|name#三明治:|price#24.5:|desc#两面包夹芝士:|Exp#50:|Strength#80:|StrengthFood#85:|Feeling#15:|
+food:|type#Meal:|name#沙拉:|price#40.0:|desc#沙拉沙拉啦啦啦:|Exp#150:|Strength#80:|StrengthFood#80:|Health#10:|Feeling#5:|
+food:|type#Meal:|name#烧鹅:|price#38.0:|desc#官方特意调整成鹅的,这让我文案不好做啊,我就要在这里写上烧鸡两个大字!:|Exp#150:|Strength#120:|StrengthFood#100:|Feeling#30:|
+food:|type#Meal:|name#酸菜鱼:|price#40.0:|desc#人人皆是酸菜鱼:|Exp#150:|Strength#120:|StrengthFood#110:|Feeling#35:|
+food:|type#Meal:|name#西冷牛排:|price#56.0:|desc#开瓶拉菲吧,上流:|Exp#250:|Strength#120:|StrengthFood#140:|Health#5:|Feeling#40:|
+food:|type#Meal:|name#香煎牛仔骨:|price#71.0:|desc#开瓶红酒吧,上流:|Exp#300:|Strength#120:|StrengthFood#160:|Health#10:|Feeling#50:|
+food:|type#Meal:|name#盐焗鸡:|price#35.0:|desc#谁说的腌鸡!站出来!:|Exp#150:|Strength#100:|StrengthFood#90:|Feeling#30:|
+food:|type#Meal:|name#芝士焗虾:|price#28.5:|desc#焗虾闭嘴:|Exp#125:|Strength#80:|StrengthFood#70:|Feeling#30:|
+food:|type#Meal:|name#纸包鸡:|price#28.0:|desc#纸包鸡包纸包鸡包鸡包纸:|Exp#100:|Strength#85:|StrengthFood#75:|Feeling#30:|
+food:|type#Meal:|name#炸鸡腿:|price#14.5:|desc#:|Exp#50:|Strength#40:|StrengthFood#40:|Feeling#20:|
+food:|type#Meal:|name#汉堡:|price#19.5:|desc#还想要汉O王?这价格不是华O士已经对你很好了。:|Exp#50:|Strength#60:|StrengthFood#60:|Feeling#20:|
diff --git a/VPet-Simulator.Windows/mod/0000_core/image/food/虾芝士焗虾.png b/VPet-Simulator.Windows/mod/0000_core/image/food/芝士焗虾.png
similarity index 100%
rename from VPet-Simulator.Windows/mod/0000_core/image/food/虾芝士焗虾.png
rename to VPet-Simulator.Windows/mod/0000_core/image/food/芝士焗虾.png
diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/PoorCondition/1/悲伤呼吸A_000_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/PoorCondition/1/悲伤呼吸A_000_125.png
new file mode 100644
index 0000000..314c76e
Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/PoorCondition/1/悲伤呼吸A_000_125.png differ
diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/PoorCondition/1/悲伤呼吸A_001_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/PoorCondition/1/悲伤呼吸A_001_125.png
new file mode 100644
index 0000000..1717df1
Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/PoorCondition/1/悲伤呼吸A_001_125.png differ
diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/PoorCondition/1/悲伤呼吸A_002_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/PoorCondition/1/悲伤呼吸A_002_125.png
new file mode 100644
index 0000000..8989a01
Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/PoorCondition/1/悲伤呼吸A_002_125.png differ
diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/PoorCondition/1/悲伤呼吸A_003_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/PoorCondition/1/悲伤呼吸A_003_125.png
new file mode 100644
index 0000000..e53e0e6
Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/PoorCondition/1/悲伤呼吸A_003_125.png differ
diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/PoorCondition/1/悲伤呼吸A_004_375.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/PoorCondition/1/悲伤呼吸A_004_375.png
new file mode 100644
index 0000000..6f4387e
Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/PoorCondition/1/悲伤呼吸A_004_375.png differ
diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/PoorCondition/1/悲伤呼吸循环_005_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/PoorCondition/1/悲伤呼吸循环_005_125.png
new file mode 100644
index 0000000..af500ad
Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/PoorCondition/1/悲伤呼吸循环_005_125.png differ
diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/PoorCondition/1/悲伤呼吸循环_006_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/PoorCondition/1/悲伤呼吸循环_006_125.png
new file mode 100644
index 0000000..9e21da9
Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/PoorCondition/1/悲伤呼吸循环_006_125.png differ
diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/PoorCondition/1/悲伤呼吸循环_007_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/PoorCondition/1/悲伤呼吸循环_007_125.png
new file mode 100644
index 0000000..62fb2d6
Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/PoorCondition/1/悲伤呼吸循环_007_125.png differ
diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/PoorCondition/1/悲伤呼吸循环_008_500.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/PoorCondition/1/悲伤呼吸循环_008_500.png
new file mode 100644
index 0000000..f0bacea
Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/PoorCondition/1/悲伤呼吸循环_008_500.png differ
diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/PoorCondition/1/悲伤呼吸循环_009_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/PoorCondition/1/悲伤呼吸循环_009_125.png
new file mode 100644
index 0000000..005e282
Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/PoorCondition/1/悲伤呼吸循环_009_125.png differ
diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/PoorCondition/1/悲伤呼吸循环_010_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/PoorCondition/1/悲伤呼吸循环_010_125.png
new file mode 100644
index 0000000..f7ef7ba
Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/PoorCondition/1/悲伤呼吸循环_010_125.png differ
diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/PoorCondition/1/悲伤呼吸循环_011_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/PoorCondition/1/悲伤呼吸循环_011_125.png
new file mode 100644
index 0000000..d1ad5d8
Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/PoorCondition/1/悲伤呼吸循环_011_125.png differ
diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/PoorCondition/1/悲伤呼吸循环_012_375.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/PoorCondition/1/悲伤呼吸循环_012_375.png
new file mode 100644
index 0000000..f552d3e
Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/PoorCondition/1/悲伤呼吸循环_012_375.png differ
diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/PoorCondition/2/悲伤呼吸_000_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/PoorCondition/2/悲伤呼吸_000_125.png
new file mode 100644
index 0000000..af500ad
Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/PoorCondition/2/悲伤呼吸_000_125.png differ
diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/PoorCondition/2/悲伤呼吸_001_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/PoorCondition/2/悲伤呼吸_001_125.png
new file mode 100644
index 0000000..9e21da9
Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/PoorCondition/2/悲伤呼吸_001_125.png differ
diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/PoorCondition/2/悲伤呼吸_002_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/PoorCondition/2/悲伤呼吸_002_125.png
new file mode 100644
index 0000000..62fb2d6
Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/PoorCondition/2/悲伤呼吸_002_125.png differ
diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/PoorCondition/2/悲伤呼吸_003_500.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/PoorCondition/2/悲伤呼吸_003_500.png
new file mode 100644
index 0000000..f0bacea
Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/PoorCondition/2/悲伤呼吸_003_500.png differ
diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/PoorCondition/2/悲伤呼吸_004_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/PoorCondition/2/悲伤呼吸_004_125.png
new file mode 100644
index 0000000..005e282
Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/PoorCondition/2/悲伤呼吸_004_125.png differ
diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/PoorCondition/2/悲伤呼吸_005_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/PoorCondition/2/悲伤呼吸_005_125.png
new file mode 100644
index 0000000..f7ef7ba
Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/PoorCondition/2/悲伤呼吸_005_125.png differ
diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/PoorCondition/2/悲伤呼吸_006_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/PoorCondition/2/悲伤呼吸_006_125.png
new file mode 100644
index 0000000..d1ad5d8
Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/PoorCondition/2/悲伤呼吸_006_125.png differ
diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/PoorCondition/2/悲伤呼吸_007_375.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/PoorCondition/2/悲伤呼吸_007_375.png
new file mode 100644
index 0000000..f552d3e
Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/PoorCondition/2/悲伤呼吸_007_375.png differ
diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/PoorCondition/悲伤呼吸_008_750.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/PoorCondition/2/悲伤呼吸_008_750.png
similarity index 100%
rename from VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/PoorCondition/悲伤呼吸_008_750.png
rename to VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/PoorCondition/2/悲伤呼吸_008_750.png
diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/PoorCondition/悲伤呼吸_009_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/PoorCondition/2/悲伤呼吸_009_125.png
similarity index 100%
rename from VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/PoorCondition/悲伤呼吸_009_125.png
rename to VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/PoorCondition/2/悲伤呼吸_009_125.png
diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/PoorCondition/悲伤呼吸_010_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/PoorCondition/2/悲伤呼吸_010_125.png
similarity index 100%
rename from VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/PoorCondition/悲伤呼吸_010_125.png
rename to VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/PoorCondition/2/悲伤呼吸_010_125.png
diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/PoorCondition/悲伤呼吸_011_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/PoorCondition/2/悲伤呼吸_011_125.png
similarity index 100%
rename from VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/PoorCondition/悲伤呼吸_011_125.png
rename to VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/PoorCondition/2/悲伤呼吸_011_125.png
diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/PoorCondition/悲伤呼吸_012_250.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/PoorCondition/2/悲伤呼吸_012_250.png
similarity index 100%
rename from VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/PoorCondition/悲伤呼吸_012_250.png
rename to VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/PoorCondition/2/悲伤呼吸_012_250.png
diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/PoorCondition/3/C1.png_000_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/PoorCondition/3/C1.png_000_125.png
new file mode 100644
index 0000000..6f4387e
Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/PoorCondition/3/C1.png_000_125.png differ
diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/PoorCondition/3/C2.png_001_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/PoorCondition/3/C2.png_001_125.png
new file mode 100644
index 0000000..e53e0e6
Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/PoorCondition/3/C2.png_001_125.png differ
diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/PoorCondition/3/C3.png_002_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/PoorCondition/3/C3.png_002_125.png
new file mode 100644
index 0000000..8989a01
Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/PoorCondition/3/C3.png_002_125.png differ
diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/PoorCondition/3/C4.png_003_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/PoorCondition/3/C4.png_003_125.png
new file mode 100644
index 0000000..1717df1
Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/PoorCondition/3/C4.png_003_125.png differ
diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/PoorCondition/3/C5.png_004_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/PoorCondition/3/C5.png_004_125.png
new file mode 100644
index 0000000..314c76e
Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/PoorCondition/3/C5.png_004_125.png differ
diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Switch/Thirsty/口渴咳咳_000_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Switch/Thirsty/口渴咳咳_000_125.png
deleted file mode 100644
index 5a9c4ff..0000000
Binary files a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Switch/Thirsty/口渴咳咳_000_125.png and /dev/null differ
diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Switch/Thirsty/口渴咳咳_001_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Switch/Thirsty/口渴咳咳_001_125.png
deleted file mode 100644
index 38715bd..0000000
Binary files a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Switch/Thirsty/口渴咳咳_001_125.png and /dev/null differ
diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Switch/Thirsty/口渴咳咳_002_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Switch/Thirsty/口渴咳咳_002_125.png
deleted file mode 100644
index 271eb53..0000000
Binary files a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Switch/Thirsty/口渴咳咳_002_125.png and /dev/null differ
diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Switch/Thirsty/口渴咳咳_003_500.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Switch/Thirsty/口渴咳咳_003_500.png
deleted file mode 100644
index 3718257..0000000
Binary files a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Switch/Thirsty/口渴咳咳_003_500.png and /dev/null differ
diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Switch/Thirsty/口渴咳咳_004_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Switch/Thirsty/口渴咳咳_004_125.png
deleted file mode 100644
index 9efd5d8..0000000
Binary files a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Switch/Thirsty/口渴咳咳_004_125.png and /dev/null differ
diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Switch/Thirsty/口渴咳咳_005_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Switch/Thirsty/口渴咳咳_005_125.png
deleted file mode 100644
index 3718257..0000000
Binary files a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Switch/Thirsty/口渴咳咳_005_125.png and /dev/null differ
diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Switch/Thirsty/口渴咳咳_006_375.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Switch/Thirsty/口渴咳咳_006_375.png
deleted file mode 100644
index 9efd5d8..0000000
Binary files a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Switch/Thirsty/口渴咳咳_006_375.png and /dev/null differ
diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Switch/Thirsty/口渴咳咳_007_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Switch/Thirsty/口渴咳咳_007_125.png
deleted file mode 100644
index 3718257..0000000
Binary files a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Switch/Thirsty/口渴咳咳_007_125.png and /dev/null differ
diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Switch/Thirsty/口渴咳咳_008_750.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Switch/Thirsty/口渴咳咳_008_750.png
deleted file mode 100644
index 9efd5d8..0000000
Binary files a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Switch/Thirsty/口渴咳咳_008_750.png and /dev/null differ
diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Switch/Thirsty/口渴咳咳_009_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Switch/Thirsty/口渴咳咳_009_125.png
deleted file mode 100644
index 3718257..0000000
Binary files a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Switch/Thirsty/口渴咳咳_009_125.png and /dev/null differ
diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Switch/Thirsty/口渴咳咳_010_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Switch/Thirsty/口渴咳咳_010_125.png
deleted file mode 100644
index 271eb53..0000000
Binary files a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Switch/Thirsty/口渴咳咳_010_125.png and /dev/null differ
diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Switch/Thirsty/口渴咳咳_011_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Switch/Thirsty/口渴咳咳_011_125.png
deleted file mode 100644
index 38715bd..0000000
Binary files a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Switch/Thirsty/口渴咳咳_011_125.png and /dev/null differ
diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Switch/Thirsty/口渴咳咳_012_250.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Switch/Thirsty/口渴咳咳_012_250.png
deleted file mode 100644
index 5a9c4ff..0000000
Binary files a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Switch/Thirsty/口渴咳咳_012_250.png and /dev/null differ
diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/PoorCondition/悲伤呼吸_000_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Switch/Thirsty/悲伤呼吸_000_125.png
similarity index 100%
rename from VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/PoorCondition/悲伤呼吸_000_125.png
rename to VPet-Simulator.Windows/mod/0000_core/pet/vup/Switch/Thirsty/悲伤呼吸_000_125.png
diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/PoorCondition/悲伤呼吸_001_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Switch/Thirsty/悲伤呼吸_001_125.png
similarity index 100%
rename from VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/PoorCondition/悲伤呼吸_001_125.png
rename to VPet-Simulator.Windows/mod/0000_core/pet/vup/Switch/Thirsty/悲伤呼吸_001_125.png
diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/PoorCondition/悲伤呼吸_002_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Switch/Thirsty/悲伤呼吸_002_125.png
similarity index 100%
rename from VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/PoorCondition/悲伤呼吸_002_125.png
rename to VPet-Simulator.Windows/mod/0000_core/pet/vup/Switch/Thirsty/悲伤呼吸_002_125.png
diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/PoorCondition/悲伤呼吸_003_500.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Switch/Thirsty/悲伤呼吸_003_500.png
similarity index 100%
rename from VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/PoorCondition/悲伤呼吸_003_500.png
rename to VPet-Simulator.Windows/mod/0000_core/pet/vup/Switch/Thirsty/悲伤呼吸_003_500.png
diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/PoorCondition/悲伤呼吸_004_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Switch/Thirsty/悲伤呼吸_004_125.png
similarity index 100%
rename from VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/PoorCondition/悲伤呼吸_004_125.png
rename to VPet-Simulator.Windows/mod/0000_core/pet/vup/Switch/Thirsty/悲伤呼吸_004_125.png
diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/PoorCondition/悲伤呼吸_005_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Switch/Thirsty/悲伤呼吸_005_125.png
similarity index 100%
rename from VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/PoorCondition/悲伤呼吸_005_125.png
rename to VPet-Simulator.Windows/mod/0000_core/pet/vup/Switch/Thirsty/悲伤呼吸_005_125.png
diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/PoorCondition/悲伤呼吸_006_375.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Switch/Thirsty/悲伤呼吸_006_375.png
similarity index 100%
rename from VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/PoorCondition/悲伤呼吸_006_375.png
rename to VPet-Simulator.Windows/mod/0000_core/pet/vup/Switch/Thirsty/悲伤呼吸_006_375.png
diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/PoorCondition/悲伤呼吸_007_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Switch/Thirsty/悲伤呼吸_007_125.png
similarity index 100%
rename from VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/PoorCondition/悲伤呼吸_007_125.png
rename to VPet-Simulator.Windows/mod/0000_core/pet/vup/Switch/Thirsty/悲伤呼吸_007_125.png
diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Switch/Thirsty/悲伤呼吸_008_750.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Switch/Thirsty/悲伤呼吸_008_750.png
new file mode 100644
index 0000000..8d2baf3
Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Switch/Thirsty/悲伤呼吸_008_750.png differ
diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Switch/Thirsty/悲伤呼吸_009_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Switch/Thirsty/悲伤呼吸_009_125.png
new file mode 100644
index 0000000..b22816e
Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Switch/Thirsty/悲伤呼吸_009_125.png differ
diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Switch/Thirsty/悲伤呼吸_010_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Switch/Thirsty/悲伤呼吸_010_125.png
new file mode 100644
index 0000000..e776c90
Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Switch/Thirsty/悲伤呼吸_010_125.png differ
diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Switch/Thirsty/悲伤呼吸_011_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Switch/Thirsty/悲伤呼吸_011_125.png
new file mode 100644
index 0000000..964a896
Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Switch/Thirsty/悲伤呼吸_011_125.png differ
diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Switch/Thirsty/悲伤呼吸_012_250.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Switch/Thirsty/悲伤呼吸_012_250.png
new file mode 100644
index 0000000..c51e30c
Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Switch/Thirsty/悲伤呼吸_012_250.png differ