优化游戏数据设计

This commit is contained in:
ZouJin 2023-06-14 21:13:52 +10:00
parent b92d0280bd
commit 11181f89b6
11 changed files with 90 additions and 52 deletions

View File

@ -1,6 +1,6 @@
<pu:ContentControlX x:Class="VPet_Simulator.Core.Main" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:pu="https://opensource.panuon.com/wpf-ui"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008" xmlns:local="clr-namespace:VPet_Simulator.Core"
mc:Ignorable="d" d:DesignHeight="250" d:DesignWidth="250">
<Viewbox>

View File

@ -201,6 +201,7 @@ namespace VPet_Simulator.Core
//mp = new Point(mp.X * Core.Controller.ZoomRatio, mp.Y * Core.Controller.ZoomRatio);
if (isPress && presstime == pth)
{//历遍长按事件
LastInteractionTime = DateTime.Now;
foreach (var x in Core.TouchEvent)
{
if (x.IsPress == true && x.Touch(mp) && x.DoAction())
@ -209,6 +210,7 @@ namespace VPet_Simulator.Core
}
else
{//历遍点击事件
LastInteractionTime = DateTime.Now;
foreach (var x in Core.TouchEvent)
{
if (x.IsPress == false && x.Touch(mp) && x.DoAction())
@ -258,7 +260,13 @@ namespace VPet_Simulator.Core
private void MainGrid_MouseRightButtonDown(object sender, MouseButtonEventArgs e)
{
ToolBar.Show();
if (ToolBar.Visibility == Visibility.Visible)
{
ToolBar.CloseTimer.Enabled = false;
ToolBar.Visibility = Visibility.Collapsed;
}
else
ToolBar.Show();
}
public void Dispose()

View File

@ -54,7 +54,16 @@ namespace VPet_Simulator.Core
tfun.Visibility = Visibility.Visible;
}
pExp.Maximum = m.Core.Save.LevelUpNeed();
if (m.Core.Save.Exp < 0)
{
pExp.Minimum = m.Core.Save.Exp;
}
else
{
pExp.Minimum = 0;
}
pExp.Value = m.Core.Save.Exp;
pStrength.Value = m.Core.Save.Strength;
pFeeling.Value = m.Core.Save.Feeling;
pStrengthFood.Value = m.Core.Save.StrengthFood;

View File

@ -59,7 +59,7 @@ namespace VPet_Simulator.Core
switch (m.State)
{
case Main.WorkingState.Study:
m.Core.Save.Money += GetCount * 0.2;
m.Core.Save.Exp += GetCount * 0.2;
Stop(() => m.Say($"学习完成啦, 累计学会了 {(GetCount * 1.2):f2} 经验值\n共计花费了{MaxTime}分钟"
, GraphCore.Helper.SayType.Shining, true));
break;

View File

@ -303,7 +303,6 @@ namespace VPet_Simulator.Core
if (PlayState)
{//如果当前正在运行,重置状态
//IsResetPlay = true;
Stop();
StopAction = () => Run(parant, image, EndAction);
return;
}

View File

@ -282,14 +282,16 @@ namespace VPet_Simulator.Core
}
}
//然后判断是高兴还是普通
else if (Feeling >= 80 - (Likability >= 80 ? 20 : (Likability >= 40 ? 10 : 0)))
realhel = 90 - (Likability >= 80 ? 20 : (Likability >= 40 ? 10 : 0));
if (Feeling >= realhel)
{
return ModeType.Happy;
}
else
else if (Feeling <= realhel / 2)
{
return ModeType.Nomal;
return ModeType.PoorCondition;
}
return ModeType.Nomal;
}
/// <summary>
/// 新游戏

View File

@ -35,6 +35,10 @@ namespace VPet_Simulator.Windows
public int Ver;
public string Content = "";
public bool SuccessLoad = true;
/// <summary>
/// LBGame 信任的MOD,自动加载
/// </summary>
public bool IsTrust = false;
public static string INTtoVER(int ver) => $"{ver / 100}.{ver % 100:00}";
public static void LoadImage(MainWindow mw, DirectoryInfo di)
{
@ -68,7 +72,7 @@ namespace VPet_Simulator.Windows
Intro = modlps.FindLine("intro").Info;
GameVer = modlps.FindSub("gamever").InfoToInt;
Ver = modlps.FindSub("ver").InfoToInt;
Author = modlps.FindSub("author").Info;
Author = modlps.FindSub("author").Info.Split('[').First();
if (modlps.FindLine("authorid") != null)
AuthorID = modlps.FindLine("authorid").InfoToInt64;
else
@ -127,11 +131,6 @@ namespace VPet_Simulator.Windows
case "plugin":
Content += "代码插件\n";
SuccessLoad = false;
if (!IsPassMOD(mw))
{//不是通过模组,不加载
break;
}
foreach (FileInfo tmpfi in di.EnumerateFiles("*.dll"))
{
try
@ -141,12 +140,25 @@ namespace VPet_Simulator.Windows
continue;
LoadedDLL.Add(path);
Assembly dll = Assembly.LoadFrom(tmpfi.FullName);
var certificate = dll.GetModules()?.First()?.GetSignerCertificate();
if (certificate != null && certificate.Subject == "")
{//LBGame 信任的证书
}
else
{
if (!IsPassMOD(mw))
{//不是通过模组,不加载
continue;
}
}
var v = dll.GetExportedTypes();
foreach (Type exportedType in v)
{
if (exportedType.BaseType == typeof(MainPlugin))
{
mw.Plugins.Add((MainPlugin)Activator.CreateInstance(exportedType, mw));
SuccessLoad = true;
}
}
}
@ -155,7 +167,6 @@ namespace VPet_Simulator.Windows
}
}
SuccessLoad = true;
break;
}
}

View File

@ -32,7 +32,7 @@
HorizontalContentAlignment="Center" BorderBrush="{DynamicResource PrimaryText}" BorderThickness="1" pu:LabelHelper.CornerRadius="7" Content="i" />-->
<TextBlock Margin="0,10,0,0" VerticalAlignment="Top" Text="金钱:" FontWeight="Heavy" />
<StackPanel Grid.Column="2">
<TextBlock FontSize="20" Foreground="{DynamicResource DARKPrimary}" Text="100,000" />
<TextBlock FontSize="20" Foreground="{DynamicResource DARKPrimary}" Text="$100,000" />
<TextBlock Margin="5,0,0,10" Text="钱不是万能的,没钱是万万不能的" Foreground="{DynamicResource PrimaryText}" Opacity="0.5" />
</StackPanel>
<TextBlock x:Name="txtHearth" Grid.Row="1" Margin="0,13,0,0" Visibility="Collapsed" VerticalAlignment="Top" Text="健康值:" FontWeight="Heavy" />
@ -52,13 +52,12 @@
<ColumnDefinition Width="Auto" />
</Grid.ColumnDefinitions>
<TextBlock FontSize="16" Foreground="{DynamicResource PrimaryText}" Text="Lv 10" />
<TextBlock Grid.Column="2" VerticalAlignment="Bottom" FontWeight="Bold" FontSize="14" Foreground="{DynamicResource DARKPrimary}" Text="x2 经验速率" />
<TextBlock Grid.Column="2" VerticalAlignment="Bottom" FontWeight="Bold" FontSize="14" Foreground="{DynamicResource DARKPrimary}" Text="x1 经验速率" />
</Grid>
<ProgressBar Margin="0,5,0,0" FontSize="10" Height="20" Value="50" Foreground="{DynamicResource ProgressBarForeground}" Background="Transparent"
BorderBrush="{DynamicResource ProgressBarForeground}" BorderThickness="1.5" pu:ProgressBarHelper.IsPercentVisible="True" pu:ProgressBarHelper.CornerRadius="4" pu:ProgressBarHelper.GeneratingPercentText="PgbExperience_GeneratingPercentText">
</ProgressBar>
<TextBlock Margin="3,5,0,10" Foreground="{DynamicResource DARKPrimary}" TextDecorations="Underline" Cursor="Hand"
Text="下一级解锁新能力" ToolTip="新的对话内容" />
<TextBlock Margin="3,5,0,10" Foreground="{DynamicResource PrimaryText}" Opacity="0.5" TextWrapping="Wrap" Text="等级越高, 学习和打工收益更高" />
</StackPanel>
<TextBlock Grid.Row="3" Margin="0,13,0,0" VerticalAlignment="Top" Text="体力:" FontWeight="Heavy" />
<StackPanel Grid.Row="3" Grid.Column="2" Margin="0,10,0,0">
@ -69,7 +68,7 @@
<ColumnDefinition Width="Auto" />
</Grid.ColumnDefinitions>
<TextBlock Foreground="{DynamicResource PrimaryText}" Text="恢复中(自然恢复)" />
<TextBlock Grid.Column="2" VerticalAlignment="Bottom" FontWeight="Bold" FontSize="14" Foreground="{DynamicResource DARKPrimary}" Text="+1/分钟" />
<TextBlock Grid.Column="2" VerticalAlignment="Bottom" FontWeight="Bold" FontSize="14" Foreground="{DynamicResource DARKPrimary}" Text="+1/tick" />
</Grid>
<ProgressBar Margin="0,5,0,0" FontSize="10" Height="20" Value="50" Foreground="{DynamicResource ProgressBarForeground}" Background="Transparent"
BorderBrush="{DynamicResource ProgressBarForeground}" BorderThickness="1.5" pu:ProgressBarHelper.IsPercentVisible="True" pu:ProgressBarHelper.CornerRadius="4" pu:ProgressBarHelper.GeneratingPercentText="PgbExperience_GeneratingPercentText">
@ -86,7 +85,7 @@
<ColumnDefinition Width="Auto" />
</Grid.ColumnDefinitions>
<TextBlock Foreground="{DynamicResource PrimaryText}" Text="-" />
<TextBlock Grid.Column="2" VerticalAlignment="Bottom" FontWeight="Bold" FontSize="14" Foreground="{DynamicResource DARKPrimary}" Text="+1/每分钟" />
<TextBlock Grid.Column="2" VerticalAlignment="Bottom" FontWeight="Bold" FontSize="14" Foreground="{DynamicResource DARKPrimary}" Text="+1/tick" />
</Grid>
<ProgressBar Margin="0,5,0,0" FontSize="10" Height="20" Value="60" Foreground="{DynamicResource ProgressBarForeground}" Background="Transparent"
BorderBrush="{DynamicResource ProgressBarForeground}" BorderThickness="1.5" pu:ProgressBarHelper.IsPercentVisible="True" pu:ProgressBarHelper.CornerRadius="4" pu:ProgressBarHelper.GeneratingPercentText="PgbSpirit_GeneratingPercentText">
@ -103,7 +102,7 @@
<ColumnDefinition Width="Auto" />
</Grid.ColumnDefinitions>
<TextBlock Foreground="{DynamicResource PrimaryText}" Text="下降中(自然下降)" />
<TextBlock Grid.Column="2" VerticalAlignment="Bottom" FontWeight="Bold" FontSize="14" Foreground="{DynamicResource DARKPrimary}" Text="+1/每分钟" />
<TextBlock Grid.Column="2" VerticalAlignment="Bottom" FontWeight="Bold" FontSize="14" Foreground="{DynamicResource DARKPrimary}" Text="+1/tick" />
</Grid>
<ProgressBar Margin="0,5,0,0" FontSize="10" Height="20" Value="80" Foreground="{DynamicResource ProgressBarForeground}" Background="Transparent"
BorderBrush="{DynamicResource ProgressBarForeground}" BorderThickness="1.5" pu:ProgressBarHelper.IsPercentVisible="True" pu:ProgressBarHelper.CornerRadius="4" pu:ProgressBarHelper.GeneratingPercentText="PgbHunger_GeneratingPercentText">
@ -128,7 +127,7 @@
FontWeight="Bold"
FontSize="14"
Foreground="{DynamicResource DARKPrimary}"
Text="+1/每分钟" />
Text="+1/tick" />
</Grid>
<ProgressBar Margin="0,5,0,0"
FontSize="10"

View File

@ -0,0 +1,10 @@
food:|type#Drug:|name#太阳系:|price#0.0:|desc#没钱也能吃,可以用来拯救存档:|Exp#-300:|Strength#-100:|Health#50:|Feeling#-120:|Likability#-2:|
food:|type#Drug:|name#维生素C含片:|price#13.0:|desc#本产品为保健品不能代替药品:|Exp#50:|Health#10:|
food:|type#Drug:|name#钙片:|price#18.0:|desc#郑重声明,本产品与同名影视产品没有一点关系。:|Exp#100:|Strength#20:|StrengthFood#1:|Health#10:|
food:|type#Drug:|name#脑黑金:|price#55.0:|desc#过年过节不收礼__________(3分):|Exp#600:|Strength#20:|Health#15:|Feeling#-10:|
food:|type#Drug:|name#666感冒灵颗粒:|price#33.0:|desc#老牌子,值得信任,有妈妈的味道。:|Exp#200:|Health#20:|
food:|type#Drug:|name#健胃整肠丸:|price#41.5:|desc#这是什么?肚子疼?来两粒。这是什么?拉肚子?来两粒:|Exp#230:|Strength#20:|Health#25:|
food:|type#Drug:|name#布洛芬缓释胶囊:|price#76.0:|desc#在以前的大瘟疫时代,曾经作为货币使用,最高的时候价值连城:|Exp#600:|Strength#20:|Health#35:|
food:|type#Drug:|name#速效救心丸:|price#128.0:|desc#急急急,等下有得你急的。:|Exp#800:|Health#75:|
food:|type#Drug:|name#大力丸:|price#73.5:|desc#等我硬起来有你好受的!:|Exp#300:|Strength#20:|Health#50:|Feeling#20:|
food:|type#Drug:|name#阿司匹林:|price#98.0:|desc#发烧去医院经常见的药,从小到大都不懂为什么长得和螺丝头一样:|Exp#500:|Health#65:|

View File

@ -1,29 +1,29 @@
food:|type#Drink:|name#ab钙奶:|price#6.5:|desc#健康美味,经济实惠:|Exp#5:|Strength#10:|StrengthDrink#40:|StrengthFood#5:|Health#1:|Feeling#1:|
food:|type#Drink:|name#果汁:|price#8.5:|desc#那个那个那个那个果汁分你一半:|Exp#10:|Strength#10:|StrengthDrink#40:|StrengthFood#4:|Health#3:|Feeling#3:|
food:|type#Drink:|name#可乐:|price#8.5:|desc#蓝色那个在日用品区谢谢:|Exp#5:|Strength#10:|StrengthDrink#50:|StrengthFood#2:|Health#-1:|Feeling#20:|
food:|type#Drink:|name#凉茶:|price#13.5:|desc#怕上火,喝广东咖啡!:|Exp#25:|Strength#10:|StrengthDrink#60:|StrengthFood#1:|Health#5:|Feeling#5:|
food:|type#Drink:|name#维他奶:|price#6.5:|desc#:|Exp#10:|Strength#15:|StrengthDrink#35:|StrengthFood#5:|Health#1:|Feeling#1:|
food:|type#Drink:|name#雷碧:|price#7.0:|desc#透心扬,心飞凉:|Exp#3:|Strength#5:|StrengthDrink#45:|StrengthFood#3:|Health#-1:|Feeling#15:|
food:|type#Drink:|name#盐汽水:|price#8.0:|desc#我一口盐汽水!:|Exp#10:|Strength#15:|StrengthDrink#40:|StrengthFood#3:|Health#-0.5:|Feeling#15:|
food:|type#Drink:|name#椰汁:|price#10.0:|desc#白白胖胖曲线圆润要喝不加香油的椰O牌椰汁:|Exp#10:|Strength#15:|StrengthDrink#50:|StrengthFood#4:|Health#2:|Feeling#10:|
food:|type#Functional:|name#咖啡饮料:|price#10.0:|desc#不小心倒在键盘上效果更好哦!:|Exp#40:|Strength#80:|StrengthDrink#20:|StrengthFood#3:|Health#-1:|
food:|type#Functional:|name#大鹏特饮:|price#13.0:|desc#困了累了,大鹏特饮:|Exp#60:|Strength#85:|StrengthDrink#20:|StrengthFood#3:|Health#-1:|Feeling#10:|
food:|type#Functional:|name#黄牛:|price#14.0:|desc#放心,喝他的饮料不是他出钱你出命:|Exp#80:|Strength#85:|StrengthDrink#20:|StrengthFood#3:|Health#-1:|Feeling#10:|
food:|type#Functional:|name#能量饮料:|price#14.0:|desc#:|Exp#140:|Strength#80:|StrengthDrink#20:|StrengthFood#3:|Health#-5:|Feeling#8:|
food:|type#Drink:|name#ab钙奶:|price#7.0:|desc#健康美味,经济实惠:|Exp#5:|Strength#10:|StrengthDrink#40:|StrengthFood#5:|Health#1:|Feeling#1:|
food:|type#Drink:|name#果汁:|price#9.5:|desc#那个那个那个那个果汁分你一半:|Exp#10:|Strength#10:|StrengthDrink#40:|StrengthFood#4:|Health#3:|Feeling#3:|
food:|type#Drink:|name#可乐:|price#8.0:|desc#蓝色那个在日用品区谢谢:|Exp#5:|Strength#10:|StrengthDrink#50:|StrengthFood#2:|Health#-1:|Feeling#20:|
food:|type#Drink:|name#凉茶:|price#14.5:|desc#怕上火,喝广东咖啡!:|Exp#25:|Strength#10:|StrengthDrink#60:|StrengthFood#1:|Health#5:|Feeling#5:|
food:|type#Drink:|name#维他奶:|price#7.5:|desc#点止汽水咁简单:|Exp#10:|Strength#15:|StrengthDrink#35:|StrengthFood#5:|Health#1:|Feeling#1:|
food:|type#Drink:|name#雷碧:|price#6.5:|desc#透心扬,心飞凉:|Exp#3:|Strength#5:|StrengthDrink#45:|StrengthFood#3:|Health#-1:|Feeling#15:|
food:|type#Drink:|name#盐汽水:|price#7.5:|desc#我一口盐汽水!:|Exp#10:|Strength#15:|StrengthDrink#40:|StrengthFood#3:|Health#-0.5:|Feeling#15:|
food:|type#Drink:|name#椰汁:|price#11.0:|desc#白白胖胖曲线圆润要喝不加香油的椰O牌椰汁:|Exp#10:|Strength#15:|StrengthDrink#50:|StrengthFood#4:|Health#2:|Feeling#10:|
food:|type#Functional:|name#咖啡饮料:|price#9.5:|desc#不小心倒在键盘上效果更好哦!:|Exp#40:|Strength#80:|StrengthDrink#20:|StrengthFood#3:|Health#-1:|
food:|type#Functional:|name#大鹏特饮:|price#12.5:|desc#困了累了,大鹏特饮:|Exp#60:|Strength#85:|StrengthDrink#20:|StrengthFood#3:|Health#-1:|Feeling#10:|
food:|type#Functional:|name#黄牛:|price#13.5:|desc#放心,喝他的饮料不是他出钱你出命:|Exp#80:|Strength#85:|StrengthDrink#20:|StrengthFood#3:|Health#-1:|Feeling#10:|
food:|type#Functional:|name#能量饮料:|price#13.0:|desc#能量饮料能够瞬间给予角色40点能量加成。使用时执行某些动作将会取消使用有4秒使用时间。以上都没有:|Exp#140:|Strength#80:|StrengthDrink#20:|StrengthFood#3:|Health#-5:|Feeling#8:|
food:|type#Functional:|name#土力架:|price#17.5:|desc#横扫自己,做回饥饿:|Exp#5:|Strength#80:|StrengthDrink#-10:|StrengthFood#80:|Health#0:|
food:|type#Functional:|name#压缩饼干:|price#18.5:|desc#饼干.rar:|Exp#5:|Strength#60:|StrengthDrink#-20:|StrengthFood#100:|
food:|type#Snack:|name#爆米花:|price#8.5:|desc#电影必备,吃不完也要买:|Exp#10:|Strength#40:|StrengthDrink#-5:|StrengthFood#30:|Health#-1:|Feeling#10:|
food:|type#Snack:|name#冰激凌:|price#9.5:|desc#中国人免费领:|Exp#5:|Strength#40:|StrengthDrink#5:|StrengthFood#24:|Health#-0.5:|Feeling#20:|
food:|type#Snack:|name#爆米花:|price#7.5:|desc#电影必备,吃不完也要买:|Exp#10:|Strength#40:|StrengthDrink#-5:|StrengthFood#30:|Health#-1:|Feeling#10:|
food:|type#Snack:|name#冰激凌:|price#9.0:|desc#中国人免费领:|Exp#5:|Strength#40:|StrengthDrink#5:|StrengthFood#24:|Health#-0.5:|Feeling#20:|
food:|type#Snack:|name#瓜子:|price#8.0:|desc#嘎吱嘎吱嘎吱嘎吱嘎吱嘎吱嘎吱嘎吱嘎吱嘎吱嘎吱嘎吱嘎吱嘎吱嘎吱嘎吱嘎吱嘎吱嘎吱嘎吱嘎吱嘎吱嘎吱嘎吱嘎吱嘎吱嘎吱:|Exp#5:|Strength#30:|StrengthDrink#-2:|StrengthFood#26:|Feeling#15:|
food:|type#Snack:|name#核桃仁:|price#8.5:|desc#这次不用自己带锤子了:|Exp#40:|Strength#20:|StrengthDrink#-2:|StrengthFood#5:|Health#5:|
food:|type#Snack:|name#火腿肠:|price#9.0:|desc#:|Exp#5:|Strength#40:|StrengthDrink#0:|StrengthFood#38:|Health#-0.5:|
food:|type#Snack:|name#花生米:|price#4.5:|desc#但凡有一粒花生米。。。:|Exp#5:|Strength#20:|StrengthDrink#-2:|StrengthFood#20:|Health#-0.5:|
food:|type#Snack:|name#核桃仁:|price#9.5:|desc#这次不用自己带锤子了:|Exp#40:|Strength#20:|StrengthDrink#-2:|StrengthFood#5:|Health#5:|
food:|type#Snack:|name#火腿肠:|price#8.5:|desc#肉做的棒子:|Exp#5:|Strength#40:|StrengthDrink#0:|StrengthFood#38:|Health#-0.5:|
food:|type#Snack:|name#花生米:|price#4.0:|desc#但凡有一粒花生米。。。:|Exp#5:|Strength#20:|StrengthDrink#-2:|StrengthFood#20:|Health#-0.5:|
food:|type#Snack:|name#戒指糖:|price#2.5:|desc#这不比那个不能吃的破石头有用多了:|Exp#5:|Strength#20:|StrengthDrink#-2:|StrengthFood#10:|Health#-0.5:|
food:|type#Snack:|name#老冰棍:|price#4.0:|desc#厂家正在考虑与辐射4联动中:|Exp#10:|Strength#15:|StrengthDrink#15:|StrengthFood#5:|Health#-0.5:|Feeling#2:|
food:|type#Snack:|name#绿色心情:|price#3.5:|desc#几年前还是一块钱的呜呜呜:|Exp#5:|Strength#5:|StrengthDrink#15:|StrengthFood#5:|Health#-0.5:|Feeling#5:|
food:|type#Snack:|name#老冰棍:|price#3.5:|desc#厂家正在考虑与辐射4联动中:|Exp#10:|Strength#15:|StrengthDrink#15:|StrengthFood#5:|Health#-0.5:|Feeling#2:|
food:|type#Snack:|name#绿色心情:|price#3.0:|desc#几年前还是一块钱的呜呜呜:|Exp#5:|Strength#5:|StrengthDrink#15:|StrengthFood#5:|Health#-0.5:|Feeling#5:|
food:|type#Snack:|name#奶片:|price#3.0:|desc#希望你们永远不会知道这个药。。。:|Exp#10:|Strength#8:|StrengthDrink#-2:|StrengthFood#8:|Feeling#7:|
food:|type#Snack:|name#奶糖:|price#5.0:|desc#小白兔牌:|Exp#15:|Strength#8:|StrengthDrink#-2:|StrengthFood#15:|Feeling#15:|
food:|type#Snack:|name#牛板筋:|price#3.0:|desc#只要来一根,大家都是好兄弟:|Exp#10:|Strength#10:|StrengthDrink#-1:|StrengthFood#8:|Health#-1:|Feeling#10:|
food:|type#Snack:|name#牛板筋:|price#2.5:|desc#只要来一根,大家都是好兄弟:|Exp#10:|Strength#10:|StrengthDrink#-1:|StrengthFood#8:|Health#-1:|Feeling#10:|
food:|type#Snack:|name#牛扎糖:|price#4.0:|desc#好甜,像你一样:|Exp#10:|Strength#10:|StrengthDrink#-2:|StrengthFood#8:|Feeling#15:|
food:|type#Snack:|name#泡泡糖:|price#3.5:|desc#就吹吧你:|Exp#15:|Strength#5:|StrengthDrink#-1:|StrengthFood#5:|Feeling#17:|
food:|type#Snack:|name#巧克力:|price#10.0:|desc#纵享丝滑:|Exp#10:|Strength#30:|StrengthDrink#-5:|StrengthFood#38:|Feeling#15:|
@ -35,13 +35,13 @@ food:|type#Snack:|name#雪饼:|price#5.5:|desc#小时候的一口吃不下:|Exp#
food:|type#Snack:|name#散射雪糕:|price#6.5:|desc#三倍的快乐:|Exp#5:|Strength#10:|StrengthDrink#10:|StrengthFood#20:|Feeling#10:|
food:|type#Snack:|name#猪肉脯:|price#13.0:|desc#你感觉在吃牛皮。。:|Exp#15:|Strength#40:|StrengthFood#48:|Feeling#15:|
food:|type#Meal:|name#臭豆腐:|price#19.5:|desc#闻起来臭,吃起来也臭,就是越吃越香。:|Exp#50:|Strength#100:|StrengthFood#55:|Feeling#5:|
food:|type#Meal:|name#东坡肘子:|price#34.5:|desc#小知识:东坡肘子其实并非苏东坡之功,而是其妻子王弗的妙作:|Exp#150:|Strength#100:|StrengthFood#85:|Health#1:|Feeling#30:|
food:|type#Meal:|name#番茄意面:|price#34.0:|desc#只要不是巧克力酱什么都好说。。:|Exp#100:|Strength#100:|StrengthFood#110:|Health#1:|Feeling#20:|
food:|type#Meal:|name#红烧狮子头:|price#36.5:|desc#芋头西米露:|Exp#150:|Strength#120:|StrengthFood#90:|Health#1:|Feeling#30:|
food:|type#Meal:|name#红烧牛肉:|price#44.5:|desc#不是4块钱的请放心:|Exp#150:|Strength#140:|StrengthFood#130:|Health#1:|Feeling#30:|
food:|type#Meal:|name#东坡肘子:|price#35.0:|desc#小知识:东坡肘子其实并非苏东坡之功,而是其妻子王弗的妙作:|Exp#150:|Strength#100:|StrengthFood#85:|Health#1:|Feeling#30:|
food:|type#Meal:|name#番茄意面:|price#34.5:|desc#只要不是巧克力酱什么都好说。。:|Exp#100:|Strength#100:|StrengthFood#110:|Health#1:|Feeling#20:|
food:|type#Meal:|name#红烧狮子头:|price#37.0:|desc#芋头西米露:|Exp#150:|Strength#120:|StrengthFood#90:|Health#1:|Feeling#30:|
food:|type#Meal:|name#红烧牛肉:|price#45.0:|desc#不是4块钱的请放心:|Exp#150:|Strength#140:|StrengthFood#130:|Health#1:|Feeling#30:|
food:|type#Meal:|name#华夫饼:|price#28.0:|desc#蜜饼!小刻最爱!:|Exp#70:|Strength#100:|StrengthFood#80:|Feeling#30:|
food:|type#Meal:|name#鸡翅:|price#23.0:|desc#红烧翅膀~我喜欢吃~:|Exp#30:|Strength#100:|StrengthFood#75:|Feeling#20:|
food:|type#Meal:|name#煎西冷牛排:|price#57.5:|desc#开瓶可乐吧,上流:|Exp#225:|Strength#140:|StrengthFood#150:|Health#5:|Feeling#40:|
food:|type#Meal:|name#煎西冷牛排:|price#68.5:|desc#开瓶可乐吧,上流:|Exp#225:|Strength#140:|StrengthFood#150:|Health#10:|Feeling#40:|Likability#1:|
food:|type#Meal:|name#辣子鸡:|price#41.0:|desc#当红辣子鸡哟:|Exp#150:|Strength#100:|StrengthFood#120:|Feeling#40:|
food:|type#Meal:|name#罗宋汤:|price#35.0:|desc#咲夜!“给我吃!”:|Exp#100:|Strength#100:|StrengthFood#110:|Feeling#30:|
food:|type#Meal:|name#麻婆豆腐:|price#33.0:|desc#麻婆豆腐之所以叫麻婆豆腐是因为麻婆喜欢吃:|Exp#75:|Strength#100:|StrengthFood#110:|Feeling#30:|
@ -51,14 +51,14 @@ food:|type#Meal:|name#南瓜吐司:|price#27.0:|desc#加了南瓜!是的!我
food:|type#Meal:|name#酿豆腐:|price#26.5:|desc#你中有我,我中有你:|Exp#75:|Strength#100:|StrengthFood#80:|Feeling#15:|
food:|type#Meal:|name#披萨:|price#35.5:|desc#不要放菠萝!!!:|Exp#150:|Strength#100:|StrengthFood#100:|Feeling#20:|
food:|type#Meal:|name#三明治:|price#24.5:|desc#两面包夹芝士:|Exp#50:|Strength#80:|StrengthFood#85:|Feeling#15:|
food:|type#Meal:|name#沙拉:|price#40.0:|desc#沙拉沙拉啦啦啦:|Exp#150:|Strength#80:|StrengthFood#80:|Health#10:|Feeling#5:|
food:|type#Meal:|name#沙拉:|price#39.0:|desc#沙拉沙拉啦啦啦:|Exp#150:|Strength#80:|StrengthFood#80:|Health#10:|Feeling#5:|
food:|type#Meal:|name#烧鹅:|price#38.0:|desc#官方特意调整成鹅的,这让我文案不好做啊,我就要在这里写上烧鸡两个大字!:|Exp#150:|Strength#120:|StrengthFood#100:|Feeling#30:|
food:|type#Meal:|name#酸菜鱼:|price#40.0:|desc#人人皆是酸菜鱼:|Exp#150:|Strength#120:|StrengthFood#110:|Feeling#35:|
food:|type#Meal:|name#西冷牛排:|price#56.0:|desc#开瓶拉菲吧,上流:|Exp#250:|Strength#120:|StrengthFood#140:|Health#5:|Feeling#40:|
food:|type#Meal:|name#香煎牛仔骨:|price#71.0:|desc#开瓶红酒吧,上流:|Exp#300:|Strength#120:|StrengthFood#160:|Health#10:|Feeling#50:|
food:|type#Meal:|name#西冷牛排:|price#72.0:|desc#开瓶拉菲吧,上流:|Exp#250:|Strength#120:|StrengthFood#140:|Health#15:|Feeling#40:|Likability#1:|
food:|type#Meal:|name#香煎牛仔骨:|price#80.0:|desc#开瓶红酒吧,上流:|Exp#300:|Strength#120:|StrengthFood#160:|Health#10:|Feeling#50:|Likability#2:|
food:|type#Meal:|name#盐焗鸡:|price#35.0:|desc#谁说的腌鸡!站出来!:|Exp#150:|Strength#100:|StrengthFood#90:|Feeling#30:|
food:|type#Meal:|name#芝士焗虾:|price#28.5:|desc#焗虾闭嘴:|Exp#125:|Strength#80:|StrengthFood#70:|Feeling#30:|
food:|type#Meal:|name#纸包鸡:|price#28.0:|desc#纸包鸡包纸包鸡包鸡包纸:|Exp#100:|Strength#85:|StrengthFood#75:|Feeling#30:|
food:|type#Meal:|name#炸鸡腿:|price#14.5:|desc#:|Exp#50:|Strength#40:|StrengthFood#40:|Feeling#20:|
food:|type#Meal:|name#炸鸡腿:|price#14.5:|desc#你每吃一个炸鸡腿就有0.5只鸡受到伤害。保护鸡鸡,从一次吃两个炸鸡腿做起!:|Exp#50:|Strength#40:|StrengthFood#40:|Feeling#20:|
food:|type#Meal:|name#汉堡:|price#19.5:|desc#还想要汉O王这价格不是华O士已经对你很好了。:|Exp#50:|Strength#60:|StrengthFood#60:|Feeling#20:|
food:|type#Functional:|name#地球:|price#0.0:|desc#没钱也能吃,可以用来拯救存档:|Exp#-300:|Strength#-200:|StrengthDrink#200:|StrengthFood#200:|Feeling#-200:|
food:|type#Functional:|name#地球:|price#0.0:|desc#没钱也能吃,可以用来拯救存档:|Exp#-100:|Strength#-50:|StrengthDrink#75:|StrengthFood#75:|Feeling#-50:|Likability#-1:|

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 MiB