diff --git a/VPet-Simulator.Tool/Program.cs b/VPet-Simulator.Tool/Program.cs index 914d97c..ce194b2 100644 --- a/VPet-Simulator.Tool/Program.cs +++ b/VPet-Simulator.Tool/Program.cs @@ -46,37 +46,46 @@ namespace VPet_Simulator.Tool { Console.WriteLine("请输入图片位置"); DirectoryInfo directoryInfo = new DirectoryInfo(Console.ReadLine()); - int id = 0; - int rpt = 1; - string hash = null; - FileInfo lastf = null; - foreach (FileInfo fileInfo in directoryInfo.GetFiles()) - { - if (lastf == null) + if (directoryInfo.GetFiles().Length != 0) + AnimationReName(time, directoryInfo); + else + foreach (var fs in directoryInfo.GetDirectories()) { - lastf = fileInfo; - hash = GetFileHash(fileInfo); - continue; + AnimationReName(time, fs); } - string filehash = GetFileHash(fileInfo); - if (hash.Equals(filehash)) - { - //这个文件和上一个文件的hash值相同,这个上个文件 - lastf.Delete(); - lastf = fileInfo; - rpt++; - continue; - } - hash = filehash; - lastf.MoveTo(Path.Combine(directoryInfo.FullName, $"{GetFileName(lastf)}_{id++:D3}_{rpt * time}.png")); - rpt = 1; - lastf = fileInfo; - } - lastf.MoveTo(Path.Combine(directoryInfo.FullName, $"{GetFileName(lastf)}_{id++:D3}_{rpt * time}.png")); - Console.WriteLine("图片处理已完成"); } } - + static void AnimationReName(int time, DirectoryInfo directoryInfo) + { + int id = 0; + int rpt = 1; + string hash = null; + FileInfo lastf = null; + foreach (FileInfo fileInfo in directoryInfo.GetFiles()) + { + if (lastf == null) + { + lastf = fileInfo; + hash = GetFileHash(fileInfo); + continue; + } + string filehash = GetFileHash(fileInfo); + if (hash.Equals(filehash)) + { + //这个文件和上一个文件的hash值相同,这个上个文件 + lastf.Delete(); + lastf = fileInfo; + rpt++; + continue; + } + hash = filehash; + lastf.MoveTo(Path.Combine(directoryInfo.FullName, $"{GetFileName(lastf)}_{id++:D3}_{rpt * time}.png")); + rpt = 1; + lastf = fileInfo; + } + lastf.MoveTo(Path.Combine(directoryInfo.FullName, $"{GetFileName(lastf)}_{id++:D3}_{rpt * time}.png")); + Console.WriteLine("图片处理已完成"); + } //static void FontPetNew() //{ // Console.WriteLine("请输入储存位置"); diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup.lps b/VPet-Simulator.Windows/mod/0000_core/pet/vup.lps index aaf5797..e85a642 100644 --- a/VPet-Simulator.Windows/mod/0000_core/pet/vup.lps +++ b/VPet-Simulator.Windows/mod/0000_core/pet/vup.lps @@ -3,7 +3,8 @@ touchhead:|px#159:|py#16:|sw#189:|sh#178:| touchraised:|happy_px#0:|happy_py#50:|happy_sw#500:|happy_sh#200:|nomal_px#0:|nomal_py#50:|nomal_sw#500:|nomal_sh#200:|poorcondition_px#0:|poorcondition_py#50:|poorcondition_sw#500:|poorcondition_sh#200:|ill_px#0:|ill_py#200:|ill_sw#500:|ill_sh#300:| raisepoint:|happy_x#290:|happy_y#128:|nomal_x#290:|nomal_y#128:|poorcondition_x#290:|poorcondition_y#128:|ill_x#225:|ill_y#115:| 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#Work:|Name#清屏:|MoneyBase#16:|MoneyLevel#1:|Graph#workclean:|StrengthFood#7.5:|StrengthDrink#4.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#Work:|Name#直播:|MoneyBase#30:|MoneyLevel#1.5:|Graph#worktwo:|StrengthFood#4.5:|StrengthDrink#7.5:|Feeling#2.5:|Time#180:|FinishBonus#0.25:|LevelLimit#20:|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:| diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/MOVE/walk.right.faster/B_Happy/哈皮右走_000_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/MOVE/walk.right.faster/B_Happy/_000_125.png similarity index 100% rename from VPet-Simulator.Windows/mod/0000_core/pet/vup/MOVE/walk.right.faster/B_Happy/哈皮右走_000_125.png rename to VPet-Simulator.Windows/mod/0000_core/pet/vup/MOVE/walk.right.faster/B_Happy/_000_125.png diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/MOVE/walk.right.faster/B_Happy/哈皮右走_001_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/MOVE/walk.right.faster/B_Happy/_001_125.png similarity index 77% rename from VPet-Simulator.Windows/mod/0000_core/pet/vup/MOVE/walk.right.faster/B_Happy/哈皮右走_001_125.png rename to VPet-Simulator.Windows/mod/0000_core/pet/vup/MOVE/walk.right.faster/B_Happy/_001_125.png index 9bd13d3..40e8e35 100644 Binary files a/VPet-Simulator.Windows/mod/0000_core/pet/vup/MOVE/walk.right.faster/B_Happy/哈皮右走_001_125.png and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/MOVE/walk.right.faster/B_Happy/_001_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/MOVE/walk.right.faster/B_Happy/哈皮右走_004_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/MOVE/walk.right.faster/B_Happy/_002_125.png similarity index 80% rename from VPet-Simulator.Windows/mod/0000_core/pet/vup/MOVE/walk.right.faster/B_Happy/哈皮右走_004_125.png rename to VPet-Simulator.Windows/mod/0000_core/pet/vup/MOVE/walk.right.faster/B_Happy/_002_125.png index 20a58ec..e3b767c 100644 Binary files a/VPet-Simulator.Windows/mod/0000_core/pet/vup/MOVE/walk.right.faster/B_Happy/哈皮右走_004_125.png and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/MOVE/walk.right.faster/B_Happy/_002_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/MOVE/walk.right.faster/B_Happy/哈皮右走_003_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/MOVE/walk.right.faster/B_Happy/_003_125.png similarity index 69% rename from VPet-Simulator.Windows/mod/0000_core/pet/vup/MOVE/walk.right.faster/B_Happy/哈皮右走_003_125.png rename to VPet-Simulator.Windows/mod/0000_core/pet/vup/MOVE/walk.right.faster/B_Happy/_003_125.png index a287146..4b6b994 100644 Binary files a/VPet-Simulator.Windows/mod/0000_core/pet/vup/MOVE/walk.right.faster/B_Happy/哈皮右走_003_125.png and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/MOVE/walk.right.faster/B_Happy/_003_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/MOVE/walk.right.faster/B_Happy/哈皮右走_002_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/MOVE/walk.right.faster/B_Happy/_004_125.png similarity index 80% rename from VPet-Simulator.Windows/mod/0000_core/pet/vup/MOVE/walk.right.faster/B_Happy/哈皮右走_002_125.png rename to VPet-Simulator.Windows/mod/0000_core/pet/vup/MOVE/walk.right.faster/B_Happy/_004_125.png index 20a58ec..e3b767c 100644 Binary files a/VPet-Simulator.Windows/mod/0000_core/pet/vup/MOVE/walk.right.faster/B_Happy/哈皮右走_002_125.png and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/MOVE/walk.right.faster/B_Happy/_004_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/MOVE/walk.right.faster/B_Happy/哈皮右走_005_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/MOVE/walk.right.faster/B_Happy/_005_125.png similarity index 100% rename from VPet-Simulator.Windows/mod/0000_core/pet/vup/MOVE/walk.right.faster/B_Happy/哈皮右走_005_125.png rename to VPet-Simulator.Windows/mod/0000_core/pet/vup/MOVE/walk.right.faster/B_Happy/_005_125.png diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/MOVE/walk.right.faster/B_Happy/哈皮右走_006_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/MOVE/walk.right.faster/B_Happy/_006_125.png similarity index 83% rename from VPet-Simulator.Windows/mod/0000_core/pet/vup/MOVE/walk.right.faster/B_Happy/哈皮右走_006_125.png rename to VPet-Simulator.Windows/mod/0000_core/pet/vup/MOVE/walk.right.faster/B_Happy/_006_125.png index 898ab25..e45a9cc 100644 Binary files a/VPet-Simulator.Windows/mod/0000_core/pet/vup/MOVE/walk.right.faster/B_Happy/哈皮右走_006_125.png and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/MOVE/walk.right.faster/B_Happy/_006_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/MOVE/walk.right.faster/B_Happy/哈皮右走_007_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/MOVE/walk.right.faster/B_Happy/_007_125.png similarity index 80% rename from VPet-Simulator.Windows/mod/0000_core/pet/vup/MOVE/walk.right.faster/B_Happy/哈皮右走_007_125.png rename to VPet-Simulator.Windows/mod/0000_core/pet/vup/MOVE/walk.right.faster/B_Happy/_007_125.png index 42a3233..d449b71 100644 Binary files a/VPet-Simulator.Windows/mod/0000_core/pet/vup/MOVE/walk.right.faster/B_Happy/哈皮右走_007_125.png and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/MOVE/walk.right.faster/B_Happy/_007_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/MOVE/walk.right.faster/B_Happy/哈皮右走_008_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/MOVE/walk.right.faster/B_Happy/_008_125.png similarity index 78% rename from VPet-Simulator.Windows/mod/0000_core/pet/vup/MOVE/walk.right.faster/B_Happy/哈皮右走_008_125.png rename to VPet-Simulator.Windows/mod/0000_core/pet/vup/MOVE/walk.right.faster/B_Happy/_008_125.png index 4040dfc..4c20b9c 100644 Binary files a/VPet-Simulator.Windows/mod/0000_core/pet/vup/MOVE/walk.right.faster/B_Happy/哈皮右走_008_125.png and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/MOVE/walk.right.faster/B_Happy/_008_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/MOVE/walk.right.faster/B_Happy/哈皮右走_009_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/MOVE/walk.right.faster/B_Happy/_009_125.png similarity index 80% rename from VPet-Simulator.Windows/mod/0000_core/pet/vup/MOVE/walk.right.faster/B_Happy/哈皮右走_009_125.png rename to VPet-Simulator.Windows/mod/0000_core/pet/vup/MOVE/walk.right.faster/B_Happy/_009_125.png index ebfd173..08ef2e9 100644 Binary files a/VPet-Simulator.Windows/mod/0000_core/pet/vup/MOVE/walk.right.faster/B_Happy/哈皮右走_009_125.png and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/MOVE/walk.right.faster/B_Happy/_009_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Happy/A/_000_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Happy/A/_000_125.png new file mode 100644 index 0000000..166ce8b Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Happy/A/_000_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Happy/A/_001_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Happy/A/_001_125.png new file mode 100644 index 0000000..f2edda1 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Happy/A/_001_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Happy/A/_002_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Happy/A/_002_125.png new file mode 100644 index 0000000..94bd75a Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Happy/A/_002_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Happy/A/_003_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Happy/A/_003_125.png new file mode 100644 index 0000000..5278108 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Happy/A/_003_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Happy/A/_004_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Happy/A/_004_125.png new file mode 100644 index 0000000..ae5328d Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Happy/A/_004_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Happy/B_1/_000_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Happy/B_1/_000_125.png new file mode 100644 index 0000000..df8f1bd Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Happy/B_1/_000_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Happy/B_1/_001_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Happy/B_1/_001_125.png new file mode 100644 index 0000000..255fe69 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Happy/B_1/_001_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Happy/B_1/_002_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Happy/B_1/_002_125.png new file mode 100644 index 0000000..a71c48a Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Happy/B_1/_002_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Happy/B_1/_003_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Happy/B_1/_003_125.png new file mode 100644 index 0000000..2339f3b Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Happy/B_1/_003_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Happy/B_1/_004_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Happy/B_1/_004_125.png new file mode 100644 index 0000000..df8f1bd Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Happy/B_1/_004_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Happy/B_1/_005_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Happy/B_1/_005_125.png new file mode 100644 index 0000000..c019cd0 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Happy/B_1/_005_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Happy/B_1/_006_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Happy/B_1/_006_125.png new file mode 100644 index 0000000..a71c48a Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Happy/B_1/_006_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Happy/B_1/_007_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Happy/B_1/_007_125.png new file mode 100644 index 0000000..1f8410c Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Happy/B_1/_007_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Happy/B_2/_000_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Happy/B_2/_000_125.png new file mode 100644 index 0000000..9fd77e9 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Happy/B_2/_000_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Happy/B_2/_001_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Happy/B_2/_001_125.png new file mode 100644 index 0000000..a67d3d2 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Happy/B_2/_001_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Happy/B_2/_002_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Happy/B_2/_002_125.png new file mode 100644 index 0000000..a3f3046 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Happy/B_2/_002_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Happy/B_2/_003_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Happy/B_2/_003_125.png new file mode 100644 index 0000000..3e6229c Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Happy/B_2/_003_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Happy/B_2/_004_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Happy/B_2/_004_125.png new file mode 100644 index 0000000..9fd77e9 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Happy/B_2/_004_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Happy/B_2/_005_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Happy/B_2/_005_125.png new file mode 100644 index 0000000..a67d3d2 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Happy/B_2/_005_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Happy/B_2/_006_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Happy/B_2/_006_125.png new file mode 100644 index 0000000..a3f3046 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Happy/B_2/_006_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Happy/B_2/_007_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Happy/B_2/_007_125.png new file mode 100644 index 0000000..3e6229c Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Happy/B_2/_007_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Happy/B_3/_000_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Happy/B_3/_000_125.png new file mode 100644 index 0000000..ebb701e Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Happy/B_3/_000_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Happy/B_3/_001_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Happy/B_3/_001_125.png new file mode 100644 index 0000000..b6d19be Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Happy/B_3/_001_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Happy/B_3/_002_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Happy/B_3/_002_125.png new file mode 100644 index 0000000..ebb701e Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Happy/B_3/_002_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Happy/B_3/_003_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Happy/B_3/_003_125.png new file mode 100644 index 0000000..31e7940 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Happy/B_3/_003_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Happy/B_3/_004_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Happy/B_3/_004_125.png new file mode 100644 index 0000000..c019cd0 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Happy/B_3/_004_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Happy/B_3/_005_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Happy/B_3/_005_125.png new file mode 100644 index 0000000..b6d19be Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Happy/B_3/_005_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Happy/B_3/_006_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Happy/B_3/_006_125.png new file mode 100644 index 0000000..c019cd0 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Happy/B_3/_006_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Happy/B_3/_007_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Happy/B_3/_007_125.png new file mode 100644 index 0000000..b6d19be Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Happy/B_3/_007_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Happy/B_4/_000_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Happy/B_4/_000_125.png new file mode 100644 index 0000000..ebb701e Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Happy/B_4/_000_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Happy/B_4/_001_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Happy/B_4/_001_125.png new file mode 100644 index 0000000..31e7940 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Happy/B_4/_001_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Happy/B_4/_002_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Happy/B_4/_002_125.png new file mode 100644 index 0000000..ebb701e Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Happy/B_4/_002_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Happy/B_4/_003_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Happy/B_4/_003_125.png new file mode 100644 index 0000000..31e7940 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Happy/B_4/_003_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Happy/B_4/_004_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Happy/B_4/_004_125.png new file mode 100644 index 0000000..ebb701e Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Happy/B_4/_004_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Happy/B_4/_005_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Happy/B_4/_005_125.png new file mode 100644 index 0000000..31e7940 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Happy/B_4/_005_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Happy/B_4/_006_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Happy/B_4/_006_125.png new file mode 100644 index 0000000..ebb701e Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Happy/B_4/_006_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Happy/B_4/_007_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Happy/B_4/_007_125.png new file mode 100644 index 0000000..31e7940 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Happy/B_4/_007_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Happy/B_5/_000_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Happy/B_5/_000_125.png new file mode 100644 index 0000000..2077666 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Happy/B_5/_000_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Happy/B_5/_001_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Happy/B_5/_001_125.png new file mode 100644 index 0000000..1e739cb Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Happy/B_5/_001_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Happy/B_5/_002_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Happy/B_5/_002_125.png new file mode 100644 index 0000000..107b625 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Happy/B_5/_002_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Happy/B_5/_003_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Happy/B_5/_003_125.png new file mode 100644 index 0000000..041bee5 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Happy/B_5/_003_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Happy/B_5/_004_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Happy/B_5/_004_125.png new file mode 100644 index 0000000..c0c4794 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Happy/B_5/_004_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Happy/B_5/_005_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Happy/B_5/_005_125.png new file mode 100644 index 0000000..ebb701e Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Happy/B_5/_005_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Happy/B_5/_006_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Happy/B_5/_006_125.png new file mode 100644 index 0000000..31e7940 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Happy/B_5/_006_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Happy/B_5/_007_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Happy/B_5/_007_125.png new file mode 100644 index 0000000..e052694 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Happy/B_5/_007_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Happy/B_6/_000_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Happy/B_6/_000_125.png new file mode 100644 index 0000000..9637410 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Happy/B_6/_000_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Happy/B_6/_001_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Happy/B_6/_001_125.png new file mode 100644 index 0000000..a661c7e Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Happy/B_6/_001_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Happy/B_6/_002_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Happy/B_6/_002_125.png new file mode 100644 index 0000000..6f90bee Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Happy/B_6/_002_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Happy/B_6/_003_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Happy/B_6/_003_125.png new file mode 100644 index 0000000..9637410 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Happy/B_6/_003_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Happy/B_6/_004_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Happy/B_6/_004_125.png new file mode 100644 index 0000000..a661c7e Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Happy/B_6/_004_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Happy/B_6/_005_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Happy/B_6/_005_125.png new file mode 100644 index 0000000..6f90bee Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Happy/B_6/_005_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Happy/B_7/_000_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Happy/B_7/_000_125.png new file mode 100644 index 0000000..fe33c7b Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Happy/B_7/_000_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Happy/B_7/_001_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Happy/B_7/_001_125.png new file mode 100644 index 0000000..a661c7e Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Happy/B_7/_001_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Happy/B_7/_002_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Happy/B_7/_002_125.png new file mode 100644 index 0000000..6f90bee Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Happy/B_7/_002_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Happy/B_7/_003_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Happy/B_7/_003_125.png new file mode 100644 index 0000000..fe33c7b Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Happy/B_7/_003_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Happy/B_7/_004_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Happy/B_7/_004_125.png new file mode 100644 index 0000000..a661c7e Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Happy/B_7/_004_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Happy/B_7/_005_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Happy/B_7/_005_125.png new file mode 100644 index 0000000..6f90bee Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Happy/B_7/_005_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Happy/C/_000_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Happy/C/_000_125.png new file mode 100644 index 0000000..a4c0d03 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Happy/C/_000_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Happy/C/_001_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Happy/C/_001_125.png new file mode 100644 index 0000000..af89a32 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Happy/C/_001_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Happy/C/_002_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Happy/C/_002_125.png new file mode 100644 index 0000000..0f64832 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Happy/C/_002_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Happy/C/_003_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Happy/C/_003_125.png new file mode 100644 index 0000000..0cc9095 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Happy/C/_003_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Happy/C/_004_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Happy/C/_004_125.png new file mode 100644 index 0000000..c3c3610 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Happy/C/_004_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Happy/C/_005_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Happy/C/_005_125.png new file mode 100644 index 0000000..0cc9095 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Happy/C/_005_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Happy/C/_006_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Happy/C/_006_125.png new file mode 100644 index 0000000..c3c3610 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Happy/C/_006_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Happy/C/_007_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Happy/C/_007_125.png new file mode 100644 index 0000000..000b2e1 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Happy/C/_007_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Nomal/A/_000_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Nomal/A/_000_125.png new file mode 100644 index 0000000..851cd4e Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Nomal/A/_000_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Nomal/A/_001_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Nomal/A/_001_125.png new file mode 100644 index 0000000..f2edda1 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Nomal/A/_001_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Nomal/A/_002_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Nomal/A/_002_125.png new file mode 100644 index 0000000..94bd75a Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Nomal/A/_002_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Nomal/A/_003_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Nomal/A/_003_125.png new file mode 100644 index 0000000..26b58de Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Nomal/A/_003_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Nomal/A/_004_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Nomal/A/_004_125.png new file mode 100644 index 0000000..49aee27 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Nomal/A/_004_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Nomal/B_1/_000_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Nomal/B_1/_000_125.png new file mode 100644 index 0000000..2077666 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Nomal/B_1/_000_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Nomal/B_1/_001_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Nomal/B_1/_001_125.png new file mode 100644 index 0000000..0fe3433 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Nomal/B_1/_001_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Nomal/B_1/_002_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Nomal/B_1/_002_125.png new file mode 100644 index 0000000..d7a9472 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Nomal/B_1/_002_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Nomal/B_1/_003_375.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Nomal/B_1/_003_375.png new file mode 100644 index 0000000..e88b3b6 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Nomal/B_1/_003_375.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Nomal/B_1/_004_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Nomal/B_1/_004_125.png new file mode 100644 index 0000000..0fe3433 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Nomal/B_1/_004_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Nomal/B_1/_005_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Nomal/B_1/_005_125.png new file mode 100644 index 0000000..d7a9472 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Nomal/B_1/_005_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Nomal/B_2/_000_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Nomal/B_2/_000_125.png new file mode 100644 index 0000000..c0c4794 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Nomal/B_2/_000_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Nomal/B_2/_001_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Nomal/B_2/_001_125.png new file mode 100644 index 0000000..3ca01c8 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Nomal/B_2/_001_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Nomal/B_2/_002_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Nomal/B_2/_002_125.png new file mode 100644 index 0000000..42973b3 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Nomal/B_2/_002_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Nomal/B_2/_003_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Nomal/B_2/_003_125.png new file mode 100644 index 0000000..a94ab5f Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Nomal/B_2/_003_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Nomal/B_2/_004_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Nomal/B_2/_004_125.png new file mode 100644 index 0000000..c0c4794 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Nomal/B_2/_004_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Nomal/B_2/_005_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Nomal/B_2/_005_125.png new file mode 100644 index 0000000..eceb7fa Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Nomal/B_2/_005_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Nomal/B_2/_006_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Nomal/B_2/_006_125.png new file mode 100644 index 0000000..42973b3 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Nomal/B_2/_006_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Nomal/B_2/_007_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Nomal/B_2/_007_125.png new file mode 100644 index 0000000..a94ab5f Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Nomal/B_2/_007_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Nomal/B_3/_000_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Nomal/B_3/_000_125.png new file mode 100644 index 0000000..a94ab5f Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Nomal/B_3/_000_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Nomal/B_3/_001_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Nomal/B_3/_001_125.png new file mode 100644 index 0000000..c0626e1 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Nomal/B_3/_001_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Nomal/B_3/_002_250.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Nomal/B_3/_002_250.png new file mode 100644 index 0000000..a94ab5f Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Nomal/B_3/_002_250.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Nomal/B_3/_003_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Nomal/B_3/_003_125.png new file mode 100644 index 0000000..c0c4794 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Nomal/B_3/_003_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Nomal/B_3/_004_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Nomal/B_3/_004_125.png new file mode 100644 index 0000000..eceb7fa Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Nomal/B_3/_004_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Nomal/B_3/_005_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Nomal/B_3/_005_125.png new file mode 100644 index 0000000..42973b3 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Nomal/B_3/_005_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Nomal/B_3/_006_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Nomal/B_3/_006_125.png new file mode 100644 index 0000000..eceb7fa Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Nomal/B_3/_006_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Nomal/B_4/_000_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Nomal/B_4/_000_125.png new file mode 100644 index 0000000..fe33c7b Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Nomal/B_4/_000_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Nomal/B_4/_001_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Nomal/B_4/_001_125.png new file mode 100644 index 0000000..ae05fb3 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Nomal/B_4/_001_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Nomal/B_4/_002_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Nomal/B_4/_002_125.png new file mode 100644 index 0000000..25a8d70 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Nomal/B_4/_002_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Nomal/B_4/_003_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Nomal/B_4/_003_125.png new file mode 100644 index 0000000..fe33c7b Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Nomal/B_4/_003_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Nomal/B_4/_004_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Nomal/B_4/_004_125.png new file mode 100644 index 0000000..ae05fb3 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Nomal/B_4/_004_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Nomal/B_4/_005_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Nomal/B_4/_005_125.png new file mode 100644 index 0000000..25a8d70 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Nomal/B_4/_005_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Nomal/B_5/_000_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Nomal/B_5/_000_125.png new file mode 100644 index 0000000..d05c642 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Nomal/B_5/_000_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Nomal/B_5/_001_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Nomal/B_5/_001_125.png new file mode 100644 index 0000000..0bb436b Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Nomal/B_5/_001_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Nomal/B_5/_002_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Nomal/B_5/_002_125.png new file mode 100644 index 0000000..17439c4 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Nomal/B_5/_002_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Nomal/B_5/_003_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Nomal/B_5/_003_125.png new file mode 100644 index 0000000..d05c642 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Nomal/B_5/_003_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Nomal/B_5/_004_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Nomal/B_5/_004_125.png new file mode 100644 index 0000000..0bb436b Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Nomal/B_5/_004_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Nomal/B_5/_005_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Nomal/B_5/_005_125.png new file mode 100644 index 0000000..17439c4 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Nomal/B_5/_005_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Nomal/B_6/_000_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Nomal/B_6/_000_125.png new file mode 100644 index 0000000..d05c642 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Nomal/B_6/_000_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Nomal/B_6/_001_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Nomal/B_6/_001_125.png new file mode 100644 index 0000000..0bb436b Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Nomal/B_6/_001_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Nomal/B_6/_002_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Nomal/B_6/_002_125.png new file mode 100644 index 0000000..17439c4 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Nomal/B_6/_002_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Nomal/B_6/_003_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Nomal/B_6/_003_125.png new file mode 100644 index 0000000..fe33c7b Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Nomal/B_6/_003_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Nomal/B_6/_004_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Nomal/B_6/_004_125.png new file mode 100644 index 0000000..0bb436b Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Nomal/B_6/_004_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Nomal/B_6/_005_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Nomal/B_6/_005_125.png new file mode 100644 index 0000000..17439c4 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Nomal/B_6/_005_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Nomal/B_7/_000_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Nomal/B_7/_000_125.png new file mode 100644 index 0000000..a94ab5f Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Nomal/B_7/_000_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Nomal/B_7/_001_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Nomal/B_7/_001_125.png new file mode 100644 index 0000000..c0626e1 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Nomal/B_7/_001_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Nomal/B_7/_002_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Nomal/B_7/_002_125.png new file mode 100644 index 0000000..a94ab5f Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Nomal/B_7/_002_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Nomal/B_7/_003_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Nomal/B_7/_003_125.png new file mode 100644 index 0000000..c0626e1 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Nomal/B_7/_003_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Nomal/B_7/_004_500.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Nomal/B_7/_004_500.png new file mode 100644 index 0000000..a94ab5f Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Nomal/B_7/_004_500.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Nomal/C/_000_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Nomal/C/_000_125.png new file mode 100644 index 0000000..0c0a843 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Nomal/C/_000_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Nomal/C/_001_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Nomal/C/_001_125.png new file mode 100644 index 0000000..8eb9e52 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Nomal/C/_001_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Nomal/C/_002_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Nomal/C/_002_125.png new file mode 100644 index 0000000..00b9854 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Nomal/C/_002_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Nomal/C/_003_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Nomal/C/_003_125.png new file mode 100644 index 0000000..d0a094b Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Nomal/C/_003_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Nomal/C/_004_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Nomal/C/_004_125.png new file mode 100644 index 0000000..8684e26 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Nomal/C/_004_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Nomal/C/_005_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Nomal/C/_005_125.png new file mode 100644 index 0000000..d0a094b Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Nomal/C/_005_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Nomal/C/_006_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Nomal/C/_006_125.png new file mode 100644 index 0000000..8684e26 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Nomal/C/_006_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Nomal/C/_007_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Nomal/C/_007_125.png new file mode 100644 index 0000000..851a15b Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/Nomal/C/_007_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/PoorCondition/A/_000_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/PoorCondition/A/_000_125.png new file mode 100644 index 0000000..59fcfd6 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/PoorCondition/A/_000_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/PoorCondition/A/_001_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/PoorCondition/A/_001_125.png new file mode 100644 index 0000000..467125c Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/PoorCondition/A/_001_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/PoorCondition/A/_002_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/PoorCondition/A/_002_125.png new file mode 100644 index 0000000..0d8086d Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/PoorCondition/A/_002_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/PoorCondition/A/_003_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/PoorCondition/A/_003_125.png new file mode 100644 index 0000000..e969623 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/PoorCondition/A/_003_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/PoorCondition/A/_004_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/PoorCondition/A/_004_125.png new file mode 100644 index 0000000..02e75e3 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/PoorCondition/A/_004_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/PoorCondition/A/时间轴 1_005_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/PoorCondition/A/时间轴 1_005_125.png new file mode 100644 index 0000000..59fcfd6 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/PoorCondition/A/时间轴 1_005_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/PoorCondition/A/时间轴 1_006_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/PoorCondition/A/时间轴 1_006_125.png new file mode 100644 index 0000000..467125c Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/PoorCondition/A/时间轴 1_006_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/PoorCondition/A/时间轴 1_007_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/PoorCondition/A/时间轴 1_007_125.png new file mode 100644 index 0000000..0d8086d Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/PoorCondition/A/时间轴 1_007_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/PoorCondition/A/时间轴 1_008_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/PoorCondition/A/时间轴 1_008_125.png new file mode 100644 index 0000000..e969623 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/PoorCondition/A/时间轴 1_008_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/PoorCondition/A/时间轴 1_009_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/PoorCondition/A/时间轴 1_009_125.png new file mode 100644 index 0000000..02e75e3 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/PoorCondition/A/时间轴 1_009_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/PoorCondition/B_1/_000_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/PoorCondition/B_1/_000_125.png new file mode 100644 index 0000000..c64c696 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/PoorCondition/B_1/_000_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/PoorCondition/B_1/_001_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/PoorCondition/B_1/_001_125.png new file mode 100644 index 0000000..e4c72ef Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/PoorCondition/B_1/_001_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/PoorCondition/B_1/_002_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/PoorCondition/B_1/_002_125.png new file mode 100644 index 0000000..c64c696 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/PoorCondition/B_1/_002_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/PoorCondition/B_1/_003_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/PoorCondition/B_1/_003_125.png new file mode 100644 index 0000000..e4c72ef Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/PoorCondition/B_1/_003_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/PoorCondition/B_1/_004_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/PoorCondition/B_1/_004_125.png new file mode 100644 index 0000000..c64c696 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/PoorCondition/B_1/_004_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/PoorCondition/B_1/_005_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/PoorCondition/B_1/_005_125.png new file mode 100644 index 0000000..e4c72ef Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/PoorCondition/B_1/_005_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/PoorCondition/B_1/_006_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/PoorCondition/B_1/_006_125.png new file mode 100644 index 0000000..c64c696 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/PoorCondition/B_1/_006_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/PoorCondition/B_1/_007_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/PoorCondition/B_1/_007_125.png new file mode 100644 index 0000000..e4c72ef Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/PoorCondition/B_1/_007_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/PoorCondition/B_2/_000_1000.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/PoorCondition/B_2/_000_1000.png new file mode 100644 index 0000000..1ab2af5 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/PoorCondition/B_2/_000_1000.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/PoorCondition/B_3/_000_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/PoorCondition/B_3/_000_125.png new file mode 100644 index 0000000..1ab2af5 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/PoorCondition/B_3/_000_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/PoorCondition/B_3/_001_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/PoorCondition/B_3/_001_125.png new file mode 100644 index 0000000..9fbd0b9 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/PoorCondition/B_3/_001_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/PoorCondition/B_3/_002_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/PoorCondition/B_3/_002_125.png new file mode 100644 index 0000000..0762d66 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/PoorCondition/B_3/_002_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/PoorCondition/B_3/_003_625.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/PoorCondition/B_3/_003_625.png new file mode 100644 index 0000000..1ab2af5 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/PoorCondition/B_3/_003_625.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/PoorCondition/B_4/_000_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/PoorCondition/B_4/_000_125.png new file mode 100644 index 0000000..26a43cd Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/PoorCondition/B_4/_000_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/PoorCondition/B_4/_001_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/PoorCondition/B_4/_001_125.png new file mode 100644 index 0000000..270d3ab Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/PoorCondition/B_4/_001_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/PoorCondition/B_4/_002_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/PoorCondition/B_4/_002_125.png new file mode 100644 index 0000000..f2d44c3 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/PoorCondition/B_4/_002_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/PoorCondition/B_4/_003_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/PoorCondition/B_4/_003_125.png new file mode 100644 index 0000000..2b9f014 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/PoorCondition/B_4/_003_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/PoorCondition/B_4/_004_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/PoorCondition/B_4/_004_125.png new file mode 100644 index 0000000..26a43cd Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/PoorCondition/B_4/_004_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/PoorCondition/B_4/_005_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/PoorCondition/B_4/_005_125.png new file mode 100644 index 0000000..9fbd0b9 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/PoorCondition/B_4/_005_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/PoorCondition/B_4/_006_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/PoorCondition/B_4/_006_125.png new file mode 100644 index 0000000..f2d44c3 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/PoorCondition/B_4/_006_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/PoorCondition/B_4/_007_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/PoorCondition/B_4/_007_125.png new file mode 100644 index 0000000..1ab2af5 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/PoorCondition/B_4/_007_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/PoorCondition/B_5/_000_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/PoorCondition/B_5/_000_125.png new file mode 100644 index 0000000..23be658 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/PoorCondition/B_5/_000_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/PoorCondition/B_5/_001_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/PoorCondition/B_5/_001_125.png new file mode 100644 index 0000000..dfc0dab Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/PoorCondition/B_5/_001_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/PoorCondition/B_5/_002_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/PoorCondition/B_5/_002_125.png new file mode 100644 index 0000000..23d02e5 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/PoorCondition/B_5/_002_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/PoorCondition/B_5/_003_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/PoorCondition/B_5/_003_125.png new file mode 100644 index 0000000..495befc Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/PoorCondition/B_5/_003_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/PoorCondition/B_5/_004_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/PoorCondition/B_5/_004_125.png new file mode 100644 index 0000000..2c6036b Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/PoorCondition/B_5/_004_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/PoorCondition/B_5/_005_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/PoorCondition/B_5/_005_125.png new file mode 100644 index 0000000..495befc Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/PoorCondition/B_5/_005_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/PoorCondition/B_6/_000_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/PoorCondition/B_6/_000_125.png new file mode 100644 index 0000000..23be658 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/PoorCondition/B_6/_000_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/PoorCondition/B_6/_001_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/PoorCondition/B_6/_001_125.png new file mode 100644 index 0000000..dfc0dab Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/PoorCondition/B_6/_001_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/PoorCondition/B_6/_002_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/PoorCondition/B_6/_002_125.png new file mode 100644 index 0000000..7c8e958 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/PoorCondition/B_6/_002_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/PoorCondition/B_6/_003_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/PoorCondition/B_6/_003_125.png new file mode 100644 index 0000000..4faa39f Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/PoorCondition/B_6/_003_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/PoorCondition/B_6/_004_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/PoorCondition/B_6/_004_125.png new file mode 100644 index 0000000..94d1432 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/PoorCondition/B_6/_004_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/PoorCondition/B_6/_005_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/PoorCondition/B_6/_005_125.png new file mode 100644 index 0000000..4faa39f Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/PoorCondition/B_6/_005_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/PoorCondition/C/_000_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/PoorCondition/C/_000_125.png new file mode 100644 index 0000000..77db57b Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/PoorCondition/C/_000_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/PoorCondition/C/_001_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/PoorCondition/C/_001_125.png new file mode 100644 index 0000000..4ce710d Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/PoorCondition/C/_001_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/PoorCondition/C/_002_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/PoorCondition/C/_002_125.png new file mode 100644 index 0000000..dd40dbc Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/PoorCondition/C/_002_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/PoorCondition/C/_003_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/PoorCondition/C/_003_125.png new file mode 100644 index 0000000..b173ab3 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/PoorCondition/C/_003_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/PoorCondition/C/_004_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/PoorCondition/C/_004_125.png new file mode 100644 index 0000000..1968332 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/PoorCondition/C/_004_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/PoorCondition/C/_005_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/PoorCondition/C/_005_125.png new file mode 100644 index 0000000..b173ab3 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/PoorCondition/C/_005_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/PoorCondition/C/_006_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/PoorCondition/C/_006_125.png new file mode 100644 index 0000000..1968332 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/PoorCondition/C/_006_125.png differ diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/PoorCondition/C/_007_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/PoorCondition/C/_007_125.png new file mode 100644 index 0000000..2bdcad0 Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/WORK/WorkClean/PoorCondition/C/_007_125.png differ