diff --git a/VPet-Simulator.Windows/Function/Setting.cs b/VPet-Simulator.Windows/Function/Setting.cs
index 8ebe875..de23e79 100644
--- a/VPet-Simulator.Windows/Function/Setting.cs
+++ b/VPet-Simulator.Windows/Function/Setting.cs
@@ -267,5 +267,13 @@ namespace VPet_Simulator.Windows
get => !this["gameconfig"].GetBool("startbootsteam");
set => this["gameconfig"].SetBool("startbootsteam", !value);
}
+ ///
+ /// 桌宠选择内容
+ ///
+ public string PetGraph
+ {
+ get => this["gameconfig"].GetString("petgraph", "默认虚拟桌宠");
+ set => this["gameconfig"].SetString("petgraph", value);
+ }
}
}
diff --git a/VPet-Simulator.Windows/MainWindow.xaml.cs b/VPet-Simulator.Windows/MainWindow.xaml.cs
index 5cdaeb5..519830f 100644
--- a/VPet-Simulator.Windows/MainWindow.xaml.cs
+++ b/VPet-Simulator.Windows/MainWindow.xaml.cs
@@ -157,7 +157,8 @@ namespace VPet_Simulator.Windows
Dispatcher.Invoke(new Action(() =>
{
LoadingText.Content = "尝试加载动画和生成缓存";
- Core.Graph = Pets[0].Graph();
+ var pl = Pets.Find(x => x.Name == Set.PetGraph);
+ Core.Graph = pl == null ? Pets[0].Graph() : pl.Graph();
LoadingText.Content = "正在加载游戏";
winSetting = new winGameSetting(this);
Main = new Main(Core) { };
@@ -224,7 +225,7 @@ namespace VPet_Simulator.Windows
{
Set["SingleTips"].SetDateTime("update", DateTime.Now);
notifyIcon.ShowBalloonTip(10, "更新通知 02/17",
- "现在使用缓存机制,不仅占用小,而且再也不会有那种闪闪的问题了!\n现已支持开机启动功能,前往设置设置开机启动", ToolTipIcon.Info);
+ "现在使用缓存机制,不仅占用小,而且再也不会有那种闪闪的问题了!\n现已支持开机启动功能,前往设置设置开机启动", ToolTipIcon.Info);
}
}));
}
diff --git a/VPet-Simulator.Windows/WinDesign/winGameSetting.xaml b/VPet-Simulator.Windows/WinDesign/winGameSetting.xaml
index 6ac4302..6fac83f 100644
--- a/VPet-Simulator.Windows/WinDesign/winGameSetting.xaml
+++ b/VPet-Simulator.Windows/WinDesign/winGameSetting.xaml
@@ -39,7 +39,8 @@
-
+
+
+
+ Style="{DynamicResource StandardComboBoxStyle}" Margin="0,3,0,2" SelectionChanged="PetBox_SelectionChanged" />
+
@@ -186,6 +192,7 @@
Background="{x:Null}" />
+
diff --git a/VPet-Simulator.Windows/WinDesign/winGameSetting.xaml.cs b/VPet-Simulator.Windows/WinDesign/winGameSetting.xaml.cs
index 554da40..4c71d3c 100644
--- a/VPet-Simulator.Windows/WinDesign/winGameSetting.xaml.cs
+++ b/VPet-Simulator.Windows/WinDesign/winGameSetting.xaml.cs
@@ -60,7 +60,11 @@ namespace VPet_Simulator.Windows
{
PetBox.Items.Add(pl.Name);
}
- PetBox.SelectedIndex = 0;
+ int petboxid = mw.Pets.FindIndex(x => x.Name == mw.Set.PetGraph);
+ if (petboxid == -1)
+ petboxid = 0;
+ PetBox.SelectedIndex = petboxid;
+ PetIntor.Text = mw.Pets[petboxid].Intor;
foreach (ComboBoxItem v in CBAutoSave.Items)
{
@@ -588,14 +592,27 @@ namespace VPet_Simulator.Windows
}
private void StartUpBox_Checked(object sender, RoutedEventArgs e)
{
+ if (!AllowChange)
+ return;
mw.Set.StartUPBoot = StartUpBox.IsChecked == true;
GenStartUP();
}
private void StartUpSteamBox_Checked(object sender, RoutedEventArgs e)
{
+ if (!AllowChange)
+ return;
mw.Set.StartUPBootSteam = StartUpSteamBox.IsChecked == true;
GenStartUP();
}
+
+ private void PetBox_SelectionChanged(object sender, SelectionChangedEventArgs e)
+ {
+ if (!AllowChange)
+ return;
+ mw.Set.PetGraph = (string)PetBox.SelectedItem;
+ PetIntor.Text = mw.Pets[PetBox.SelectedIndex].Intor;
+ ButtonRestartGraph.Visibility = Visibility.Visible;
+ }
}
}
diff --git a/VPet-Simulator.Windows/mod/1000_FontPet/icon.png b/VPet-Simulator.Windows/mod/1000_FontPet/icon.png
new file mode 100644
index 0000000..78c1176
Binary files /dev/null and b/VPet-Simulator.Windows/mod/1000_FontPet/icon.png differ
diff --git a/VPet-Simulator.Windows/mod/1000_FontPet/info.lps b/VPet-Simulator.Windows/mod/1000_FontPet/info.lps
new file mode 100644
index 0000000..f6e7404
--- /dev/null
+++ b/VPet-Simulator.Windows/mod/1000_FontPet/info.lps
@@ -0,0 +1,4 @@
+vupmod#FontPet:|author#LorisYounger:|gamever#20:|ver#100:|
+intro#来试试这个文字版的单帧宠物吧/com这个算是单帧宠物示例模组:|
+authorid#253101309:|
+itemid#2934625683:|
\ No newline at end of file
diff --git a/VPet-Simulator.Windows/mod/1000_FontPet/pet/font.lps b/VPet-Simulator.Windows/mod/1000_FontPet/pet/font.lps
new file mode 100644
index 0000000..c4ec9aa
--- /dev/null
+++ b/VPet-Simulator.Windows/mod/1000_FontPet/pet/font.lps
@@ -0,0 +1,6 @@
+pet#文字宠物:|intor#来试试这个文字版的单帧宠物吧:|path#font:|
+touchhead:|px#0:|py#0:|sw#500:|sh#200:|
+touchraised:|px#0:|py#0:|sw#500:|sh#200:|
+raisepoint:|x#250:|y#125:|
+speed:|walk#20:|climb#10:|climbtop#8:|crawl#8:|fallx#14:|fally#10:|crawl#10:|
+locate:|climbleft#100:|climbright#100:|climbtop#100:|
\ No newline at end of file
diff --git a/VPet-Simulator.Windows/mod/1000_FontPet/pet/font/Boring/A_Nomal/无聊开始_000_125.png b/VPet-Simulator.Windows/mod/1000_FontPet/pet/font/Boring/A_Nomal/无聊开始_000_125.png
new file mode 100644
index 0000000..9d77b47
Binary files /dev/null and b/VPet-Simulator.Windows/mod/1000_FontPet/pet/font/Boring/A_Nomal/无聊开始_000_125.png differ
diff --git a/VPet-Simulator.Windows/mod/1000_FontPet/pet/font/Boring/B_Nomal/无聊循环_000_1500.png b/VPet-Simulator.Windows/mod/1000_FontPet/pet/font/Boring/B_Nomal/无聊循环_000_1500.png
new file mode 100644
index 0000000..5249e8d
Binary files /dev/null and b/VPet-Simulator.Windows/mod/1000_FontPet/pet/font/Boring/B_Nomal/无聊循环_000_1500.png differ
diff --git a/VPet-Simulator.Windows/mod/1000_FontPet/pet/font/Boring/C_Nomal/无聊结束_000_125.png b/VPet-Simulator.Windows/mod/1000_FontPet/pet/font/Boring/C_Nomal/无聊结束_000_125.png
new file mode 100644
index 0000000..2a10a4b
Binary files /dev/null and b/VPet-Simulator.Windows/mod/1000_FontPet/pet/font/Boring/C_Nomal/无聊结束_000_125.png differ
diff --git a/VPet-Simulator.Windows/mod/1000_FontPet/pet/font/Climb_Left/A_Nomal/向左爬上_000_375.png b/VPet-Simulator.Windows/mod/1000_FontPet/pet/font/Climb_Left/A_Nomal/向左爬上_000_375.png
new file mode 100644
index 0000000..052b83e
Binary files /dev/null and b/VPet-Simulator.Windows/mod/1000_FontPet/pet/font/Climb_Left/A_Nomal/向左爬上_000_375.png differ
diff --git a/VPet-Simulator.Windows/mod/1000_FontPet/pet/font/Climb_Left/B_Nomal/从左边爬_000_1000.png b/VPet-Simulator.Windows/mod/1000_FontPet/pet/font/Climb_Left/B_Nomal/从左边爬_000_1000.png
new file mode 100644
index 0000000..974e4ff
Binary files /dev/null and b/VPet-Simulator.Windows/mod/1000_FontPet/pet/font/Climb_Left/B_Nomal/从左边爬_000_1000.png differ
diff --git a/VPet-Simulator.Windows/mod/1000_FontPet/pet/font/Climb_Right/A_Nomal/从右爬上_000_325.png b/VPet-Simulator.Windows/mod/1000_FontPet/pet/font/Climb_Right/A_Nomal/从右爬上_000_325.png
new file mode 100644
index 0000000..a62e15a
Binary files /dev/null and b/VPet-Simulator.Windows/mod/1000_FontPet/pet/font/Climb_Right/A_Nomal/从右爬上_000_325.png differ
diff --git a/VPet-Simulator.Windows/mod/1000_FontPet/pet/font/Climb_Right/B_Nomal/从右边爬_000_1000.png b/VPet-Simulator.Windows/mod/1000_FontPet/pet/font/Climb_Right/B_Nomal/从右边爬_000_1000.png
new file mode 100644
index 0000000..155d37c
Binary files /dev/null and b/VPet-Simulator.Windows/mod/1000_FontPet/pet/font/Climb_Right/B_Nomal/从右边爬_000_1000.png differ
diff --git a/VPet-Simulator.Windows/mod/1000_FontPet/pet/font/Climb_Top_Left/Nomal/从上向左爬_000_1500.png b/VPet-Simulator.Windows/mod/1000_FontPet/pet/font/Climb_Top_Left/Nomal/从上向左爬_000_1500.png
new file mode 100644
index 0000000..f8013f7
Binary files /dev/null and b/VPet-Simulator.Windows/mod/1000_FontPet/pet/font/Climb_Top_Left/Nomal/从上向左爬_000_1500.png differ
diff --git a/VPet-Simulator.Windows/mod/1000_FontPet/pet/font/Climb_Top_Right/Nomal/从上向右爬_000_1500.png b/VPet-Simulator.Windows/mod/1000_FontPet/pet/font/Climb_Top_Right/Nomal/从上向右爬_000_1500.png
new file mode 100644
index 0000000..275a487
Binary files /dev/null and b/VPet-Simulator.Windows/mod/1000_FontPet/pet/font/Climb_Top_Right/Nomal/从上向右爬_000_1500.png differ
diff --git a/VPet-Simulator.Windows/mod/1000_FontPet/pet/font/Climb_Up_Left/Nomal/爬起向左_000_1500.png b/VPet-Simulator.Windows/mod/1000_FontPet/pet/font/Climb_Up_Left/Nomal/爬起向左_000_1500.png
new file mode 100644
index 0000000..9e70a6c
Binary files /dev/null and b/VPet-Simulator.Windows/mod/1000_FontPet/pet/font/Climb_Up_Left/Nomal/爬起向左_000_1500.png differ
diff --git a/VPet-Simulator.Windows/mod/1000_FontPet/pet/font/Climb_Up_Right/Nomal/爬起向右_000_1500.png b/VPet-Simulator.Windows/mod/1000_FontPet/pet/font/Climb_Up_Right/Nomal/爬起向右_000_1500.png
new file mode 100644
index 0000000..a8728ca
Binary files /dev/null and b/VPet-Simulator.Windows/mod/1000_FontPet/pet/font/Climb_Up_Right/Nomal/爬起向右_000_1500.png differ
diff --git a/VPet-Simulator.Windows/mod/1000_FontPet/pet/font/Crawl_Left/A_Nomal/爬行趴地向左_000_375.png b/VPet-Simulator.Windows/mod/1000_FontPet/pet/font/Crawl_Left/A_Nomal/爬行趴地向左_000_375.png
new file mode 100644
index 0000000..f3bfecd
Binary files /dev/null and b/VPet-Simulator.Windows/mod/1000_FontPet/pet/font/Crawl_Left/A_Nomal/爬行趴地向左_000_375.png differ
diff --git a/VPet-Simulator.Windows/mod/1000_FontPet/pet/font/Crawl_Left/B_Nomal/爬行向左_000_1500.png b/VPet-Simulator.Windows/mod/1000_FontPet/pet/font/Crawl_Left/B_Nomal/爬行向左_000_1500.png
new file mode 100644
index 0000000..f61b737
Binary files /dev/null and b/VPet-Simulator.Windows/mod/1000_FontPet/pet/font/Crawl_Left/B_Nomal/爬行向左_000_1500.png differ
diff --git a/VPet-Simulator.Windows/mod/1000_FontPet/pet/font/Crawl_Left/C_Nomal/爬行爬起向左_000_375.png b/VPet-Simulator.Windows/mod/1000_FontPet/pet/font/Crawl_Left/C_Nomal/爬行爬起向左_000_375.png
new file mode 100644
index 0000000..2f64c39
Binary files /dev/null and b/VPet-Simulator.Windows/mod/1000_FontPet/pet/font/Crawl_Left/C_Nomal/爬行爬起向左_000_375.png differ
diff --git a/VPet-Simulator.Windows/mod/1000_FontPet/pet/font/Crawl_Right/A_Nomal/爬行趴地向左_000_375.png b/VPet-Simulator.Windows/mod/1000_FontPet/pet/font/Crawl_Right/A_Nomal/爬行趴地向左_000_375.png
new file mode 100644
index 0000000..a0013cb
Binary files /dev/null and b/VPet-Simulator.Windows/mod/1000_FontPet/pet/font/Crawl_Right/A_Nomal/爬行趴地向左_000_375.png differ
diff --git a/VPet-Simulator.Windows/mod/1000_FontPet/pet/font/Crawl_Right/B_Nomal/爬行向左_000_1500.png b/VPet-Simulator.Windows/mod/1000_FontPet/pet/font/Crawl_Right/B_Nomal/爬行向左_000_1500.png
new file mode 100644
index 0000000..ee114b9
Binary files /dev/null and b/VPet-Simulator.Windows/mod/1000_FontPet/pet/font/Crawl_Right/B_Nomal/爬行向左_000_1500.png differ
diff --git a/VPet-Simulator.Windows/mod/1000_FontPet/pet/font/Crawl_Right/C_Nomal/爬行爬起向左_000_375.png b/VPet-Simulator.Windows/mod/1000_FontPet/pet/font/Crawl_Right/C_Nomal/爬行爬起向左_000_375.png
new file mode 100644
index 0000000..df1a07e
Binary files /dev/null and b/VPet-Simulator.Windows/mod/1000_FontPet/pet/font/Crawl_Right/C_Nomal/爬行爬起向左_000_375.png differ
diff --git a/VPet-Simulator.Windows/mod/1000_FontPet/pet/font/Default/Nomal/呼吸_000_1500.png b/VPet-Simulator.Windows/mod/1000_FontPet/pet/font/Default/Nomal/呼吸_000_1500.png
new file mode 100644
index 0000000..78863e1
Binary files /dev/null and b/VPet-Simulator.Windows/mod/1000_FontPet/pet/font/Default/Nomal/呼吸_000_1500.png differ
diff --git a/VPet-Simulator.Windows/mod/1000_FontPet/pet/font/Fall_Left/A_Nomal/下落向左_000_500.png b/VPet-Simulator.Windows/mod/1000_FontPet/pet/font/Fall_Left/A_Nomal/下落向左_000_500.png
new file mode 100644
index 0000000..e13d426
Binary files /dev/null and b/VPet-Simulator.Windows/mod/1000_FontPet/pet/font/Fall_Left/A_Nomal/下落向左_000_500.png differ
diff --git a/VPet-Simulator.Windows/mod/1000_FontPet/pet/font/Fall_Left/B_Nomal/下落向左循环_000_750.png b/VPet-Simulator.Windows/mod/1000_FontPet/pet/font/Fall_Left/B_Nomal/下落向左循环_000_750.png
new file mode 100644
index 0000000..64e8506
Binary files /dev/null and b/VPet-Simulator.Windows/mod/1000_FontPet/pet/font/Fall_Left/B_Nomal/下落向左循环_000_750.png differ
diff --git a/VPet-Simulator.Windows/mod/1000_FontPet/pet/font/Fall_Left/C_Nomal/下落落地,向左_000_500.png b/VPet-Simulator.Windows/mod/1000_FontPet/pet/font/Fall_Left/C_Nomal/下落落地,向左_000_500.png
new file mode 100644
index 0000000..adced59
Binary files /dev/null and b/VPet-Simulator.Windows/mod/1000_FontPet/pet/font/Fall_Left/C_Nomal/下落落地,向左_000_500.png differ
diff --git a/VPet-Simulator.Windows/mod/1000_FontPet/pet/font/Fall_Right/A_Nomal/开始下落,向右_000_500.png b/VPet-Simulator.Windows/mod/1000_FontPet/pet/font/Fall_Right/A_Nomal/开始下落,向右_000_500.png
new file mode 100644
index 0000000..565547f
Binary files /dev/null and b/VPet-Simulator.Windows/mod/1000_FontPet/pet/font/Fall_Right/A_Nomal/开始下落,向右_000_500.png differ
diff --git a/VPet-Simulator.Windows/mod/1000_FontPet/pet/font/Fall_Right/B_Nomal/向右下落循环_000_750.png b/VPet-Simulator.Windows/mod/1000_FontPet/pet/font/Fall_Right/B_Nomal/向右下落循环_000_750.png
new file mode 100644
index 0000000..290bdb6
Binary files /dev/null and b/VPet-Simulator.Windows/mod/1000_FontPet/pet/font/Fall_Right/B_Nomal/向右下落循环_000_750.png differ
diff --git a/VPet-Simulator.Windows/mod/1000_FontPet/pet/font/Fall_Right/C_Nomal/落地,向右_000_500.png b/VPet-Simulator.Windows/mod/1000_FontPet/pet/font/Fall_Right/C_Nomal/落地,向右_000_500.png
new file mode 100644
index 0000000..7d825ff
Binary files /dev/null and b/VPet-Simulator.Windows/mod/1000_FontPet/pet/font/Fall_Right/C_Nomal/落地,向右_000_500.png differ
diff --git a/VPet-Simulator.Windows/mod/1000_FontPet/pet/font/Idel/StateONE/A_Nomal/往地上坐_000_500.png b/VPet-Simulator.Windows/mod/1000_FontPet/pet/font/Idel/StateONE/A_Nomal/往地上坐_000_500.png
new file mode 100644
index 0000000..b2aa33c
Binary files /dev/null and b/VPet-Simulator.Windows/mod/1000_FontPet/pet/font/Idel/StateONE/A_Nomal/往地上坐_000_500.png differ
diff --git a/VPet-Simulator.Windows/mod/1000_FontPet/pet/font/Idel/StateONE/B_Nomal/坐地上眨眼循环_000_2000.png b/VPet-Simulator.Windows/mod/1000_FontPet/pet/font/Idel/StateONE/B_Nomal/坐地上眨眼循环_000_2000.png
new file mode 100644
index 0000000..779dccd
Binary files /dev/null and b/VPet-Simulator.Windows/mod/1000_FontPet/pet/font/Idel/StateONE/B_Nomal/坐地上眨眼循环_000_2000.png differ
diff --git a/VPet-Simulator.Windows/mod/1000_FontPet/pet/font/Idel/StateONE/C_Nomal/从坐着起身_000_500.png b/VPet-Simulator.Windows/mod/1000_FontPet/pet/font/Idel/StateONE/C_Nomal/从坐着起身_000_500.png
new file mode 100644
index 0000000..28acdeb
Binary files /dev/null and b/VPet-Simulator.Windows/mod/1000_FontPet/pet/font/Idel/StateONE/C_Nomal/从坐着起身_000_500.png differ
diff --git a/VPet-Simulator.Windows/mod/1000_FontPet/pet/font/Idel/StateTWO/A_Nomal/坐着的时候躺下待机_000_500.png b/VPet-Simulator.Windows/mod/1000_FontPet/pet/font/Idel/StateTWO/A_Nomal/坐着的时候躺下待机_000_500.png
new file mode 100644
index 0000000..6d70545
Binary files /dev/null and b/VPet-Simulator.Windows/mod/1000_FontPet/pet/font/Idel/StateTWO/A_Nomal/坐着的时候躺下待机_000_500.png differ
diff --git a/VPet-Simulator.Windows/mod/1000_FontPet/pet/font/Idel/StateTWO/B_Nomal/躺着循环_000_2000.png b/VPet-Simulator.Windows/mod/1000_FontPet/pet/font/Idel/StateTWO/B_Nomal/躺着循环_000_2000.png
new file mode 100644
index 0000000..56068ad
Binary files /dev/null and b/VPet-Simulator.Windows/mod/1000_FontPet/pet/font/Idel/StateTWO/B_Nomal/躺着循环_000_2000.png differ
diff --git a/VPet-Simulator.Windows/mod/1000_FontPet/pet/font/Idel/StateTWO/C_Nomal/躺着的时候起身_000_500.png b/VPet-Simulator.Windows/mod/1000_FontPet/pet/font/Idel/StateTWO/C_Nomal/躺着的时候起身_000_500.png
new file mode 100644
index 0000000..2c29d23
Binary files /dev/null and b/VPet-Simulator.Windows/mod/1000_FontPet/pet/font/Idel/StateTWO/C_Nomal/躺着的时候起身_000_500.png differ
diff --git a/VPet-Simulator.Windows/mod/1000_FontPet/pet/font/Raised_Dynamic/Nomal/摇晃_001_500.png b/VPet-Simulator.Windows/mod/1000_FontPet/pet/font/Raised_Dynamic/Nomal/摇晃_001_500.png
new file mode 100644
index 0000000..6c4eb9c
Binary files /dev/null and b/VPet-Simulator.Windows/mod/1000_FontPet/pet/font/Raised_Dynamic/Nomal/摇晃_001_500.png differ
diff --git a/VPet-Simulator.Windows/mod/1000_FontPet/pet/font/Raised_Static/A_Nomal/被提起来_000_500.png b/VPet-Simulator.Windows/mod/1000_FontPet/pet/font/Raised_Static/A_Nomal/被提起来_000_500.png
new file mode 100644
index 0000000..5a1fcea
Binary files /dev/null and b/VPet-Simulator.Windows/mod/1000_FontPet/pet/font/Raised_Static/A_Nomal/被提起来_000_500.png differ
diff --git a/VPet-Simulator.Windows/mod/1000_FontPet/pet/font/Raised_Static/B_Nomal/眨眼_000_500.png b/VPet-Simulator.Windows/mod/1000_FontPet/pet/font/Raised_Static/B_Nomal/眨眼_000_500.png
new file mode 100644
index 0000000..9b762d9
Binary files /dev/null and b/VPet-Simulator.Windows/mod/1000_FontPet/pet/font/Raised_Static/B_Nomal/眨眼_000_500.png differ
diff --git a/VPet-Simulator.Windows/mod/1000_FontPet/pet/font/Say/A_Nomal/说话前抱胸_000_500.png b/VPet-Simulator.Windows/mod/1000_FontPet/pet/font/Say/A_Nomal/说话前抱胸_000_500.png
new file mode 100644
index 0000000..9816e6c
Binary files /dev/null and b/VPet-Simulator.Windows/mod/1000_FontPet/pet/font/Say/A_Nomal/说话前抱胸_000_500.png differ
diff --git a/VPet-Simulator.Windows/mod/1000_FontPet/pet/font/Say/B_Nomal/说话啊吧啊吧_000_500.png b/VPet-Simulator.Windows/mod/1000_FontPet/pet/font/Say/B_Nomal/说话啊吧啊吧_000_500.png
new file mode 100644
index 0000000..32793c8
Binary files /dev/null and b/VPet-Simulator.Windows/mod/1000_FontPet/pet/font/Say/B_Nomal/说话啊吧啊吧_000_500.png differ
diff --git a/VPet-Simulator.Windows/mod/1000_FontPet/pet/font/Say/C_Nomal/放下抱胸_000_500.png b/VPet-Simulator.Windows/mod/1000_FontPet/pet/font/Say/C_Nomal/放下抱胸_000_500.png
new file mode 100644
index 0000000..0013ea5
Binary files /dev/null and b/VPet-Simulator.Windows/mod/1000_FontPet/pet/font/Say/C_Nomal/放下抱胸_000_500.png differ
diff --git a/VPet-Simulator.Windows/mod/1000_FontPet/pet/font/Sleep/A_Nomal/躺下_000_500.png b/VPet-Simulator.Windows/mod/1000_FontPet/pet/font/Sleep/A_Nomal/躺下_000_500.png
new file mode 100644
index 0000000..c159dfe
Binary files /dev/null and b/VPet-Simulator.Windows/mod/1000_FontPet/pet/font/Sleep/A_Nomal/躺下_000_500.png differ
diff --git a/VPet-Simulator.Windows/mod/1000_FontPet/pet/font/Sleep/B_Nomal/睡觉循环_000_2000.png b/VPet-Simulator.Windows/mod/1000_FontPet/pet/font/Sleep/B_Nomal/睡觉循环_000_2000.png
new file mode 100644
index 0000000..c96407b
Binary files /dev/null and b/VPet-Simulator.Windows/mod/1000_FontPet/pet/font/Sleep/B_Nomal/睡觉循环_000_2000.png differ
diff --git a/VPet-Simulator.Windows/mod/1000_FontPet/pet/font/Sleep/C_Nomal/起床_000_500.png b/VPet-Simulator.Windows/mod/1000_FontPet/pet/font/Sleep/C_Nomal/起床_000_500.png
new file mode 100644
index 0000000..021b22c
Binary files /dev/null and b/VPet-Simulator.Windows/mod/1000_FontPet/pet/font/Sleep/C_Nomal/起床_000_500.png differ
diff --git a/VPet-Simulator.Windows/mod/1000_FontPet/pet/font/Squat/A_Nomal/蹲下_000_500.png b/VPet-Simulator.Windows/mod/1000_FontPet/pet/font/Squat/A_Nomal/蹲下_000_500.png
new file mode 100644
index 0000000..49a8b37
Binary files /dev/null and b/VPet-Simulator.Windows/mod/1000_FontPet/pet/font/Squat/A_Nomal/蹲下_000_500.png differ
diff --git a/VPet-Simulator.Windows/mod/1000_FontPet/pet/font/Squat/B_Nomal/下蹲向左眨眼循环1_000_1500.png b/VPet-Simulator.Windows/mod/1000_FontPet/pet/font/Squat/B_Nomal/下蹲向左眨眼循环1_000_1500.png
new file mode 100644
index 0000000..af4b03a
Binary files /dev/null and b/VPet-Simulator.Windows/mod/1000_FontPet/pet/font/Squat/B_Nomal/下蹲向左眨眼循环1_000_1500.png differ
diff --git a/VPet-Simulator.Windows/mod/1000_FontPet/pet/font/Squat/C_Nomal/下蹲_0_500.png b/VPet-Simulator.Windows/mod/1000_FontPet/pet/font/Squat/C_Nomal/下蹲_0_500.png
new file mode 100644
index 0000000..7aa14c9
Binary files /dev/null and b/VPet-Simulator.Windows/mod/1000_FontPet/pet/font/Squat/C_Nomal/下蹲_0_500.png differ
diff --git a/VPet-Simulator.Windows/mod/1000_FontPet/pet/font/Touch_Head/A_Nomal/摸头_0_500.png b/VPet-Simulator.Windows/mod/1000_FontPet/pet/font/Touch_Head/A_Nomal/摸头_0_500.png
new file mode 100644
index 0000000..e627cea
Binary files /dev/null and b/VPet-Simulator.Windows/mod/1000_FontPet/pet/font/Touch_Head/A_Nomal/摸头_0_500.png differ
diff --git a/VPet-Simulator.Windows/mod/1000_FontPet/pet/font/Touch_Head/B_Nomal/摸头_000_1500.png b/VPet-Simulator.Windows/mod/1000_FontPet/pet/font/Touch_Head/B_Nomal/摸头_000_1500.png
new file mode 100644
index 0000000..d2eb1e4
Binary files /dev/null and b/VPet-Simulator.Windows/mod/1000_FontPet/pet/font/Touch_Head/B_Nomal/摸头_000_1500.png differ
diff --git a/VPet-Simulator.Windows/mod/1000_FontPet/pet/font/Touch_Head/C_Nomal/摸头_0_500.png b/VPet-Simulator.Windows/mod/1000_FontPet/pet/font/Touch_Head/C_Nomal/摸头_0_500.png
new file mode 100644
index 0000000..7857ae6
Binary files /dev/null and b/VPet-Simulator.Windows/mod/1000_FontPet/pet/font/Touch_Head/C_Nomal/摸头_0_500.png differ
diff --git a/VPet-Simulator.Windows/mod/1000_FontPet/pet/font/Walk_Left/A_Nomal/走路向左_000_500.png b/VPet-Simulator.Windows/mod/1000_FontPet/pet/font/Walk_Left/A_Nomal/走路向左_000_500.png
new file mode 100644
index 0000000..580e813
Binary files /dev/null and b/VPet-Simulator.Windows/mod/1000_FontPet/pet/font/Walk_Left/A_Nomal/走路向左_000_500.png differ
diff --git a/VPet-Simulator.Windows/mod/1000_FontPet/pet/font/Walk_Left/B_Nomal/走路向左_000_500.png b/VPet-Simulator.Windows/mod/1000_FontPet/pet/font/Walk_Left/B_Nomal/走路向左_000_500.png
new file mode 100644
index 0000000..9a9811f
Binary files /dev/null and b/VPet-Simulator.Windows/mod/1000_FontPet/pet/font/Walk_Left/B_Nomal/走路向左_000_500.png differ
diff --git a/VPet-Simulator.Windows/mod/1000_FontPet/pet/font/Walk_Left/C_Nomal/走路向左_000_500.png b/VPet-Simulator.Windows/mod/1000_FontPet/pet/font/Walk_Left/C_Nomal/走路向左_000_500.png
new file mode 100644
index 0000000..30e3e4f
Binary files /dev/null and b/VPet-Simulator.Windows/mod/1000_FontPet/pet/font/Walk_Left/C_Nomal/走路向左_000_500.png differ
diff --git a/VPet-Simulator.Windows/mod/1000_FontPet/pet/font/Walk_Right/A_Nomal/走路向右_000_500.png b/VPet-Simulator.Windows/mod/1000_FontPet/pet/font/Walk_Right/A_Nomal/走路向右_000_500.png
new file mode 100644
index 0000000..41336f7
Binary files /dev/null and b/VPet-Simulator.Windows/mod/1000_FontPet/pet/font/Walk_Right/A_Nomal/走路向右_000_500.png differ
diff --git a/VPet-Simulator.Windows/mod/1000_FontPet/pet/font/Walk_Right/B_Nomal/走路向右_000_500.png b/VPet-Simulator.Windows/mod/1000_FontPet/pet/font/Walk_Right/B_Nomal/走路向右_000_500.png
new file mode 100644
index 0000000..c34c226
Binary files /dev/null and b/VPet-Simulator.Windows/mod/1000_FontPet/pet/font/Walk_Right/B_Nomal/走路向右_000_500.png differ
diff --git a/VPet-Simulator.Windows/mod/1000_FontPet/pet/font/Walk_Right/C_Nomal/走路向右_000_500.png b/VPet-Simulator.Windows/mod/1000_FontPet/pet/font/Walk_Right/C_Nomal/走路向右_000_500.png
new file mode 100644
index 0000000..bdc1f32
Binary files /dev/null and b/VPet-Simulator.Windows/mod/1000_FontPet/pet/font/Walk_Right/C_Nomal/走路向右_000_500.png differ
diff --git a/VPet-Simulator.Windows/mod/1000_MatchPet/icon.png b/VPet-Simulator.Windows/mod/1000_MatchPet/icon.png
deleted file mode 100644
index 6826656..0000000
Binary files a/VPet-Simulator.Windows/mod/1000_MatchPet/icon.png and /dev/null differ
diff --git a/VPet-Simulator.Windows/mod/1000_MatchPet/info.lps b/VPet-Simulator.Windows/mod/1000_MatchPet/info.lps
deleted file mode 100644
index 1c4c8d1..0000000
--- a/VPet-Simulator.Windows/mod/1000_MatchPet/info.lps
+++ /dev/null
@@ -1,2 +0,0 @@
-vupmod#MatchPet:|author#LorisYounger:|gamever#20:|ver#100:|
-intro#来试试这个极简手残画风的单帧宠物吧:|
\ No newline at end of file
diff --git a/VPet-Simulator.Windows/mod/1000_MatchPet/pet/matchmen.lps b/VPet-Simulator.Windows/mod/1000_MatchPet/pet/matchmen.lps
deleted file mode 100644
index 99e7dbb..0000000
--- a/VPet-Simulator.Windows/mod/1000_MatchPet/pet/matchmen.lps
+++ /dev/null
@@ -1,6 +0,0 @@
-pet#火柴人:|intor#来试试这个极简手残画风的单帧宠物吧:|path#matchmen:|
-touchhead:|px#159:|py#16:|sw#189:|sh#178:|
-touchraised:|px#0:|py#50:|sw#500:|sh#200:|
-raisepoint:|x#290:|y#128:|
-speed:|walk#20:|climb#10:|climbtop#8:|crawl#8:|fallx#14:|fally#10:|crawl#10:|
-locate:|climbleft#145:|climbright#185:|climbtop#150:|
\ No newline at end of file
diff --git a/VPet-Simulator.Windows/mod/1000_MatchPet/pet/vup.lps b/VPet-Simulator.Windows/mod/1000_MatchPet/pet/vup.lps
deleted file mode 100644
index 99e7dbb..0000000
--- a/VPet-Simulator.Windows/mod/1000_MatchPet/pet/vup.lps
+++ /dev/null
@@ -1,6 +0,0 @@
-pet#火柴人:|intor#来试试这个极简手残画风的单帧宠物吧:|path#matchmen:|
-touchhead:|px#159:|py#16:|sw#189:|sh#178:|
-touchraised:|px#0:|py#50:|sw#500:|sh#200:|
-raisepoint:|x#290:|y#128:|
-speed:|walk#20:|climb#10:|climbtop#8:|crawl#8:|fallx#14:|fally#10:|crawl#10:|
-locate:|climbleft#145:|climbright#185:|climbtop#150:|
\ No newline at end of file
diff --git a/VPet-Simulator.Windows/mod/icon.png b/VPet-Simulator.Windows/mod/icon.png
new file mode 100644
index 0000000..78c1176
Binary files /dev/null and b/VPet-Simulator.Windows/mod/icon.png differ