feat(config): 更新游戏配置信息
- 删除俄语标题字段- 修改游戏标题为“编程农场” - 更新游戏描述和版本信息 - 更改启动路径和执行文件名 - 调整标题样式类名实现悬停模糊效果- 替换视频壁纸资源路径
This commit is contained in:
Binary file not shown.
@@ -10,7 +10,7 @@
|
||||
|
||||
</script>
|
||||
|
||||
<header class="h-8 z-50 w-full backdrop-blur-2xl absolute shadow-xl top-0 window-controls flex gap-10 px-3 items-center" data-tauri-drag-region>
|
||||
<header class="h-8 z-50 w-full hover:backdrop-blur-2xl transition-all duration-300 ease-in-out absolute top-0 window-controls flex gap-10 px-3 items-center" data-tauri-drag-region>
|
||||
|
||||
<div class="flex-1" data-tauri-drag-region></div>
|
||||
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
<script lang="ts">
|
||||
import video from '$lib/assets/video/c9df6498_517c_4fee_a39d_72b43f3425fd.mp4';
|
||||
import video from '$lib/assets/video/bg.mp4';
|
||||
</script>
|
||||
|
||||
<div class="app-wallpaper absolute top-0 -z-10" >
|
||||
|
||||
@@ -1,10 +1,9 @@
|
||||
export const GAME_CONFIG = {
|
||||
title: '逃离鸭科夫',
|
||||
title_rus: 'Побег из Дакова',
|
||||
title_en: 'Escape From Duckov',
|
||||
version: '1.1.6',
|
||||
description: "「逃离鸭科夫」是一款鸭子题材PVE俯视角撤离射击游戏。你要在鸭科夫的世界里搜寻物资,建造藏身处,升级装备,从一无所有到做大做强;面对虎视眈眈的敌鸭,想方设法生存下去——或者逃离。",
|
||||
pathname: '\\Duckov',
|
||||
launch: 'Duckov.exe',
|
||||
shortcut_name: "逃离鸭科夫",
|
||||
title: '编程农场',
|
||||
title_en: 'The Farmer Was Replaced',
|
||||
version: '1.0',
|
||||
description: "编程并不断优化你的无人机,实现农场自动化。安坐一旁,看它为你打理一切;收集资源,解锁更尖端的科技,成为全世界效率第一的农场主。畅享游戏快乐,同时不断提高解决问题和编写代码的能力。",
|
||||
pathname: '\\The Farmer Was Replaced',
|
||||
launch: 'TheFarmerWasReplaced.exe',
|
||||
shortcut_name: "编程农场",
|
||||
};
|
||||
@@ -17,7 +17,6 @@
|
||||
<span class="justify-items-center">
|
||||
<span>{GAME_CONFIG.title}</span>
|
||||
<span>{GAME_CONFIG.title_en}</span>
|
||||
<span>{GAME_CONFIG.title_rus}</span>
|
||||
</span>
|
||||
</span>
|
||||
</p>
|
||||
|
||||
Reference in New Issue
Block a user