diff --git a/VPet-Simulator.Core/Display/MainLogic.cs b/VPet-Simulator.Core/Display/MainLogic.cs index b70013d..ada3e35 100644 --- a/VPet-Simulator.Core/Display/MainLogic.cs +++ b/VPet-Simulator.Core/Display/MainLogic.cs @@ -194,7 +194,13 @@ namespace VPet_Simulator.Core else Core.Save.Exp += addmoney; WorkTimer.GetCount += addmoney; - Core.Save.FeelingChange(-freedrop * nowwork.Feeling); + if (nowwork.Type == GraphHelper.Work.WorkType.Play) + { + LastInteractionTime = DateTime.Now; + Core.Save.FeelingChange(nowwork.Feeling * TimePass); + } + else + Core.Save.FeelingChange(-freedrop * nowwork.Feeling); break; default://默认 //饮食等乱七八糟的消耗 diff --git a/VPet-Simulator.Core/Display/ToolBar.xaml.cs b/VPet-Simulator.Core/Display/ToolBar.xaml.cs index 9a85a23..9b722d5 100644 --- a/VPet-Simulator.Core/Display/ToolBar.xaml.cs +++ b/VPet-Simulator.Core/Display/ToolBar.xaml.cs @@ -51,21 +51,29 @@ namespace VPet_Simulator.Core MenuWork.Visibility = Visibility.Visible; MenuStudy.Click -= MenuStudy_Click; MenuStudy.Visibility = Visibility.Visible; + MenuPlay.Click -= MenuPlay_Click; + MenuWork.Items.Clear(); MenuStudy.Items.Clear(); + MenuPlay.Items.Clear(); List ws = new List(); List ss = new List(); + List ps = new List(); foreach (var w in m.Core.Graph.GraphConfig.Works) { - if (w.Type == Work.WorkType.Work) + switch (w.Type) { - ws.Add(w); - } - else - { - ss.Add(w); - } + case Work.WorkType.Study: + ss.Add(w); + break; + case Work.WorkType.Work: + ws.Add(w); + break; + case Work.WorkType.Play: + ps.Add(w); + break; + } } if (ws.Count == 0) { @@ -111,6 +119,28 @@ namespace VPet_Simulator.Core MenuStudy.Items.Add(mi); } } + if (ps.Count == 0) + { + MenuPlay.Visibility = Visibility.Collapsed; + } + else if (ps.Count == 1) + { + MenuPlay.Click += MenuPlay_Click; + wplay = ps[0]; + MenuPlay.Header = ps[0].NameTrans; + } + else + { + foreach (var w in ps) + { + var mi = new MenuItem() + { + Header = w.NameTrans + }; + mi.Click += (s, e) => StartWork(w); + MenuPlay.Items.Add(mi); + } + } } private void MenuStudy_Click(object sender, RoutedEventArgs e) @@ -119,6 +149,7 @@ namespace VPet_Simulator.Core } Work wwork; Work wstudy; + Work wplay; public void StartWork(Work work) { if (!m.Core.Controller.EnableFunction || m.Core.Save.Mode != GameSave.ModeType.Ill) @@ -138,7 +169,10 @@ namespace VPet_Simulator.Core { StartWork(wwork); } - + private void MenuPlay_Click(object sender, RoutedEventArgs e) + { + StartWork(wplay); + } private void M_TimeUIHandle(Main m) { diff --git a/VPet-Simulator.Windows/mod/0000_core/lang/en/Prog2308.lps b/VPet-Simulator.Windows/mod/0000_core/lang/en/Prog2308.lps index 26637b7..f971d9e 100644 --- a/VPet-Simulator.Windows/mod/0000_core/lang/en/Prog2308.lps +++ b/VPet-Simulator.Windows/mod/0000_core/lang/en/Prog2308.lps @@ -1,3 +1,5 @@ 创意工坊物品无法进行上传,请移动到mod文件夹后重试#Creative Workshop items can not be uploaded, please move to `mod` folder and try again.:| 由于修改游戏数据导致数据溢出,存档可能会出错\n开发者提醒您请不要使用过于超模的MOD#Due to the modification of the game data caused by data overflow, the archive may be wrong\nThe developer reminds you not to use too much supermodel MOD.:| -玩耍#Play:| \ No newline at end of file +玩耍#Play:| +研究#Research:| +玩游戏#Play game:| \ No newline at end of file diff --git a/VPet-Simulator.Windows/mod/0000_core/lang/zh-Hans/Prog2308.lps b/VPet-Simulator.Windows/mod/0000_core/lang/zh-Hans/Prog2308.lps index 9102ea8..33132ca 100644 --- a/VPet-Simulator.Windows/mod/0000_core/lang/zh-Hans/Prog2308.lps +++ b/VPet-Simulator.Windows/mod/0000_core/lang/zh-Hans/Prog2308.lps @@ -1,3 +1,5 @@ 创意工坊物品无法进行上传,请移动到mod文件夹后重试#创意工坊物品无法进行上传,请移动到mod文件夹后重试:| 由于修改游戏数据导致数据溢出,存档可能会出错\n开发者提醒您请不要使用过于超模的MOD#由于修改游戏数据导致数据溢出,存档可能会出错\n开发者提醒您请不要使用过于超模的MOD:| -玩耍#玩耍:| \ No newline at end of file +玩耍#玩耍:| +研究#研究:| +玩游戏#玩游戏:| \ No newline at end of file diff --git a/VPet-Simulator.Windows/mod/0000_core/lang/zh-Hant/Prog2308.lps b/VPet-Simulator.Windows/mod/0000_core/lang/zh-Hant/Prog2308.lps index 4506a22..cdff428 100644 --- a/VPet-Simulator.Windows/mod/0000_core/lang/zh-Hant/Prog2308.lps +++ b/VPet-Simulator.Windows/mod/0000_core/lang/zh-Hant/Prog2308.lps @@ -1,3 +1,5 @@ 创意工坊物品无法进行上传,请移动到mod文件夹后重试#創意工坊物品無法進行上傳,請移動到mod資料夾後重試:| 由于修改游戏数据导致数据溢出,存档可能会出错\n开发者提醒您请不要使用过于超模的MOD#由於修改遊戲數據導致數據溢出,存檔可能會出錯\n開發者提醒您請不要使用過於超模的MOD:| -玩耍#玩耍:| \ No newline at end of file +玩耍#玩耍:| +研究#研究:| +玩游戏#玩遊戲:| \ No newline at end of file diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup.lps b/VPet-Simulator.Windows/mod/0000_core/pet/vup.lps index 164ceae..c533752 100644 --- a/VPet-Simulator.Windows/mod/0000_core/pet/vup.lps +++ b/VPet-Simulator.Windows/mod/0000_core/pet/vup.lps @@ -5,6 +5,8 @@ raisepoint:|happy_x#290:|happy_y#128:|nomal_x#290:|nomal_y#128:|poorcondition_x# work:|Type#Work:|Name#文案:|MoneyBase#8:|MoneyLevel#0.5:|Graph#workone:|StrengthFood#3.5:|StrengthDrink#2.5:|Feeling#1.5:|Time#60:|FinishBonus#0.1:|BorderBrush#000000:|Background#413d39:|ButtonBackground#322e2b:|ButtonForeground#FFFFFF:|Foreground#ccbdad:|Left#113:|Top#315:|Width#280:| work:|Type#Work:|Name#直播:|MoneyBase#16:|MoneyLevel#1:|Graph#worktwo:|StrengthFood#4.5:|StrengthDrink#7.5:|Feeling#2.5:|Time#180:|FinishBonus#0.25:|LevelLimit#10:|BorderBrush#000000:|Background#413d39:|ButtonBackground#322e2b:|ButtonForeground#FFFFFF:|Foreground#ccbdad:|Left#113:|Top#315:|Width#280:| work:|Type#Study:|Name#学习:|MoneyBase#16:|MoneyLevel#2:|Graph#study:|StrengthFood#1.5:|StrengthDrink#2:|Feeling#3:|Time#45:|FinishBonus#0.2:|BorderBrush#000000:|Background#413d39:|ButtonBackground#322e2b:|ButtonForeground#FFFFFF:|Foreground#ccbdad:|Left#113:|Top#315:|Width#280:| +work:|Type#Study:|Name#研究:|MoneyBase#30:|MoneyLevel#3:|Graph#studytwo:|StrengthFood#2.5:|StrengthDrink#3.5:|Feeling#4.5:|Time#75:|FinishBonus#0.4:|BorderBrush#000000:|Background#413d39:|ButtonBackground#322e2b:|LevelLimit#15:|ButtonForeground#FFFFFF:|Foreground#ccbdad:|Left#113:|Top#315:|Width#280:| +work:|Type#Play:|Name#玩游戏:|MoneyBase#10:|MoneyLevel#2:|Graph#playone:|StrengthFood#1.5:|StrengthDrink#1.5:|Feeling#4:|Time#30:|FinishBonus#0.2:|BorderBrush#000000:|Background#413d39:|ButtonBackground#322e2b:|ButtonForeground#FFFFFF:|Foreground#ccbdad:|Left#113:|Top#315:|Width#280:| move:|graph#climb.left:|LocateType#Left:|LocateLength#145:|TriggerLeft#100:|TriggerTop#200:|TriggerType#65:|CheckType#64:|CheckTop#100:|SpeedY#-10:|Distance#7:|ModeType#14:| move:|graph#climb.left:|LocateType#Left:|LocateLength#145:|TriggerLeft#100:|TriggerBottom#200:|TriggerType#129:|CheckType#128:|CheckBottom#100:|SpeedY#10:|Distance#7:|ModeType#14:| move:|graph#climb.right:|LocateType#Right:|LocateLength#185:|TriggerRight#100:|TriggerTop#200:|TriggerType#66:|CheckType#64:|CheckTop#100:|SpeedY#-10:|Distance#7:|ModeType#14:| diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/Happy/A/_000_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/Happy/A/_000_125.png new file mode 100644 index 0000000..7d0a9fd Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/Happy/A/_000_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/Happy/A/_001_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/Happy/A/_001_125.png new file mode 100644 index 0000000..a32a396 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/Happy/A/_001_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/Happy/A/_002_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/Happy/A/_002_125.png new file mode 100644 index 0000000..4d4fcec Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/Happy/A/_002_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/Happy/A/_003_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/Happy/A/_003_125.png new file mode 100644 index 0000000..8286a0c Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/Happy/A/_003_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/Happy/A/_004_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/Happy/A/_004_125.png new file mode 100644 index 0000000..3ac476e Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/Happy/A/_004_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/Happy/A/_005_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/Happy/A/_005_125.png new file mode 100644 index 0000000..f99af7f Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/Happy/A/_005_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/Happy/A/_006_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/Happy/A/_006_125.png new file mode 100644 index 0000000..a69392e Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/Happy/A/_006_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/Happy/A/_007_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/Happy/A/_007_125.png new file mode 100644 index 0000000..374b0b5 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/Happy/A/_007_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/Happy/A/_008_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/Happy/A/_008_125.png new file mode 100644 index 0000000..bf18288 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/Happy/A/_008_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/Happy/A/_009_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/Happy/A/_009_125.png new file mode 100644 index 0000000..ba57726 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/Happy/A/_009_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/Happy/A/_010_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/Happy/A/_010_125.png new file mode 100644 index 0000000..aed1555 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/Happy/A/_010_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/Happy/A/_011_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/Happy/A/_011_125.png new file mode 100644 index 0000000..6294235 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/Happy/A/_011_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/Happy/A/_012_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/Happy/A/_012_125.png new file mode 100644 index 0000000..7f1a0be Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/Happy/A/_012_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/Happy/A/_013_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/Happy/A/_013_125.png new file mode 100644 index 0000000..d907aa1 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/Happy/A/_013_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/Happy/A/_014_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/Happy/A/_014_125.png new file mode 100644 index 0000000..de914ba Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/Happy/A/_014_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/Happy/B/_000_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/Happy/B/_000_125.png new file mode 100644 index 0000000..60dd665 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/Happy/B/_000_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/Happy/B/_001_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/Happy/B/_001_125.png new file mode 100644 index 0000000..23f633f Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/Happy/B/_001_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/Happy/B/_002_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/Happy/B/_002_125.png new file mode 100644 index 0000000..336da32 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/Happy/B/_002_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/Happy/B/_003_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/Happy/B/_003_125.png new file mode 100644 index 0000000..64d17f4 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/Happy/B/_003_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/Happy/B/_004_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/Happy/B/_004_125.png new file mode 100644 index 0000000..6ed2f3e Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/Happy/B/_004_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/Happy/B/_005_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/Happy/B/_005_125.png new file mode 100644 index 0000000..beb1ded Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/Happy/B/_005_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/Happy/B/_006_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/Happy/B/_006_125.png new file mode 100644 index 0000000..ebcc49a Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/Happy/B/_006_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/Happy/B/_007_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/Happy/B/_007_125.png new file mode 100644 index 0000000..f50d539 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/Happy/B/_007_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/Happy/C/C_000_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/Happy/C/C_000_125.png new file mode 100644 index 0000000..de914ba Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/Happy/C/C_000_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/Happy/C/C_001_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/Happy/C/C_001_125.png new file mode 100644 index 0000000..374b0b5 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/Happy/C/C_001_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/Happy/C/C_002_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/Happy/C/C_002_125.png new file mode 100644 index 0000000..a69392e Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/Happy/C/C_002_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/Happy/C/C_003_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/Happy/C/C_003_125.png new file mode 100644 index 0000000..f99af7f Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/Happy/C/C_003_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/Happy/C/C_004_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/Happy/C/C_004_125.png new file mode 100644 index 0000000..226201d Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/Happy/C/C_004_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/Happy/C/C_005_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/Happy/C/C_005_125.png new file mode 100644 index 0000000..fa0e912 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/Happy/C/C_005_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/Happy/C/C_006_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/Happy/C/C_006_125.png new file mode 100644 index 0000000..b04982b Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/Happy/C/C_006_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/Happy/C/C_007_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/Happy/C/C_007_125.png new file mode 100644 index 0000000..4a78857 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/Happy/C/C_007_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/Happy/C/C_008_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/Happy/C/C_008_125.png new file mode 100644 index 0000000..c577a57 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/Happy/C/C_008_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/Happy/C/C_009_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/Happy/C/C_009_125.png new file mode 100644 index 0000000..73ea7e4 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/Happy/C/C_009_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/Happy/C/C_010_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/Happy/C/C_010_125.png new file mode 100644 index 0000000..2d1b527 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/Happy/C/C_010_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/Nomal/A/_000_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/Nomal/A/_000_125.png new file mode 100644 index 0000000..7d0a9fd Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/Nomal/A/_000_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/Nomal/A/_001_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/Nomal/A/_001_125.png new file mode 100644 index 0000000..a32a396 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/Nomal/A/_001_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/Nomal/A/_002_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/Nomal/A/_002_125.png new file mode 100644 index 0000000..4d4fcec Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/Nomal/A/_002_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/Nomal/A/_003_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/Nomal/A/_003_125.png new file mode 100644 index 0000000..8286a0c Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/Nomal/A/_003_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/Nomal/A/_004_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/Nomal/A/_004_125.png new file mode 100644 index 0000000..3ac476e Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/Nomal/A/_004_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/Nomal/A/_005_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/Nomal/A/_005_125.png new file mode 100644 index 0000000..f99af7f Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/Nomal/A/_005_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/Nomal/A/_006_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/Nomal/A/_006_125.png new file mode 100644 index 0000000..a69392e Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/Nomal/A/_006_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/Nomal/A/_007_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/Nomal/A/_007_125.png new file mode 100644 index 0000000..374b0b5 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/Nomal/A/_007_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/Nomal/A/_008_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/Nomal/A/_008_125.png new file mode 100644 index 0000000..bf18288 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/Nomal/A/_008_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/Nomal/A/_009_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/Nomal/A/_009_125.png new file mode 100644 index 0000000..ba57726 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/Nomal/A/_009_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/Nomal/A/_010_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/Nomal/A/_010_125.png new file mode 100644 index 0000000..aed1555 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/Nomal/A/_010_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/Nomal/A/_011_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/Nomal/A/_011_125.png new file mode 100644 index 0000000..6294235 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/Nomal/A/_011_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/Nomal/A/_012_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/Nomal/A/_012_125.png new file mode 100644 index 0000000..7f1a0be Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/Nomal/A/_012_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/Nomal/A/_013_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/Nomal/A/_013_125.png new file mode 100644 index 0000000..d907aa1 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/Nomal/A/_013_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/Nomal/A/_014_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/Nomal/A/_014_125.png new file mode 100644 index 0000000..de914ba Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/Nomal/A/_014_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/Nomal/B/B_000_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/Nomal/B/B_000_125.png new file mode 100644 index 0000000..255f2ee Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/Nomal/B/B_000_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/Nomal/B/B_001_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/Nomal/B/B_001_125.png new file mode 100644 index 0000000..ba11da4 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/Nomal/B/B_001_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/Nomal/B/B_002_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/Nomal/B/B_002_125.png new file mode 100644 index 0000000..ce44427 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/Nomal/B/B_002_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/Nomal/B/B_003_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/Nomal/B/B_003_125.png new file mode 100644 index 0000000..eac13d4 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/Nomal/B/B_003_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/Nomal/B/B_004_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/Nomal/B/B_004_125.png new file mode 100644 index 0000000..2e5fa1d Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/Nomal/B/B_004_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/Nomal/B/B_005_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/Nomal/B/B_005_125.png new file mode 100644 index 0000000..21c12a1 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/Nomal/B/B_005_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/Nomal/B/B_006_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/Nomal/B/B_006_125.png new file mode 100644 index 0000000..3a2d882 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/Nomal/B/B_006_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/Nomal/B/B_007_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/Nomal/B/B_007_125.png new file mode 100644 index 0000000..09d2715 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/Nomal/B/B_007_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/Nomal/C/C_000_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/Nomal/C/C_000_125.png new file mode 100644 index 0000000..de914ba Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/Nomal/C/C_000_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/Nomal/C/C_001_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/Nomal/C/C_001_125.png new file mode 100644 index 0000000..374b0b5 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/Nomal/C/C_001_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/Nomal/C/C_002_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/Nomal/C/C_002_125.png new file mode 100644 index 0000000..a69392e Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/Nomal/C/C_002_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/Nomal/C/C_003_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/Nomal/C/C_003_125.png new file mode 100644 index 0000000..f99af7f Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/Nomal/C/C_003_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/Nomal/C/C_004_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/Nomal/C/C_004_125.png new file mode 100644 index 0000000..226201d Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/Nomal/C/C_004_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/Nomal/C/C_005_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/Nomal/C/C_005_125.png new file mode 100644 index 0000000..fa0e912 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/Nomal/C/C_005_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/Nomal/C/C_006_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/Nomal/C/C_006_125.png new file mode 100644 index 0000000..b04982b Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/Nomal/C/C_006_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/Nomal/C/C_007_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/Nomal/C/C_007_125.png new file mode 100644 index 0000000..4a78857 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/Nomal/C/C_007_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/Nomal/C/C_008_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/Nomal/C/C_008_125.png new file mode 100644 index 0000000..c577a57 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/Nomal/C/C_008_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/Nomal/C/C_009_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/Nomal/C/C_009_125.png new file mode 100644 index 0000000..73ea7e4 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/Nomal/C/C_009_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/Nomal/C/C_010_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/Nomal/C/C_010_125.png new file mode 100644 index 0000000..2d1b527 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/Nomal/C/C_010_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/PoorCondition/A/_000_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/PoorCondition/A/_000_125.png new file mode 100644 index 0000000..7d0a9fd Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/PoorCondition/A/_000_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/PoorCondition/A/_001_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/PoorCondition/A/_001_125.png new file mode 100644 index 0000000..9a40060 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/PoorCondition/A/_001_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/PoorCondition/A/_002_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/PoorCondition/A/_002_125.png new file mode 100644 index 0000000..29c6f67 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/PoorCondition/A/_002_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/PoorCondition/A/_003_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/PoorCondition/A/_003_125.png new file mode 100644 index 0000000..a8bda3e Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/PoorCondition/A/_003_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/PoorCondition/A/_004_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/PoorCondition/A/_004_125.png new file mode 100644 index 0000000..b666b06 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/PoorCondition/A/_004_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/PoorCondition/A/_005_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/PoorCondition/A/_005_125.png new file mode 100644 index 0000000..6fdb647 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/PoorCondition/A/_005_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/PoorCondition/A/_006_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/PoorCondition/A/_006_125.png new file mode 100644 index 0000000..6e8d173 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/PoorCondition/A/_006_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/PoorCondition/A/_007_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/PoorCondition/A/_007_125.png new file mode 100644 index 0000000..080ffa3 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/PoorCondition/A/_007_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/PoorCondition/A/_008_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/PoorCondition/A/_008_125.png new file mode 100644 index 0000000..5f48e14 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/PoorCondition/A/_008_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/PoorCondition/A/_009_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/PoorCondition/A/_009_125.png new file mode 100644 index 0000000..da1998b Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/PoorCondition/A/_009_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/PoorCondition/A/_010_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/PoorCondition/A/_010_125.png new file mode 100644 index 0000000..15915f9 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/PoorCondition/A/_010_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/PoorCondition/A/_011_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/PoorCondition/A/_011_125.png new file mode 100644 index 0000000..afe3074 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/PoorCondition/A/_011_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/PoorCondition/A/_012_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/PoorCondition/A/_012_125.png new file mode 100644 index 0000000..64bf990 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/PoorCondition/A/_012_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/PoorCondition/A/_013_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/PoorCondition/A/_013_125.png new file mode 100644 index 0000000..05801e0 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/PoorCondition/A/_013_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/PoorCondition/A/_014_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/PoorCondition/A/_014_125.png new file mode 100644 index 0000000..7e3eeae Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/PoorCondition/A/_014_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/PoorCondition/B/_000_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/PoorCondition/B/_000_125.png new file mode 100644 index 0000000..ef601d3 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/PoorCondition/B/_000_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/PoorCondition/B/_001_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/PoorCondition/B/_001_125.png new file mode 100644 index 0000000..d16ad26 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/PoorCondition/B/_001_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/PoorCondition/B/_002_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/PoorCondition/B/_002_125.png new file mode 100644 index 0000000..167eb01 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/PoorCondition/B/_002_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/PoorCondition/B/_003_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/PoorCondition/B/_003_125.png new file mode 100644 index 0000000..63812b3 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/PoorCondition/B/_003_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/PoorCondition/B/_004_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/PoorCondition/B/_004_125.png new file mode 100644 index 0000000..ca514fa Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/PoorCondition/B/_004_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/PoorCondition/B/_005_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/PoorCondition/B/_005_125.png new file mode 100644 index 0000000..c4c2f20 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/PoorCondition/B/_005_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/PoorCondition/B/_006_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/PoorCondition/B/_006_125.png new file mode 100644 index 0000000..f16fe1c Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/PoorCondition/B/_006_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/PoorCondition/B/_007_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/PoorCondition/B/_007_125.png new file mode 100644 index 0000000..3e677f4 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/PoorCondition/B/_007_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/PoorCondition/C/C_000_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/PoorCondition/C/C_000_125.png new file mode 100644 index 0000000..da1998b Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/PoorCondition/C/C_000_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/PoorCondition/C/C_001_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/PoorCondition/C/C_001_125.png new file mode 100644 index 0000000..080ffa3 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/PoorCondition/C/C_001_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/PoorCondition/C/C_002_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/PoorCondition/C/C_002_125.png new file mode 100644 index 0000000..6e8d173 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/PoorCondition/C/C_002_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/PoorCondition/C/C_003_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/PoorCondition/C/C_003_125.png new file mode 100644 index 0000000..226201d Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/PoorCondition/C/C_003_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/PoorCondition/C/C_004_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/PoorCondition/C/C_004_125.png new file mode 100644 index 0000000..fa0e912 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/PoorCondition/C/C_004_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/PoorCondition/C/C_005_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/PoorCondition/C/C_005_125.png new file mode 100644 index 0000000..b04982b Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/PoorCondition/C/C_005_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/PoorCondition/C/C_006_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/PoorCondition/C/C_006_125.png new file mode 100644 index 0000000..4a78857 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/PoorCondition/C/C_006_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/PoorCondition/C/C_007_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/PoorCondition/C/C_007_125.png new file mode 100644 index 0000000..c577a57 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/PoorCondition/C/C_007_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/PoorCondition/C/C_008_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/PoorCondition/C/C_008_125.png new file mode 100644 index 0000000..73ea7e4 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/PoorCondition/C/C_008_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/PoorCondition/C/C_009_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/PoorCondition/C/C_009_125.png new file mode 100644 index 0000000..2d1b527 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/PlayONE/PoorCondition/C/C_009_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/Happy/A/_000_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/Happy/A/_000_125.png new file mode 100644 index 0000000..580e7d7 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/Happy/A/_000_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/Happy/A/_001_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/Happy/A/_001_125.png new file mode 100644 index 0000000..354f0e5 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/Happy/A/_001_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/Happy/A/_002_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/Happy/A/_002_125.png new file mode 100644 index 0000000..56eb662 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/Happy/A/_002_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/Happy/A/_003_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/Happy/A/_003_125.png new file mode 100644 index 0000000..e7e28e0 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/Happy/A/_003_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/Happy/A/_004_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/Happy/A/_004_125.png new file mode 100644 index 0000000..ca1f6a2 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/Happy/A/_004_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/Happy/A/_005_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/Happy/A/_005_125.png new file mode 100644 index 0000000..cdff459 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/Happy/A/_005_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/Happy/A/_006_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/Happy/A/_006_125.png new file mode 100644 index 0000000..14106da Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/Happy/A/_006_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/Happy/A/_007_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/Happy/A/_007_125.png new file mode 100644 index 0000000..895fbf0 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/Happy/A/_007_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/Happy/A/_008_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/Happy/A/_008_125.png new file mode 100644 index 0000000..60aae07 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/Happy/A/_008_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/Happy/A/_009_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/Happy/A/_009_125.png new file mode 100644 index 0000000..7e33bc2 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/Happy/A/_009_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/Happy/A/_010_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/Happy/A/_010_125.png new file mode 100644 index 0000000..faf67f6 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/Happy/A/_010_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/Happy/A/_011_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/Happy/A/_011_125.png new file mode 100644 index 0000000..c6500f7 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/Happy/A/_011_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/Happy/A/_012_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/Happy/A/_012_125.png new file mode 100644 index 0000000..3b0cde9 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/Happy/A/_012_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/Happy/A/_013_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/Happy/A/_013_125.png new file mode 100644 index 0000000..1c7733f Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/Happy/A/_013_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/Happy/B_1/_000_625.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/Happy/B_1/_000_625.png new file mode 100644 index 0000000..1c7733f Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/Happy/B_1/_000_625.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/Happy/B_1/_001_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/Happy/B_1/_001_125.png new file mode 100644 index 0000000..464b8bd Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/Happy/B_1/_001_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/Happy/B_1/_002_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/Happy/B_1/_002_125.png new file mode 100644 index 0000000..1c7733f Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/Happy/B_1/_002_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/Happy/B_1/_003_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/Happy/B_1/_003_125.png new file mode 100644 index 0000000..464b8bd Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/Happy/B_1/_003_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/Happy/B_1/_004_250.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/Happy/B_1/_004_250.png new file mode 100644 index 0000000..1c7733f Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/Happy/B_1/_004_250.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/Happy/B_2/_000_1250.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/Happy/B_2/_000_1250.png new file mode 100644 index 0000000..1c7733f Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/Happy/B_2/_000_1250.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/Happy/B_3/_000_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/Happy/B_3/_000_125.png new file mode 100644 index 0000000..8dc865d Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/Happy/B_3/_000_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/Happy/B_3/_001_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/Happy/B_3/_001_125.png new file mode 100644 index 0000000..1526de7 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/Happy/B_3/_001_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/Happy/B_3/_002_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/Happy/B_3/_002_125.png new file mode 100644 index 0000000..8dc865d Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/Happy/B_3/_002_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/Happy/B_3/_003_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/Happy/B_3/_003_125.png new file mode 100644 index 0000000..1526de7 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/Happy/B_3/_003_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/Happy/B_3/_004_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/Happy/B_3/_004_125.png new file mode 100644 index 0000000..8dc865d Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/Happy/B_3/_004_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/Happy/B_3/_005_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/Happy/B_3/_005_125.png new file mode 100644 index 0000000..b4c0da4 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/Happy/B_3/_005_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/Happy/B_3/_006_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/Happy/B_3/_006_125.png new file mode 100644 index 0000000..8dc865d Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/Happy/B_3/_006_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/Happy/B_3/_007_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/Happy/B_3/_007_125.png new file mode 100644 index 0000000..b4c0da4 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/Happy/B_3/_007_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/Happy/B_3/_008_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/Happy/B_3/_008_125.png new file mode 100644 index 0000000..8dc865d Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/Happy/B_3/_008_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/Happy/B_3/_009_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/Happy/B_3/_009_125.png new file mode 100644 index 0000000..1526de7 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/Happy/B_3/_009_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/Happy/B_4/_000_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/Happy/B_4/_000_125.png new file mode 100644 index 0000000..8dc865d Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/Happy/B_4/_000_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/Happy/B_4/_001_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/Happy/B_4/_001_125.png new file mode 100644 index 0000000..1526de7 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/Happy/B_4/_001_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/Happy/B_4/_002_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/Happy/B_4/_002_125.png new file mode 100644 index 0000000..8dc865d Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/Happy/B_4/_002_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/Happy/B_4/_003_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/Happy/B_4/_003_125.png new file mode 100644 index 0000000..1526de7 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/Happy/B_4/_003_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/Happy/B_4/_004_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/Happy/B_4/_004_125.png new file mode 100644 index 0000000..8dc865d Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/Happy/B_4/_004_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/Happy/B_4/_005_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/Happy/B_4/_005_125.png new file mode 100644 index 0000000..1526de7 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/Happy/B_4/_005_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/Happy/B_4/_006_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/Happy/B_4/_006_125.png new file mode 100644 index 0000000..8dc865d Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/Happy/B_4/_006_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/Happy/B_4/_007_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/Happy/B_4/_007_125.png new file mode 100644 index 0000000..1526de7 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/Happy/B_4/_007_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/Happy/B_4/_008_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/Happy/B_4/_008_125.png new file mode 100644 index 0000000..8dc865d Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/Happy/B_4/_008_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/Happy/B_4/_009_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/Happy/B_4/_009_125.png new file mode 100644 index 0000000..1526de7 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/Happy/B_4/_009_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/Nomal/A/_000_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/Nomal/A/_000_125.png new file mode 100644 index 0000000..580e7d7 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/Nomal/A/_000_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/Nomal/A/_001_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/Nomal/A/_001_125.png new file mode 100644 index 0000000..354f0e5 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/Nomal/A/_001_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/Nomal/A/_002_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/Nomal/A/_002_125.png new file mode 100644 index 0000000..06eab18 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/Nomal/A/_002_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/Nomal/A/_003_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/Nomal/A/_003_125.png new file mode 100644 index 0000000..a12a86f Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/Nomal/A/_003_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/Nomal/A/_004_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/Nomal/A/_004_125.png new file mode 100644 index 0000000..318958b Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/Nomal/A/_004_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/Nomal/A/_005_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/Nomal/A/_005_125.png new file mode 100644 index 0000000..0cdc494 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/Nomal/A/_005_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/Nomal/A/_006_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/Nomal/A/_006_125.png new file mode 100644 index 0000000..d6a33c8 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/Nomal/A/_006_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/Nomal/A/_007_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/Nomal/A/_007_125.png new file mode 100644 index 0000000..e67f608 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/Nomal/A/_007_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/Nomal/A/_008_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/Nomal/A/_008_125.png new file mode 100644 index 0000000..498981c Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/Nomal/A/_008_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/Nomal/A/_009_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/Nomal/A/_009_125.png new file mode 100644 index 0000000..b8b9c97 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/Nomal/A/_009_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/Nomal/A/_010_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/Nomal/A/_010_125.png new file mode 100644 index 0000000..1eab938 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/Nomal/A/_010_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/Nomal/A/_011_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/Nomal/A/_011_125.png new file mode 100644 index 0000000..5c99f8a Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/Nomal/A/_011_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/Nomal/A/_012_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/Nomal/A/_012_125.png new file mode 100644 index 0000000..e2b8e3f Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/Nomal/A/_012_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/Nomal/A/_013_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/Nomal/A/_013_125.png new file mode 100644 index 0000000..a2f163b Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/Nomal/A/_013_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/Nomal/B/_000_750.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/Nomal/B/_000_750.png new file mode 100644 index 0000000..1c7733f Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/Nomal/B/_000_750.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/Nomal/B/_001_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/Nomal/B/_001_125.png new file mode 100644 index 0000000..464b8bd Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/Nomal/B/_001_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/Nomal/B/_002_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/Nomal/B/_002_125.png new file mode 100644 index 0000000..1c7733f Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/Nomal/B/_002_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/Nomal/B/_003_250.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/Nomal/B/_003_250.png new file mode 100644 index 0000000..464b8bd Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/Nomal/B/_003_250.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/Nomal/B_2/_000_1125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/Nomal/B_2/_000_1125.png new file mode 100644 index 0000000..1c7733f Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/Nomal/B_2/_000_1125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/Nomal/B_2/_001_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/Nomal/B_2/_001_125.png new file mode 100644 index 0000000..464b8bd Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/Nomal/B_2/_001_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/Nomal/C/C_000_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/Nomal/C/C_000_125.png new file mode 100644 index 0000000..e2b8e3f Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/Nomal/C/C_000_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/Nomal/C/C_001_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/Nomal/C/C_001_125.png new file mode 100644 index 0000000..1eab938 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/Nomal/C/C_001_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/Nomal/C/C_002_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/Nomal/C/C_002_125.png new file mode 100644 index 0000000..b8b9c97 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/Nomal/C/C_002_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/Nomal/C/C_003_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/Nomal/C/C_003_125.png new file mode 100644 index 0000000..226201d Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/Nomal/C/C_003_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/Nomal/C/C_004_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/Nomal/C/C_004_125.png new file mode 100644 index 0000000..fa0e912 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/Nomal/C/C_004_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/Nomal/C/C_005_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/Nomal/C/C_005_125.png new file mode 100644 index 0000000..b04982b Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/Nomal/C/C_005_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/Nomal/C/C_006_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/Nomal/C/C_006_125.png new file mode 100644 index 0000000..4a78857 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/Nomal/C/C_006_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/Nomal/C/C_007_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/Nomal/C/C_007_125.png new file mode 100644 index 0000000..46fae95 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/Nomal/C/C_007_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/Nomal/C/C_008_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/Nomal/C/C_008_125.png new file mode 100644 index 0000000..1265d44 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/Nomal/C/C_008_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/Nomal/C/C_009_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/Nomal/C/C_009_125.png new file mode 100644 index 0000000..3d1d27e Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/Nomal/C/C_009_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/PoorCondition/A/_000_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/PoorCondition/A/_000_125.png new file mode 100644 index 0000000..580e7d7 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/PoorCondition/A/_000_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/PoorCondition/A/_001_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/PoorCondition/A/_001_125.png new file mode 100644 index 0000000..d46cf46 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/PoorCondition/A/_001_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/PoorCondition/A/_002_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/PoorCondition/A/_002_125.png new file mode 100644 index 0000000..6538082 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/PoorCondition/A/_002_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/PoorCondition/A/_003_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/PoorCondition/A/_003_125.png new file mode 100644 index 0000000..2b27b37 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/PoorCondition/A/_003_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/PoorCondition/A/_004_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/PoorCondition/A/_004_125.png new file mode 100644 index 0000000..7288a8d Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/PoorCondition/A/_004_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/PoorCondition/A/_005_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/PoorCondition/A/_005_125.png new file mode 100644 index 0000000..5f9956a Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/PoorCondition/A/_005_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/PoorCondition/A/_006_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/PoorCondition/A/_006_125.png new file mode 100644 index 0000000..356ddfd Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/PoorCondition/A/_006_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/PoorCondition/A/_007_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/PoorCondition/A/_007_125.png new file mode 100644 index 0000000..51df866 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/PoorCondition/A/_007_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/PoorCondition/A/_008_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/PoorCondition/A/_008_125.png new file mode 100644 index 0000000..3ab805c Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/PoorCondition/A/_008_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/PoorCondition/A/_009_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/PoorCondition/A/_009_125.png new file mode 100644 index 0000000..764d6ae Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/PoorCondition/A/_009_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/PoorCondition/A/_010_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/PoorCondition/A/_010_125.png new file mode 100644 index 0000000..354bfae Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/PoorCondition/A/_010_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/PoorCondition/A/_011_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/PoorCondition/A/_011_125.png new file mode 100644 index 0000000..37b939b Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/PoorCondition/A/_011_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/PoorCondition/A/_012_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/PoorCondition/A/_012_125.png new file mode 100644 index 0000000..54c14e6 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/PoorCondition/A/_012_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/PoorCondition/A/_013_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/PoorCondition/A/_013_125.png new file mode 100644 index 0000000..3cb289e Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/PoorCondition/A/_013_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/PoorCondition/B_1/_000_625.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/PoorCondition/B_1/_000_625.png new file mode 100644 index 0000000..4f98a3d Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/PoorCondition/B_1/_000_625.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/PoorCondition/B_1/_001_250.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/PoorCondition/B_1/_001_250.png new file mode 100644 index 0000000..45497fc Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/PoorCondition/B_1/_001_250.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/PoorCondition/B_1/_002_375.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/PoorCondition/B_1/_002_375.png new file mode 100644 index 0000000..4f98a3d Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/PoorCondition/B_1/_002_375.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/PoorCondition/B_2/_000_1250.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/PoorCondition/B_2/_000_1250.png new file mode 100644 index 0000000..4f98a3d Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/PoorCondition/B_2/_000_1250.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/PoorCondition/B_3/_000_250.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/PoorCondition/B_3/_000_250.png new file mode 100644 index 0000000..6b206fd Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/PoorCondition/B_3/_000_250.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/PoorCondition/B_3/_001_250.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/PoorCondition/B_3/_001_250.png new file mode 100644 index 0000000..956dced Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/PoorCondition/B_3/_001_250.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/PoorCondition/B_3/_002_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/PoorCondition/B_3/_002_125.png new file mode 100644 index 0000000..6b206fd Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/PoorCondition/B_3/_002_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/PoorCondition/B_3/_003_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/PoorCondition/B_3/_003_125.png new file mode 100644 index 0000000..956dced Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/PoorCondition/B_3/_003_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/PoorCondition/B_3/_004_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/PoorCondition/B_3/_004_125.png new file mode 100644 index 0000000..6b206fd Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/PoorCondition/B_3/_004_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/PoorCondition/B_3/_005_375.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/PoorCondition/B_3/_005_375.png new file mode 100644 index 0000000..956dced Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/PoorCondition/B_3/_005_375.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/PoorCondition/C/C_000_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/PoorCondition/C/C_000_125.png new file mode 100644 index 0000000..54c14e6 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/PoorCondition/C/C_000_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/PoorCondition/C/C_001_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/PoorCondition/C/C_001_125.png new file mode 100644 index 0000000..356ddfd Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/PoorCondition/C/C_001_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/PoorCondition/C/C_002_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/PoorCondition/C/C_002_125.png new file mode 100644 index 0000000..354bfae Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/PoorCondition/C/C_002_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/PoorCondition/C/C_003_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/PoorCondition/C/C_003_125.png new file mode 100644 index 0000000..226201d Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/PoorCondition/C/C_003_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/PoorCondition/C/C_004_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/PoorCondition/C/C_004_125.png new file mode 100644 index 0000000..fa0e912 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/PoorCondition/C/C_004_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/PoorCondition/C/C_005_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/PoorCondition/C/C_005_125.png new file mode 100644 index 0000000..b04982b Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/PoorCondition/C/C_005_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/PoorCondition/C/C_006_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/PoorCondition/C/C_006_125.png new file mode 100644 index 0000000..4a78857 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/PoorCondition/C/C_006_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/PoorCondition/C/C_007_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/PoorCondition/C/C_007_125.png new file mode 100644 index 0000000..c577a57 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/PoorCondition/C/C_007_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/PoorCondition/C/C_008_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/PoorCondition/C/C_008_125.png new file mode 100644 index 0000000..73ea7e4 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/PoorCondition/C/C_008_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/PoorCondition/C/C_009_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/PoorCondition/C/C_009_125.png new file mode 100644 index 0000000..2d1b527 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/StudyTWO/PoorCondition/C/C_009_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkONE/Happy/A/_000_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkONE/Happy/A/_000_125.png new file mode 100644 index 0000000..580e7d7 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkONE/Happy/A/_000_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkONE/Happy/A/_001_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkONE/Happy/A/_001_125.png new file mode 100644 index 0000000..354f0e5 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkONE/Happy/A/_001_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkONE/Happy/A/_002_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkONE/Happy/A/_002_125.png new file mode 100644 index 0000000..56eb662 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkONE/Happy/A/_002_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkONE/Happy/A/_003_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkONE/Happy/A/_003_125.png new file mode 100644 index 0000000..e7e28e0 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkONE/Happy/A/_003_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkONE/Happy/A/_004_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkONE/Happy/A/_004_125.png new file mode 100644 index 0000000..ca1f6a2 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkONE/Happy/A/_004_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkONE/Happy/A/_005_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkONE/Happy/A/_005_125.png new file mode 100644 index 0000000..0bd8b96 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkONE/Happy/A/_005_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkONE/Happy/A/_006_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkONE/Happy/A/_006_125.png new file mode 100644 index 0000000..b9c0082 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkONE/Happy/A/_006_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkONE/Happy/A/_007_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkONE/Happy/A/_007_125.png new file mode 100644 index 0000000..219b0d4 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkONE/Happy/A/_007_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkONE/Happy/A/_008_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkONE/Happy/A/_008_125.png new file mode 100644 index 0000000..3f69fc6 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkONE/Happy/A/_008_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkONE/Happy/A/_009_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkONE/Happy/A/_009_125.png new file mode 100644 index 0000000..a92f86d Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkONE/Happy/A/_009_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkONE/Happy/B/_000_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkONE/Happy/B/_000_125.png new file mode 100644 index 0000000..62b20ef Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkONE/Happy/B/_000_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkONE/Happy/B/_001_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkONE/Happy/B/_001_125.png new file mode 100644 index 0000000..843a5f1 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkONE/Happy/B/_001_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkONE/Happy/B/_002_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkONE/Happy/B/_002_125.png new file mode 100644 index 0000000..91e76da Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkONE/Happy/B/_002_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkONE/Happy/B/_003_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkONE/Happy/B/_003_125.png new file mode 100644 index 0000000..843a5f1 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkONE/Happy/B/_003_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkONE/Happy/B/_004_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkONE/Happy/B/_004_125.png new file mode 100644 index 0000000..91e76da Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkONE/Happy/B/_004_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkONE/Happy/B/_005_375.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkONE/Happy/B/_005_375.png new file mode 100644 index 0000000..843a5f1 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkONE/Happy/B/_005_375.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkONE/Happy/B/_006_250.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkONE/Happy/B/_006_250.png new file mode 100644 index 0000000..5d5c1ee Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkONE/Happy/B/_006_250.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkONE/Happy/B/_007_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkONE/Happy/B/_007_125.png new file mode 100644 index 0000000..91e76da Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkONE/Happy/B/_007_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkONE/Happy/B/_008_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkONE/Happy/B/_008_125.png new file mode 100644 index 0000000..843a5f1 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkONE/Happy/B/_008_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkONE/Happy/B/_009_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkONE/Happy/B/_009_125.png new file mode 100644 index 0000000..91e76da Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkONE/Happy/B/_009_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkONE/Happy/C/C_000_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkONE/Happy/C/C_000_125.png new file mode 100644 index 0000000..3f69fc6 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkONE/Happy/C/C_000_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkONE/Happy/C/C_001_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkONE/Happy/C/C_001_125.png new file mode 100644 index 0000000..b04982b Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkONE/Happy/C/C_001_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkONE/Happy/C/C_002_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkONE/Happy/C/C_002_125.png new file mode 100644 index 0000000..4a78857 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkONE/Happy/C/C_002_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkONE/Happy/C/C_003_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkONE/Happy/C/C_003_125.png new file mode 100644 index 0000000..46fae95 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkONE/Happy/C/C_003_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkONE/Happy/C/C_004_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkONE/Happy/C/C_004_125.png new file mode 100644 index 0000000..1265d44 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkONE/Happy/C/C_004_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkONE/Happy/C/C_005_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkONE/Happy/C/C_005_125.png new file mode 100644 index 0000000..3d1d27e Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkONE/Happy/C/C_005_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkONE/Happy/C/C_006_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkONE/Happy/C/C_006_125.png new file mode 100644 index 0000000..a92f86d Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkONE/Happy/C/C_006_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkONE/Happy/C/C_007_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkONE/Happy/C/C_007_125.png new file mode 100644 index 0000000..226201d Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkONE/Happy/C/C_007_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkONE/Happy/C/C_008_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkONE/Happy/C/C_008_125.png new file mode 100644 index 0000000..fa0e912 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkONE/Happy/C/C_008_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkTWO/PoorCondition/A/_000_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkTWO/PoorCondition/A/_000_125.png new file mode 100644 index 0000000..580e7d7 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkTWO/PoorCondition/A/_000_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkTWO/PoorCondition/A/_001_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkTWO/PoorCondition/A/_001_125.png new file mode 100644 index 0000000..d46cf46 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkTWO/PoorCondition/A/_001_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkTWO/PoorCondition/A/_002_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkTWO/PoorCondition/A/_002_125.png new file mode 100644 index 0000000..9ca9596 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkTWO/PoorCondition/A/_002_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkTWO/PoorCondition/A/_003_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkTWO/PoorCondition/A/_003_125.png new file mode 100644 index 0000000..7766645 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkTWO/PoorCondition/A/_003_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkTWO/PoorCondition/A/_004_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkTWO/PoorCondition/A/_004_125.png new file mode 100644 index 0000000..c6890dc Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkTWO/PoorCondition/A/_004_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkTWO/PoorCondition/A/_005_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkTWO/PoorCondition/A/_005_125.png new file mode 100644 index 0000000..a87302f Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkTWO/PoorCondition/A/_005_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkTWO/PoorCondition/A/_006_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkTWO/PoorCondition/A/_006_125.png new file mode 100644 index 0000000..be36dcf Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkTWO/PoorCondition/A/_006_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkTWO/PoorCondition/A/_007_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkTWO/PoorCondition/A/_007_125.png new file mode 100644 index 0000000..eda6d4c Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkTWO/PoorCondition/A/_007_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkTWO/PoorCondition/A/_008_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkTWO/PoorCondition/A/_008_125.png new file mode 100644 index 0000000..12edd74 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkTWO/PoorCondition/A/_008_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkTWO/PoorCondition/A/_009_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkTWO/PoorCondition/A/_009_125.png new file mode 100644 index 0000000..90ae103 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkTWO/PoorCondition/A/_009_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkTWO/PoorCondition/B/_000_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkTWO/PoorCondition/B/_000_125.png new file mode 100644 index 0000000..5073c40 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkTWO/PoorCondition/B/_000_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkTWO/PoorCondition/B/_001_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkTWO/PoorCondition/B/_001_125.png new file mode 100644 index 0000000..33af12c Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkTWO/PoorCondition/B/_001_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkTWO/PoorCondition/B/_002_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkTWO/PoorCondition/B/_002_125.png new file mode 100644 index 0000000..d15ecbd Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkTWO/PoorCondition/B/_002_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkTWO/PoorCondition/B/_003_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkTWO/PoorCondition/B/_003_125.png new file mode 100644 index 0000000..33af12c Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkTWO/PoorCondition/B/_003_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkTWO/PoorCondition/B/_004_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkTWO/PoorCondition/B/_004_125.png new file mode 100644 index 0000000..d15ecbd Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkTWO/PoorCondition/B/_004_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkTWO/PoorCondition/B/_005_375.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkTWO/PoorCondition/B/_005_375.png new file mode 100644 index 0000000..33af12c Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkTWO/PoorCondition/B/_005_375.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkTWO/PoorCondition/B/_006_250.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkTWO/PoorCondition/B/_006_250.png new file mode 100644 index 0000000..01b36fe Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkTWO/PoorCondition/B/_006_250.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkTWO/PoorCondition/B/_007_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkTWO/PoorCondition/B/_007_125.png new file mode 100644 index 0000000..d15ecbd Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkTWO/PoorCondition/B/_007_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkTWO/PoorCondition/B/_008_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkTWO/PoorCondition/B/_008_125.png new file mode 100644 index 0000000..33af12c Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkTWO/PoorCondition/B/_008_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkTWO/PoorCondition/B/_009_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkTWO/PoorCondition/B/_009_125.png new file mode 100644 index 0000000..d15ecbd Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkTWO/PoorCondition/B/_009_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkTWO/PoorCondition/c/c_000_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkTWO/PoorCondition/c/c_000_125.png new file mode 100644 index 0000000..12edd74 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkTWO/PoorCondition/c/c_000_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkTWO/PoorCondition/c/c_001_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkTWO/PoorCondition/c/c_001_125.png new file mode 100644 index 0000000..90ae103 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkTWO/PoorCondition/c/c_001_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkTWO/PoorCondition/c/c_002_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkTWO/PoorCondition/c/c_002_125.png new file mode 100644 index 0000000..226201d Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkTWO/PoorCondition/c/c_002_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkTWO/PoorCondition/c/c_003_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkTWO/PoorCondition/c/c_003_125.png new file mode 100644 index 0000000..fa0e912 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkTWO/PoorCondition/c/c_003_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkTWO/PoorCondition/c/c_004_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkTWO/PoorCondition/c/c_004_125.png new file mode 100644 index 0000000..b04982b Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkTWO/PoorCondition/c/c_004_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkTWO/PoorCondition/c/c_005_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkTWO/PoorCondition/c/c_005_125.png new file mode 100644 index 0000000..4a78857 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkTWO/PoorCondition/c/c_005_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkTWO/PoorCondition/c/c_006_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkTWO/PoorCondition/c/c_006_125.png new file mode 100644 index 0000000..c577a57 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkTWO/PoorCondition/c/c_006_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkTWO/PoorCondition/c/c_007_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkTWO/PoorCondition/c/c_007_125.png new file mode 100644 index 0000000..73ea7e4 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkTWO/PoorCondition/c/c_007_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkTWO/PoorCondition/c/c_008_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkTWO/PoorCondition/c/c_008_125.png new file mode 100644 index 0000000..2d1b527 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkTWO/PoorCondition/c/c_008_125.png differ