修复bug&更好买描述
@ -38,12 +38,12 @@ namespace VPet_Simulator.Core
|
||||
/// 说话
|
||||
/// </summary>
|
||||
/// <param name="text">说话内容</param>
|
||||
public void Say(string text, GraphCore.Helper.SayType type = GraphCore.Helper.SayType.Shining)
|
||||
public void Say(string text, GraphCore.Helper.SayType type = GraphCore.Helper.SayType.Shining, bool force = false)
|
||||
{
|
||||
Task.Run(() =>
|
||||
{
|
||||
OnSay?.Invoke(text);
|
||||
if (type != GraphCore.Helper.SayType.None && DisplayType == GraphCore.GraphType.Default)
|
||||
if (force || type != GraphCore.Helper.SayType.None && DisplayType == GraphCore.GraphType.Default)
|
||||
Display(GraphCore.Helper.Convert(type, GraphCore.Helper.AnimatType.A_Start), () =>
|
||||
{
|
||||
Dispatcher.Invoke(() => MsgBar.Show(Core.Save.Name, text, type));
|
||||
|
@ -59,10 +59,22 @@ namespace VPet_Simulator.Core
|
||||
pFeeling.Value = m.Core.Save.Feeling;
|
||||
pStrengthFood.Value = m.Core.Save.StrengthFood;
|
||||
pStrengthDrink.Value = m.Core.Save.StrengthDrink;
|
||||
tStrength.Text = $"{m.Core.Save.ChangeStrength:f1}/t";
|
||||
tFeeling.Text = $"{m.Core.Save.ChangeFeeling:f1}/t";
|
||||
tStrengthDrink.Text = $"{m.Core.Save.ChangeStrengthDrink:f1}/t";
|
||||
tStrengthFood.Text = $"{m.Core.Save.ChangeStrengthFood:f1}/t";
|
||||
if (m.Core.Save.ChangeStrength < 1)
|
||||
tStrength.Text = $"{m.Core.Save.ChangeStrength:f1}/t";
|
||||
else
|
||||
tStrength.Text = $"{m.Core.Save.ChangeStrength:f2}/t";
|
||||
if (m.Core.Save.ChangeFeeling < 1)
|
||||
tFeeling.Text = $"{m.Core.Save.ChangeFeeling:f1}/t";
|
||||
else
|
||||
tFeeling.Text = $"{m.Core.Save.ChangeFeeling:f2}/t";
|
||||
if (m.Core.Save.ChangeStrengthDrink < 1)
|
||||
tStrengthDrink.Text = $"{m.Core.Save.ChangeStrengthDrink:f1}/t";
|
||||
else
|
||||
tStrengthDrink.Text = $"{m.Core.Save.ChangeStrengthDrink:f2}/t";
|
||||
if (m.Core.Save.ChangeStrengthFood < 1)
|
||||
tStrengthFood.Text = $"{m.Core.Save.ChangeStrengthFood:f1}/t";
|
||||
else
|
||||
tStrengthFood.Text = $"{m.Core.Save.ChangeStrengthFood:f2}/t";
|
||||
}
|
||||
}
|
||||
|
||||
@ -178,33 +190,33 @@ namespace VPet_Simulator.Core
|
||||
|
||||
private void PgbExperience_GeneratingPercentText(object sender, GeneratingPercentTextRoutedEventArgs e)
|
||||
{
|
||||
e.Text = $"{e.Value} / {pExp.Maximum}";
|
||||
e.Text = $"{e.Value:f2} / {pExp.Maximum:f0}";
|
||||
}
|
||||
|
||||
private void PgbStrength_GeneratingPercentText(object sender, GeneratingPercentTextRoutedEventArgs e)
|
||||
{
|
||||
e.Text = $"{e.Value} / 100";
|
||||
e.Text = $"{e.Value:f2} / 100";
|
||||
}
|
||||
|
||||
private void PgbSpirit_GeneratingPercentText(object sender, GeneratingPercentTextRoutedEventArgs e)
|
||||
{
|
||||
var progressBar = (ProgressBar)sender;
|
||||
progressBar.Foreground = GetForeground(e.Value);
|
||||
e.Text = $"{e.Value} / 100";
|
||||
e.Text = $"{e.Value:f2} / 100";
|
||||
}
|
||||
|
||||
private void PgbHunger_GeneratingPercentText(object sender, GeneratingPercentTextRoutedEventArgs e)
|
||||
{
|
||||
var progressBar = (ProgressBar)sender;
|
||||
progressBar.Foreground = GetForeground(e.Value);
|
||||
e.Text = $"{e.Value} / 100";
|
||||
e.Text = $"{e.Value:f2} / 100";
|
||||
}
|
||||
|
||||
private void PgbThirsty_GeneratingPercentText(object sender, GeneratingPercentTextRoutedEventArgs e)
|
||||
{
|
||||
var progressBar = (ProgressBar)sender;
|
||||
progressBar.Foreground = GetForeground(e.Value);
|
||||
e.Text = $"{e.Value} / 100";
|
||||
e.Text = $"{e.Value:f2} / 100";
|
||||
//if (e.Value <= 20)
|
||||
//{
|
||||
// tHearth.Visibility = Visibility.Visible;
|
||||
|
@ -60,15 +60,18 @@ namespace VPet_Simulator.Core
|
||||
{
|
||||
case Main.WorkingState.Study:
|
||||
m.Core.Save.Money += GetCount * 0.2;
|
||||
Stop(() => m.Say($"学习完成啦, 累计学会了 {(GetCount * 1.2):f2} EXP\n共计花费了{MaxTime}分钟"));
|
||||
Stop(() => m.Say($"学习完成啦, 累计学会了 {(GetCount * 1.2):f2} 经验值\n共计花费了{MaxTime}分钟"
|
||||
, GraphCore.Helper.SayType.Shining, true));
|
||||
break;
|
||||
case Main.WorkingState.WorkONE:
|
||||
m.Core.Save.Money += GetCount * 0.15;
|
||||
Stop(() => m.Say($"{m.Core.Graph.GraphConfig.Str[(gstr)"work1"]}完成啦, 累计赚了 {GetCount * 1.15:f2} 金钱\n共计花费了{MaxTime}分钟"));
|
||||
Stop(() => m.Say($"{m.Core.Graph.GraphConfig.Str[(gstr)"work1"]}完成啦, 累计赚了 {GetCount * 1.15:f2} 金钱\n共计花费了{MaxTime}分钟"
|
||||
, GraphCore.Helper.SayType.Shining, true));
|
||||
break;
|
||||
case Main.WorkingState.WorkTWO:
|
||||
m.Core.Save.Money += GetCount * 0.25;
|
||||
Stop(() => m.Say($"{m.Core.Graph.GraphConfig.Str[(gstr)"work2"]}完成啦, 累计赚了 {GetCount * 1.25:f2} 金钱\n共计花费了{MaxTime}分钟"));
|
||||
Stop(() => m.Say($"{m.Core.Graph.GraphConfig.Str[(gstr)"work2"]}完成啦, 累计赚了 {GetCount * 1.25:f2} 金钱\n共计花费了{MaxTime}分钟"
|
||||
, GraphCore.Helper.SayType.Shining, true));
|
||||
break;
|
||||
}
|
||||
|
||||
@ -222,7 +225,10 @@ namespace VPet_Simulator.Core
|
||||
m.Display(GraphCore.GraphType.WorkTWO_C_End, then ?? m.DisplayNomal);
|
||||
break;
|
||||
default:
|
||||
then?.Invoke();
|
||||
if (then == null)
|
||||
m.DisplayNomal();
|
||||
else
|
||||
then();
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
@ -82,6 +82,7 @@ namespace VPet_Simulator.Windows.Interface
|
||||
/// </summary>
|
||||
[Line(ignoreCase: true)]
|
||||
public string Desc { get; set; }
|
||||
private string desc = null;
|
||||
/// <summary>
|
||||
/// 描述(ToBetterBuy)
|
||||
/// </summary>
|
||||
@ -89,8 +90,24 @@ namespace VPet_Simulator.Windows.Interface
|
||||
{
|
||||
get
|
||||
{
|
||||
StringBuilder sb = new StringBuilder(Desc);
|
||||
return sb.ToString();
|
||||
if(desc == null)
|
||||
{
|
||||
StringBuilder sb = new StringBuilder();
|
||||
if (Exp != 0)
|
||||
sb.Append("经验值:\t").Append(Exp > 0 ? "+" : "").Append(Exp.ToString("f2")).AppendLine();
|
||||
if (StrengthFood != 0) sb.Append("饱腹度:\t").Append(StrengthFood > 0 ? "+" : "").Append(StrengthFood.ToString("f2")).Append("\t\t");
|
||||
if (StrengthDrink != 0) sb.Append("口渴度:\t").Append(StrengthDrink > 0 ? "+" : "").Append(StrengthDrink.ToString("f2")).AppendLine();
|
||||
if (Strength != 0) sb.Append("体力:\t").Append(Strength > 0 ? "+" : "").Append(Strength.ToString("f2")).Append("\t\t");
|
||||
if (Feeling != 0)
|
||||
sb.Append("心情:\t").Append(Feeling > 0 ? "+" : "").Append(Feeling.ToString("f2")).AppendLine();
|
||||
if (Health != 0)
|
||||
sb.Append("健康:\t").Append(Health > 0 ? "+" : "").Append(Health.ToString("f2")).Append("\t\t");
|
||||
if (Likability != 0)
|
||||
sb.Append("好感度:\t").Append(Likability > 0 ? "+" : "").Append(Likability.ToString("f2"));
|
||||
sb.AppendLine().Append(Desc);
|
||||
desc = sb.ToString();
|
||||
}
|
||||
return desc;
|
||||
}
|
||||
}
|
||||
/// <summary>
|
||||
|
@ -104,7 +104,7 @@
|
||||
</StackPanel>
|
||||
</Border>-->
|
||||
<Button Grid.Row="4" Margin="0,7,0,0" Padding="7,5" Cursor="Hand"
|
||||
HorizontalAlignment="Left" pu:ButtonHelper.Icon=""
|
||||
HorizontalAlignment="Left" pu:ButtonHelper.Icon=""
|
||||
Style="{DynamicResource ThemedButtonStyle}" Content="购买" Click="BtnBuy_Click" />
|
||||
</Grid>
|
||||
</Grid>
|
||||
@ -123,6 +123,7 @@
|
||||
Foreground="{DynamicResource DARKPrimaryText}" Text="{Binding Name}" />
|
||||
<ScrollViewer Grid.Row="1" Grid.RowSpan="4" Margin="0,7,0,0"
|
||||
pu:ScrollBarHelper.ThumbBackground="#44FFFFFF"
|
||||
PreviewMouseWheel="ScrollViewer_PreviewMouseWheel"
|
||||
pu:ScrollBarHelper.HoverThumbBackground="#88FFFFFF">
|
||||
<TextBlock TextWrapping="Wrap" Background="Transparent" FontSize="12" Padding="0"
|
||||
Foreground="{DynamicResource DARKPrimaryText}" Text="{Binding Description}" />
|
||||
@ -228,7 +229,7 @@
|
||||
</Border>
|
||||
</Grid>
|
||||
<Grid Margin="10" Grid.Column="1">
|
||||
<ScrollViewer>
|
||||
<ScrollViewer x:Name="PageDetail">
|
||||
<ItemsControl x:Name="IcCommodity" VerticalAlignment="Top">
|
||||
<ItemsControl.ItemsPanel>
|
||||
<ItemsPanelTemplate>
|
||||
|
@ -142,7 +142,13 @@ namespace VPet_Simulator.Windows
|
||||
// var item = repeatButton.DataContext as BetterBuyItem;
|
||||
// item.Quantity = Math.Max(1, item.Quantity - 1);
|
||||
//}
|
||||
|
||||
private void ScrollViewer_PreviewMouseWheel(object sender, MouseWheelEventArgs e)
|
||||
{
|
||||
var eventArg = new MouseWheelEventArgs(e.MouseDevice, e.Timestamp, e.Delta);
|
||||
eventArg.RoutedEvent = UIElement.MouseWheelEvent;
|
||||
eventArg.Source = sender;
|
||||
PageDetail.RaiseEvent(eventArg);
|
||||
}
|
||||
private void BtnBuy_Click(object sender, RoutedEventArgs e)
|
||||
{
|
||||
|
||||
|
@ -99,7 +99,7 @@
|
||||
CheckedBorderBrush="{DynamicResource Primary}" Background="Transparent" BoxWidth="35"
|
||||
BoxHeight="18" ToggleSize="14" ToggleShadowColor="{x:Null}"
|
||||
ToggleBrush="{DynamicResource PrimaryDark}" Content="退出位置"
|
||||
CheckedToggleBrush="{DynamicResource DARKPrimaryText}" ToolTip="该游戏随着开机启动该程序"
|
||||
CheckedToggleBrush="{DynamicResource DARKPrimaryText}" ToolTip="游戏退出位置为下次桌宠启动出现的位置"
|
||||
Unchecked="StartPlace_Checked" VerticalAlignment="Center" Checked="StartPlace_Checked" />
|
||||
<TextBox x:Name="TextBoxStartUpX" Grid.Column="1" Style="{DynamicResource StandardTextBoxStyle}"
|
||||
ToolTip="X轴" pu:TextBoxHelper.Icon="X" FontSize="16" Margin="0,0,5,0"
|
||||
@ -573,10 +573,10 @@
|
||||
<TabItem Header="关于" BorderBrush="{DynamicResource PrimaryDarker}"
|
||||
Foreground="{DynamicResource PrimaryText}">
|
||||
<Grid>
|
||||
<Image x:Name="ImageWHY" Width="64" HorizontalAlignment="Right" VerticalAlignment="Center"
|
||||
Height="64" Source="/Res/TopLogo2019.PNG" Margin="0,210,55,0" />
|
||||
<TextBlock Margin="0,0,0,0" Text="虚拟主播模拟器 规格" FontSize="20" FontWeight="Bold" />
|
||||
<TextBlock Margin="0,130,0,0" FontWeight="Bold">
|
||||
<Image x:Name="ImageWHY" Width="64" HorizontalAlignment="Right" VerticalAlignment="Top" Height="64" Source="/Res/TopLogo2019.PNG" Margin="0,325,55,0" />
|
||||
<TextBlock Margin="0,0,0,0" Text="虚拟主播模拟器 规格" FontSize="20" FontWeight="Bold"
|
||||
VerticalAlignment="Top" />
|
||||
<TextBlock Margin="0,130,0,0" FontWeight="Bold" VerticalAlignment="Top">
|
||||
<Run>游戏策划</Run><LineBreak />
|
||||
<Run>UI&程序</Run><LineBreak />
|
||||
<Run>动画绘制</Run><LineBreak />
|
||||
@ -595,7 +595,7 @@
|
||||
Click="Group_Click" FontWeight="Normal">相关群</Hyperlink>
|
||||
|
||||
</TextBlock>
|
||||
<TextBlock Margin="0,30,0,0" FontWeight="Bold">
|
||||
<TextBlock Margin="0,30,0,0" FontWeight="Bold" VerticalAlignment="Top">
|
||||
<Run>用户名</Run><LineBreak />
|
||||
<Run>版本</Run><LineBreak />
|
||||
<Run>激活</Run><LineBreak />
|
||||
@ -605,7 +605,8 @@
|
||||
<Run x:Name="runabVer">v1.0 (100)</Run><LineBreak />
|
||||
<Run x:Name="runActivate">已通过Steam[uid]激活服务注册</Run><LineBreak />
|
||||
</TextBlock>
|
||||
<TextBlock Margin="0,100,0,0" Text="制作组名单" FontSize="20" FontWeight="Bold" />
|
||||
<TextBlock Margin="0,100,0,0" Text="制作组名单" FontSize="20" FontWeight="Bold"
|
||||
HorizontalAlignment="Left" VerticalAlignment="Top" />
|
||||
<TextBlock Margin="100,130,0,0" VerticalAlignment="Top" TextWrapping="WrapWithOverflow">
|
||||
<Run>杨远洛里斯, 广大MOD作者</Run><LineBreak />
|
||||
<Run>洛里斯杨远, トニーちゃん</Run> <Hyperlink Click="Git_Click">Git贡献名单</Hyperlink><LineBreak />
|
||||
|
@ -1,63 +1,63 @@
|
||||
food:|type#Drink:|name#ab钙奶:|price#5.0:|desc#健康美味,经济实惠:|Exp#10:|Strength#10:|StrengthDrink#10:|StrengthFood#5:|Health#1:|Feeling#1:|
|
||||
food:|type#Drink:|name#果汁:|price#7.0:|desc#那个那个那个那个果汁分你一半:|Exp#20:|Strength#20:|StrengthDrink#20:|StrengthFood#4:|Health#3:|Feeling#3:|
|
||||
food:|type#Drink:|name#可乐:|price#6.5:|desc#蓝色那个在日用品区谢谢:|Exp#10:|Strength#10:|StrengthDrink#10:|StrengthFood#2:|Health#-1:|Feeling#20:|
|
||||
food:|type#Drink:|name#凉茶:|price#12.0:|desc#怕上火,喝广东咖啡!:|Exp#50:|Strength#50:|StrengthDrink#50:|StrengthFood#1:|Health#5:|Feeling#5:|
|
||||
food:|type#Drink:|name#维他奶:|price#5.5:|desc#:|Exp#20:|Strength#20:|StrengthDrink#20:|StrengthFood#5:|Health#1:|Feeling#1:|
|
||||
food:|type#Drink:|name#雷碧:|price#5.5:|desc#透心扬,心飞凉:|Exp#6:|Strength#6:|StrengthDrink#6:|StrengthFood#3:|Health#-1:|Feeling#15:|
|
||||
food:|type#Drink:|name#盐汽水:|price#6.0:|desc#我一口盐汽水!:|Exp#20:|Strength#20:|StrengthDrink#20:|StrengthFood#3:|Health#-0.5:|Feeling#15:|
|
||||
food:|type#Drink:|name#椰汁:|price#8.0:|desc#白白胖胖,曲线圆润,要喝不加香油的椰O牌椰汁:|Exp#20:|Strength#20:|StrengthDrink#20:|StrengthFood#4:|Health#2:|Feeling#10:|
|
||||
food:|type#Functional:|name#咖啡饮料:|price#9.0:|desc#不小心倒在键盘上效果更好哦!:|Exp#80:|Strength#80:|StrengthDrink#80:|StrengthFood#3:|Health#-1:|Feeling#:|
|
||||
food:|type#Functional:|name#大鹏特饮:|price#11.5:|desc#困了累了,大鹏特饮:|Exp#120:|Strength#120:|StrengthDrink#120:|StrengthFood#3:|Health#-1:|Feeling#10:|
|
||||
food:|type#Functional:|name#黄牛:|price#13.0:|desc#放心,喝他的饮料不是他出钱你出命:|Exp#160:|Strength#160:|StrengthDrink#160:|StrengthFood#3:|Health#-1:|Feeling#10:|
|
||||
food:|type#Functional:|name#能量饮料:|price#14.0:|desc#:|Exp#280:|Strength#280:|StrengthDrink#280:|StrengthFood#3:|Health#-5:|Feeling#8:|
|
||||
food:|type#Functional:|name#土力架:|price#11.5:|desc#横扫自己,做回饥饿:|Exp#10:|Strength#10:|StrengthDrink#10:|StrengthFood#80:|Health#0:|Feeling#:|
|
||||
food:|type#Functional:|name#压缩饼干:|price#12.5:|desc#饼干.rar:|Exp#10:|Strength#10:|StrengthDrink#10:|StrengthFood#100:|Feeling#:|
|
||||
food:|type#Snack:|name#爆米花:|price#5.5:|desc#电影必备,吃不完也要买:|Exp#20:|Strength#20:|StrengthDrink#20:|StrengthFood#30:|Health#-1:|Feeling#10:|
|
||||
food:|type#Snack:|name#冰激凌:|price#6.0:|desc#中国人免费领:|Exp#10:|Strength#10:|StrengthDrink#10:|StrengthFood#24:|Health#-0.5:|Feeling#20:|
|
||||
food:|type#Snack:|name#瓜子:|price#5.5:|desc#嘎吱嘎吱嘎吱嘎吱嘎吱嘎吱嘎吱嘎吱嘎吱嘎吱嘎吱嘎吱嘎吱嘎吱嘎吱嘎吱嘎吱嘎吱嘎吱嘎吱嘎吱嘎吱嘎吱嘎吱嘎吱嘎吱嘎吱:|Exp#10:|Strength#10:|StrengthDrink#10:|StrengthFood#26:|Feeling#15:|
|
||||
food:|type#Snack:|name#核桃仁:|price#8.5:|desc#这次不用自己带锤子了:|Exp#80:|Strength#80:|StrengthDrink#80:|StrengthFood#5:|Health#5:|Feeling#:|
|
||||
food:|type#Snack:|name#火腿肠:|price#6.0:|desc#:|Exp#10:|Strength#10:|StrengthDrink#10:|StrengthFood#38:|Health#-0.5:|Feeling#:|
|
||||
food:|type#Snack:|name#花生米:|price#3.0:|desc#但凡有一粒花生米。。。:|Exp#10:|Strength#10:|StrengthDrink#10:|StrengthFood#20:|Health#-0.5:|Feeling#:|
|
||||
food:|type#Snack:|name#戒指糖:|price#1.5:|desc#这不比那个不能吃的破石头有用多了:|Exp#10:|Strength#10:|StrengthDrink#10:|StrengthFood#10:|Health#-0.5:|Feeling#:|
|
||||
food:|type#Snack:|name#老冰棍:|price#3.0:|desc#厂家正在考虑与辐射4联动中:|Exp#20:|Strength#20:|StrengthDrink#20:|StrengthFood#5:|Health#-0.5:|Feeling#2:|
|
||||
food:|type#Snack:|name#绿色心情:|price#2.5:|desc#几年前还是一块钱的呜呜呜:|Exp#10:|Strength#10:|StrengthDrink#10:|StrengthFood#5:|Health#-0.5:|Feeling#5:|
|
||||
food:|type#Snack:|name#奶片:|price#2.5:|desc#希望你们永远不会知道这个药。。。:|Exp#20:|Strength#20:|StrengthDrink#20:|StrengthFood#8:|Feeling#7:|
|
||||
food:|type#Snack:|name#奶糖:|price#4.5:|desc#小白兔牌:|Exp#30:|Strength#30:|StrengthDrink#30:|StrengthFood#15:|Feeling#15:|
|
||||
food:|type#Snack:|name#牛板筋:|price#2.5:|desc#只要来一根,大家都是好兄弟:|Exp#20:|Strength#20:|StrengthDrink#20:|StrengthFood#8:|Health#-1:|Feeling#10:|
|
||||
food:|type#Snack:|name#牛扎糖:|price#3.0:|desc#好甜,像你一样:|Exp#20:|Strength#20:|StrengthDrink#20:|StrengthFood#8:|Feeling#15:|
|
||||
food:|type#Snack:|name#泡泡糖:|price#3.5:|desc#就吹吧你:|Exp#30:|Strength#30:|StrengthDrink#30:|StrengthFood#5:|Feeling#17:|
|
||||
food:|type#Snack:|name#巧克力:|price#7.0:|desc#纵享丝滑:|Exp#20:|Strength#20:|StrengthDrink#20:|StrengthFood#38:|Feeling#15:|
|
||||
food:|type#Snack:|name#软糖:|price#2.5:|desc#come on baby~:|Exp#20:|Strength#20:|StrengthDrink#20:|StrengthFood#12:|Feeling#5:|
|
||||
food:|type#Snack:|name#薯片:|price#5.5:|desc#开趴必备:|Exp#20:|Strength#20:|StrengthDrink#20:|StrengthFood#28:|Feeling#5:|
|
||||
food:|type#Snack:|name#娃仔小馒头:|price#3.5:|desc#这是我们的宝贝~~:|Exp#20:|Strength#20:|StrengthDrink#20:|StrengthFood#12:|Feeling#10:|
|
||||
food:|type#Snack:|name#小布丁:|price#3.0:|desc#没关系,小小的也很好吃:|Exp#20:|Strength#20:|StrengthDrink#20:|StrengthFood#10:|Feeling#5:|
|
||||
food:|type#Snack:|name#雪饼:|price#4.0:|desc#小时候的一口吃不下:|Exp#20:|Strength#20:|StrengthDrink#20:|StrengthFood#15:|Feeling#10:|
|
||||
food:|type#Snack:|name#散射雪糕:|price#4.5:|desc#三倍的快乐:|Exp#10:|Strength#10:|StrengthDrink#10:|StrengthFood#20:|Feeling#10:|
|
||||
food:|type#Snack:|name#猪肉脯:|price#9.5:|desc#你感觉在吃牛皮。。:|Exp#30:|Strength#30:|StrengthFood#48:|Feeling#15:|
|
||||
food:|type#Meal:|name#臭豆腐:|price#14.5:|desc#闻起来臭,吃起来也臭,就是越吃越香。:|Exp#100:|Strength#100:|StrengthFood#55:|Feeling#5:|
|
||||
food:|type#Meal:|name#东坡肘子:|price#30.5:|desc#小知识:东坡肘子其实并非苏东坡之功,而是其妻子王弗的妙作:|Exp#300:|Strength#300:|StrengthFood#85:|Health#1:|Feeling#30:|
|
||||
food:|type#Meal:|name#番茄意面:|price#28.0:|desc#只要不是巧克力酱什么都好说。。:|Exp#200:|Strength#200:|StrengthFood#110:|Health#1:|Feeling#20:|
|
||||
food:|type#Meal:|name#红烧狮子头:|price#32.0:|desc#芋头西米露:|Exp#300:|Strength#300:|StrengthFood#90:|Health#1:|Feeling#30:|
|
||||
food:|type#Meal:|name#红烧牛肉:|price#37.5:|desc#不是4块钱的,请放心:|Exp#300:|Strength#300:|StrengthFood#130:|Health#1:|Feeling#30:|
|
||||
food:|type#Meal:|name#华夫饼:|price#22.0:|desc#蜜饼!小刻最爱!:|Exp#140:|Strength#140:|StrengthFood#80:|Feeling#30:|
|
||||
food:|type#Meal:|name#鸡翅:|price#16.5:|desc#红烧翅膀~我喜欢吃~:|Exp#60:|Strength#60:|StrengthFood#75:|Feeling#20:|
|
||||
food:|type#Meal:|name#煎西冷牛排:|price#52.0:|desc#开瓶可乐吧,上流:|Exp#450:|Strength#450:|StrengthFood#150:|Health#5:|Feeling#40:|
|
||||
food:|type#Meal:|name#辣子鸡:|price#35.5:|desc#当红辣子鸡哟:|Exp#300:|Strength#300:|StrengthFood#120:|Feeling#40:|
|
||||
food:|type#Meal:|name#罗宋汤:|price#28.5:|desc#咲夜!“给我吃!”:|Exp#200:|Strength#200:|StrengthFood#110:|Feeling#30:|
|
||||
food:|type#Meal:|name#麻婆豆腐:|price#26.0:|desc#麻婆豆腐之所以叫麻婆豆腐是因为麻婆喜欢吃:|Exp#150:|Strength#150:|StrengthFood#110:|Feeling#30:|
|
||||
food:|type#Meal:|name#梅菜扣肉:|price#29.5:|desc#不会咬人的谢谢:|Exp#250:|Strength#250:|StrengthFood#100:|Feeling#25:|
|
||||
food:|type#Meal:|name#面包:|price#14.5:|desc#你还记得你吃过多少块面包吗:|Strength#:|StrengthFood#100:|
|
||||
food:|type#Meal:|name#南瓜吐司:|price#20.5:|desc#加了南瓜!是的!我加了南瓜!:|Exp#100:|Strength#100:|StrengthFood#100:|Feeling#15:|
|
||||
food:|type#Meal:|name#酿豆腐:|price#21.0:|desc#你中有我,我中有你:|Exp#150:|Strength#150:|StrengthFood#80:|Feeling#15:|
|
||||
food:|type#Meal:|name#披萨:|price#31.5:|desc#不要放菠萝!!!:|Exp#300:|Strength#300:|StrengthFood#100:|Feeling#20:|
|
||||
food:|type#Meal:|name#三明治:|price#18.5:|desc#两面包夹芝士:|Exp#100:|Strength#100:|StrengthFood#85:|Feeling#15:|
|
||||
food:|type#Meal:|name#沙拉:|price#38.5:|desc#沙拉沙拉啦啦啦:|Exp#300:|Strength#300:|StrengthFood#80:|Health#10:|Feeling#5:|
|
||||
food:|type#Meal:|name#烧鹅:|price#33.0:|desc#官方特意调整成鹅的,这让我文案不好做啊,我就要在这里写上烧鸡两个大字!:|Exp#300:|Strength#300:|StrengthFood#100:|Feeling#30:|
|
||||
food:|type#Meal:|name#酸菜鱼:|price#34.5:|desc#人人皆是酸菜鱼:|Exp#300:|Strength#300:|StrengthFood#110:|Feeling#35:|
|
||||
food:|type#Meal:|name#西冷牛排:|price#52.5:|desc#开瓶拉菲吧,上流:|Exp#500:|Strength#500:|StrengthFood#140:|Health#5:|Feeling#40:|
|
||||
food:|type#Meal:|name#香煎牛仔骨:|price#68.0:|desc#开瓶红酒吧,上流:|Exp#600:|Strength#600:|StrengthFood#160:|Health#10:|Feeling#50:|
|
||||
food:|type#Meal:|name#盐焗鸡:|price#31.0:|desc#谁说的腌鸡!站出来!:|Exp#300:|Strength#300:|StrengthFood#90:|Feeling#30:|
|
||||
food:|type#Meal:|name#芝士焗虾:|price#25.5:|desc#焗虾闭嘴:|Exp#250:|Strength#250:|StrengthFood#70:|Feeling#30:|
|
||||
food:|type#Meal:|name#纸包鸡:|price#24.0:|desc#纸包鸡包纸包鸡包鸡包纸:|Exp#200:|Strength#200:|StrengthFood#75:|Feeling#30:|
|
||||
food:|type#Meal:|name#炸鸡腿:|price#12.5:|desc#:|Exp#100:|Strength#100:|StrengthFood#40:|Feeling#20:|
|
||||
food:|type#Meal:|name#汉堡:|price#15.5:|desc#还想要汉O王?这价格不是华O士已经对你很好了。:|Exp#100:|Strength#100:|StrengthFood#60:|Feeling#20:|
|
||||
food:|type#Drink:|name#ab钙奶:|price#6.5:|desc#健康美味,经济实惠:|Exp#5:|Strength#10:|StrengthDrink#40:|StrengthFood#5:|Health#1:|Feeling#1:|
|
||||
food:|type#Drink:|name#果汁:|price#8.5:|desc#那个那个那个那个果汁分你一半:|Exp#10:|Strength#10:|StrengthDrink#40:|StrengthFood#4:|Health#3:|Feeling#3:|
|
||||
food:|type#Drink:|name#可乐:|price#8.5:|desc#蓝色那个在日用品区谢谢:|Exp#5:|Strength#10:|StrengthDrink#50:|StrengthFood#2:|Health#-1:|Feeling#20:|
|
||||
food:|type#Drink:|name#凉茶:|price#13.5:|desc#怕上火,喝广东咖啡!:|Exp#25:|Strength#10:|StrengthDrink#60:|StrengthFood#1:|Health#5:|Feeling#5:|
|
||||
food:|type#Drink:|name#维他奶:|price#6.5:|desc#:|Exp#10:|Strength#15:|StrengthDrink#35:|StrengthFood#5:|Health#1:|Feeling#1:|
|
||||
food:|type#Drink:|name#雷碧:|price#7.0:|desc#透心扬,心飞凉:|Exp#3:|Strength#5:|StrengthDrink#45:|StrengthFood#3:|Health#-1:|Feeling#15:|
|
||||
food:|type#Drink:|name#盐汽水:|price#8.0:|desc#我一口盐汽水!:|Exp#10:|Strength#15:|StrengthDrink#40:|StrengthFood#3:|Health#-0.5:|Feeling#15:|
|
||||
food:|type#Drink:|name#椰汁:|price#10.0:|desc#白白胖胖,曲线圆润,要喝不加香油的椰O牌椰汁:|Exp#10:|Strength#15:|StrengthDrink#50:|StrengthFood#4:|Health#2:|Feeling#10:|
|
||||
food:|type#Functional:|name#咖啡饮料:|price#10.0:|desc#不小心倒在键盘上效果更好哦!:|Exp#40:|Strength#80:|StrengthDrink#20:|StrengthFood#3:|Health#-1:|
|
||||
food:|type#Functional:|name#大鹏特饮:|price#13.0:|desc#困了累了,大鹏特饮:|Exp#60:|Strength#85:|StrengthDrink#20:|StrengthFood#3:|Health#-1:|Feeling#10:|
|
||||
food:|type#Functional:|name#黄牛:|price#14.0:|desc#放心,喝他的饮料不是他出钱你出命:|Exp#80:|Strength#85:|StrengthDrink#20:|StrengthFood#3:|Health#-1:|Feeling#10:|
|
||||
food:|type#Functional:|name#能量饮料:|price#14.0:|desc#:|Exp#140:|Strength#80:|StrengthDrink#20:|StrengthFood#3:|Health#-5:|Feeling#8:|
|
||||
food:|type#Functional:|name#土力架:|price#17.5:|desc#横扫自己,做回饥饿:|Exp#5:|Strength#80:|StrengthDrink#-10:|StrengthFood#80:|Health#0:|
|
||||
food:|type#Functional:|name#压缩饼干:|price#18.5:|desc#饼干.rar:|Exp#5:|Strength#60:|StrengthDrink#-20:|StrengthFood#100:|
|
||||
food:|type#Snack:|name#爆米花:|price#8.5:|desc#电影必备,吃不完也要买:|Exp#10:|Strength#40:|StrengthDrink#-5:|StrengthFood#30:|Health#-1:|Feeling#10:|
|
||||
food:|type#Snack:|name#冰激凌:|price#9.5:|desc#中国人免费领:|Exp#5:|Strength#40:|StrengthDrink#5:|StrengthFood#24:|Health#-0.5:|Feeling#20:|
|
||||
food:|type#Snack:|name#瓜子:|price#8.0:|desc#嘎吱嘎吱嘎吱嘎吱嘎吱嘎吱嘎吱嘎吱嘎吱嘎吱嘎吱嘎吱嘎吱嘎吱嘎吱嘎吱嘎吱嘎吱嘎吱嘎吱嘎吱嘎吱嘎吱嘎吱嘎吱嘎吱嘎吱:|Exp#5:|Strength#30:|StrengthDrink#-2:|StrengthFood#26:|Feeling#15:|
|
||||
food:|type#Snack:|name#核桃仁:|price#8.5:|desc#这次不用自己带锤子了:|Exp#40:|Strength#20:|StrengthDrink#-2:|StrengthFood#5:|Health#5:|
|
||||
food:|type#Snack:|name#火腿肠:|price#9.0:|desc#:|Exp#5:|Strength#40:|StrengthDrink#0:|StrengthFood#38:|Health#-0.5:|
|
||||
food:|type#Snack:|name#花生米:|price#4.5:|desc#但凡有一粒花生米。。。:|Exp#5:|Strength#20:|StrengthDrink#-2:|StrengthFood#20:|Health#-0.5:|
|
||||
food:|type#Snack:|name#戒指糖:|price#2.5:|desc#这不比那个不能吃的破石头有用多了:|Exp#5:|Strength#20:|StrengthDrink#-2:|StrengthFood#10:|Health#-0.5:|
|
||||
food:|type#Snack:|name#老冰棍:|price#4.0:|desc#厂家正在考虑与辐射4联动中:|Exp#10:|Strength#15:|StrengthDrink#15:|StrengthFood#5:|Health#-0.5:|Feeling#2:|
|
||||
food:|type#Snack:|name#绿色心情:|price#3.5:|desc#几年前还是一块钱的呜呜呜:|Exp#5:|Strength#5:|StrengthDrink#15:|StrengthFood#5:|Health#-0.5:|Feeling#5:|
|
||||
food:|type#Snack:|name#奶片:|price#3.0:|desc#希望你们永远不会知道这个药。。。:|Exp#10:|Strength#8:|StrengthDrink#-2:|StrengthFood#8:|Feeling#7:|
|
||||
food:|type#Snack:|name#奶糖:|price#5.0:|desc#小白兔牌:|Exp#15:|Strength#8:|StrengthDrink#-2:|StrengthFood#15:|Feeling#15:|
|
||||
food:|type#Snack:|name#牛板筋:|price#3.0:|desc#只要来一根,大家都是好兄弟:|Exp#10:|Strength#10:|StrengthDrink#-1:|StrengthFood#8:|Health#-1:|Feeling#10:|
|
||||
food:|type#Snack:|name#牛扎糖:|price#4.0:|desc#好甜,像你一样:|Exp#10:|Strength#10:|StrengthDrink#-2:|StrengthFood#8:|Feeling#15:|
|
||||
food:|type#Snack:|name#泡泡糖:|price#3.5:|desc#就吹吧你:|Exp#15:|Strength#5:|StrengthDrink#-1:|StrengthFood#5:|Feeling#17:|
|
||||
food:|type#Snack:|name#巧克力:|price#10.0:|desc#纵享丝滑:|Exp#10:|Strength#30:|StrengthDrink#-5:|StrengthFood#38:|Feeling#15:|
|
||||
food:|type#Snack:|name#软糖:|price#3.0:|desc#come on baby~:|Exp#10:|Strength#5:|StrengthDrink#-2:|StrengthFood#12:|Feeling#5:|
|
||||
food:|type#Snack:|name#薯片:|price#7.0:|desc#开趴必备:|Exp#10:|Strength#10:|StrengthDrink#5:|StrengthFood#28:|Feeling#5:|
|
||||
food:|type#Snack:|name#娃仔小馒头:|price#4.5:|desc#这是我们的宝贝~~:|Exp#10:|Strength#15:|StrengthDrink#0:|StrengthFood#12:|Feeling#10:|
|
||||
food:|type#Snack:|name#小布丁:|price#4.0:|desc#没关系,小小的也很好吃:|Exp#10:|Strength#10:|StrengthDrink#5:|StrengthFood#10:|Feeling#5:|
|
||||
food:|type#Snack:|name#雪饼:|price#5.5:|desc#小时候的一口吃不下:|Exp#10:|Strength#10:|StrengthDrink#5:|StrengthFood#15:|Feeling#10:|
|
||||
food:|type#Snack:|name#散射雪糕:|price#6.5:|desc#三倍的快乐:|Exp#5:|Strength#10:|StrengthDrink#10:|StrengthFood#20:|Feeling#10:|
|
||||
food:|type#Snack:|name#猪肉脯:|price#13.0:|desc#你感觉在吃牛皮。。:|Exp#15:|Strength#40:|StrengthFood#48:|Feeling#15:|
|
||||
food:|type#Meal:|name#臭豆腐:|price#19.5:|desc#闻起来臭,吃起来也臭,就是越吃越香。:|Exp#50:|Strength#100:|StrengthFood#55:|Feeling#5:|
|
||||
food:|type#Meal:|name#东坡肘子:|price#34.5:|desc#小知识:东坡肘子其实并非苏东坡之功,而是其妻子王弗的妙作:|Exp#150:|Strength#100:|StrengthFood#85:|Health#1:|Feeling#30:|
|
||||
food:|type#Meal:|name#番茄意面:|price#34.0:|desc#只要不是巧克力酱什么都好说。。:|Exp#100:|Strength#100:|StrengthFood#110:|Health#1:|Feeling#20:|
|
||||
food:|type#Meal:|name#红烧狮子头:|price#36.5:|desc#芋头西米露:|Exp#150:|Strength#120:|StrengthFood#90:|Health#1:|Feeling#30:|
|
||||
food:|type#Meal:|name#红烧牛肉:|price#44.5:|desc#不是4块钱的,请放心:|Exp#150:|Strength#140:|StrengthFood#130:|Health#1:|Feeling#30:|
|
||||
food:|type#Meal:|name#华夫饼:|price#28.0:|desc#蜜饼!小刻最爱!:|Exp#70:|Strength#100:|StrengthFood#80:|Feeling#30:|
|
||||
food:|type#Meal:|name#鸡翅:|price#23.0:|desc#红烧翅膀~我喜欢吃~:|Exp#30:|Strength#100:|StrengthFood#75:|Feeling#20:|
|
||||
food:|type#Meal:|name#煎西冷牛排:|price#57.5:|desc#开瓶可乐吧,上流:|Exp#225:|Strength#140:|StrengthFood#150:|Health#5:|Feeling#40:|
|
||||
food:|type#Meal:|name#辣子鸡:|price#41.0:|desc#当红辣子鸡哟:|Exp#150:|Strength#100:|StrengthFood#120:|Feeling#40:|
|
||||
food:|type#Meal:|name#罗宋汤:|price#35.0:|desc#咲夜!“给我吃!”:|Exp#100:|Strength#100:|StrengthFood#110:|Feeling#30:|
|
||||
food:|type#Meal:|name#麻婆豆腐:|price#33.0:|desc#麻婆豆腐之所以叫麻婆豆腐是因为麻婆喜欢吃:|Exp#75:|Strength#100:|StrengthFood#110:|Feeling#30:|
|
||||
food:|type#Meal:|name#梅菜扣肉:|price#34.0:|desc#不会咬人的谢谢:|Exp#125:|Strength#100:|StrengthFood#100:|Feeling#25:|
|
||||
food:|type#Meal:|name#面包:|price#21.0:|desc#你还记得你吃过多少块面包吗:|Exp#0:|Strength#50:|StrengthFood#100:|Feeling#10:|
|
||||
food:|type#Meal:|name#南瓜吐司:|price#27.0:|desc#加了南瓜!是的!我加了南瓜!:|Exp#50:|Strength#80:|StrengthFood#100:|Feeling#15:|
|
||||
food:|type#Meal:|name#酿豆腐:|price#26.5:|desc#你中有我,我中有你:|Exp#75:|Strength#100:|StrengthFood#80:|Feeling#15:|
|
||||
food:|type#Meal:|name#披萨:|price#35.5:|desc#不要放菠萝!!!:|Exp#150:|Strength#100:|StrengthFood#100:|Feeling#20:|
|
||||
food:|type#Meal:|name#三明治:|price#24.5:|desc#两面包夹芝士:|Exp#50:|Strength#80:|StrengthFood#85:|Feeling#15:|
|
||||
food:|type#Meal:|name#沙拉:|price#40.0:|desc#沙拉沙拉啦啦啦:|Exp#150:|Strength#80:|StrengthFood#80:|Health#10:|Feeling#5:|
|
||||
food:|type#Meal:|name#烧鹅:|price#38.0:|desc#官方特意调整成鹅的,这让我文案不好做啊,我就要在这里写上烧鸡两个大字!:|Exp#150:|Strength#120:|StrengthFood#100:|Feeling#30:|
|
||||
food:|type#Meal:|name#酸菜鱼:|price#40.0:|desc#人人皆是酸菜鱼:|Exp#150:|Strength#120:|StrengthFood#110:|Feeling#35:|
|
||||
food:|type#Meal:|name#西冷牛排:|price#56.0:|desc#开瓶拉菲吧,上流:|Exp#250:|Strength#120:|StrengthFood#140:|Health#5:|Feeling#40:|
|
||||
food:|type#Meal:|name#香煎牛仔骨:|price#71.0:|desc#开瓶红酒吧,上流:|Exp#300:|Strength#120:|StrengthFood#160:|Health#10:|Feeling#50:|
|
||||
food:|type#Meal:|name#盐焗鸡:|price#35.0:|desc#谁说的腌鸡!站出来!:|Exp#150:|Strength#100:|StrengthFood#90:|Feeling#30:|
|
||||
food:|type#Meal:|name#芝士焗虾:|price#28.5:|desc#焗虾闭嘴:|Exp#125:|Strength#80:|StrengthFood#70:|Feeling#30:|
|
||||
food:|type#Meal:|name#纸包鸡:|price#28.0:|desc#纸包鸡包纸包鸡包鸡包纸:|Exp#100:|Strength#85:|StrengthFood#75:|Feeling#30:|
|
||||
food:|type#Meal:|name#炸鸡腿:|price#14.5:|desc#:|Exp#50:|Strength#40:|StrengthFood#40:|Feeling#20:|
|
||||
food:|type#Meal:|name#汉堡:|price#19.5:|desc#还想要汉O王?这价格不是华O士已经对你很好了。:|Exp#50:|Strength#60:|StrengthFood#60:|Feeling#20:|
|
||||
|
Before Width: | Height: | Size: 7.0 KiB After Width: | Height: | Size: 7.0 KiB |
After Width: | Height: | Size: 195 KiB |
After Width: | Height: | Size: 207 KiB |
After Width: | Height: | Size: 210 KiB |
After Width: | Height: | Size: 209 KiB |
After Width: | Height: | Size: 212 KiB |
After Width: | Height: | Size: 208 KiB |
After Width: | Height: | Size: 206 KiB |
After Width: | Height: | Size: 202 KiB |
After Width: | Height: | Size: 196 KiB |
After Width: | Height: | Size: 204 KiB |
After Width: | Height: | Size: 206 KiB |
After Width: | Height: | Size: 209 KiB |
After Width: | Height: | Size: 212 KiB |
After Width: | Height: | Size: 208 KiB |
After Width: | Height: | Size: 206 KiB |
After Width: | Height: | Size: 202 KiB |
After Width: | Height: | Size: 196 KiB |
After Width: | Height: | Size: 204 KiB |
After Width: | Height: | Size: 206 KiB |
After Width: | Height: | Size: 209 KiB |
After Width: | Height: | Size: 212 KiB |
Before Width: | Height: | Size: 205 KiB After Width: | Height: | Size: 205 KiB |
Before Width: | Height: | Size: 210 KiB After Width: | Height: | Size: 210 KiB |
Before Width: | Height: | Size: 198 KiB After Width: | Height: | Size: 198 KiB |
Before Width: | Height: | Size: 224 KiB After Width: | Height: | Size: 224 KiB |
Before Width: | Height: | Size: 220 KiB After Width: | Height: | Size: 220 KiB |
After Width: | Height: | Size: 212 KiB |
After Width: | Height: | Size: 209 KiB |
After Width: | Height: | Size: 210 KiB |
After Width: | Height: | Size: 207 KiB |
After Width: | Height: | Size: 195 KiB |
Before Width: | Height: | Size: 221 KiB |
Before Width: | Height: | Size: 226 KiB |
Before Width: | Height: | Size: 199 KiB |
Before Width: | Height: | Size: 207 KiB |
Before Width: | Height: | Size: 206 KiB |
Before Width: | Height: | Size: 207 KiB |
Before Width: | Height: | Size: 206 KiB |
Before Width: | Height: | Size: 207 KiB |
Before Width: | Height: | Size: 206 KiB |
Before Width: | Height: | Size: 207 KiB |
Before Width: | Height: | Size: 199 KiB |
Before Width: | Height: | Size: 226 KiB |
Before Width: | Height: | Size: 221 KiB |
Before Width: | Height: | Size: 220 KiB After Width: | Height: | Size: 220 KiB |
Before Width: | Height: | Size: 224 KiB After Width: | Height: | Size: 224 KiB |
Before Width: | Height: | Size: 198 KiB After Width: | Height: | Size: 198 KiB |
Before Width: | Height: | Size: 210 KiB After Width: | Height: | Size: 210 KiB |
Before Width: | Height: | Size: 205 KiB After Width: | Height: | Size: 205 KiB |
Before Width: | Height: | Size: 210 KiB After Width: | Height: | Size: 210 KiB |
Before Width: | Height: | Size: 205 KiB After Width: | Height: | Size: 205 KiB |
Before Width: | Height: | Size: 210 KiB After Width: | Height: | Size: 210 KiB |
After Width: | Height: | Size: 205 KiB |
After Width: | Height: | Size: 210 KiB |
After Width: | Height: | Size: 198 KiB |
After Width: | Height: | Size: 224 KiB |
After Width: | Height: | Size: 220 KiB |