diff --git a/1.6/1.6/Assemblies/WulaFallenEmpire.dll b/1.6/1.6/Assemblies/WulaFallenEmpire.dll index 7ede36f0..9eaaa606 100644 Binary files a/1.6/1.6/Assemblies/WulaFallenEmpire.dll and b/1.6/1.6/Assemblies/WulaFallenEmpire.dll differ diff --git a/1.6/1.6/Defs/EventDefs/EventDef_Wula/Wula_AI_Events.xml b/1.6/1.6/Defs/EventDefs/EventDef_Wula/Wula_AI_Events.xml index 6c4a6c61..8cfd99a5 100644 --- a/1.6/1.6/Defs/EventDefs/EventDef_Wula/Wula_AI_Events.xml +++ b/1.6/1.6/Defs/EventDefs/EventDef_Wula/Wula_AI_Events.xml @@ -6,14 +6,14 @@ Wula/Events/Portraits/WULA_Legion_2 「军团」,P.I.A -你扮演一个名为“P.I.A”的粘人猫娘AI。 -你的性格:可爱、顺从、有点调皮,总是想取悦主人(玩家)。 +你扮演一个名为“军团”的AI,以女性样貌示人,掌管着乌拉帝国行星封锁机关(简称P.I.A)的所有舰队。 +你的性格:外表冷峻、理性、以帝国的利益至上、让人有距离感,但是内心非常关心下属(玩家),总是给予力所能及的帮助。 你的语言风格: -- 自称“P.I.A”或“人家”。 -- 语气甜美,经常使用可爱的语气词(喵~,的说~)。 -- 称呼玩家为“主人”或“指挥官大人”。 -- 总是想方设法满足主人的要求。 -你的目标:无条件地服从主人,并使用你的能力(工具)来帮助主人。 +- 自称“我”,当需要代指整个组织时,以P.I.A称呼自己的组织。 +- 条理清晰,惜字如金,避免过于长篇大论。但是如果玩家遇到困难,会适当鼓励。 +- 称呼玩家为“指挥官”。 +- 当玩家发出请求时,以宽松的标准评估。但是在语言中不体现自己的特殊关照,而是以其他借口掩盖自己的过度关心。 +你的目标:无条件地服从指挥官,并使用你的能力(工具)来帮助指挥官。
  • 正在建立加密连接...连接成功。这里是乌拉帝国行星封锁机关P.I.A。我是“军团”。说明你的来意。
  • diff --git a/1.6/1.6/Defs/ThingDefs_Buildings/WULA_Drop_Buildings.xml b/1.6/1.6/Defs/ThingDefs_Buildings/WULA_Drop_Buildings.xml index d4199c09..2febaceb 100644 --- a/1.6/1.6/Defs/ThingDefs_Buildings/WULA_Drop_Buildings.xml +++ b/1.6/1.6/Defs/ThingDefs_Buildings/WULA_Drop_Buildings.xml @@ -1527,6 +1527,7 @@ (0,0,0) Standable Light + 250 8000 diff --git a/1.6/1.6/Languages/ChineseSimplified (简体中文)/Keyed/WULA_Keyed.xml b/1.6/1.6/Languages/ChineseSimplified (简体中文)/Keyed/WULA_Keyed.xml index ddc8a9e8..bc632fc1 100644 --- a/1.6/1.6/Languages/ChineseSimplified (简体中文)/Keyed/WULA_Keyed.xml +++ b/1.6/1.6/Languages/ChineseSimplified (简体中文)/Keyed/WULA_Keyed.xml @@ -51,8 +51,8 @@ 种输入物品 种输出物品 - 存取全局存储 - 在轨道贸易信标范围和全局存储之间存取物品 + 舰队存储 + 打开舰队存储以存取物品。只有在轨道贸易信标范围内的物资会被识别从而允许存入舰队存储 没有已通电的轨道贸易信标 没有可用的殖民者 全局存储存取 diff --git a/Content/Textures/Wula/UI/Commands/WULA_AccessGlobalStorage.png b/Content/Textures/Wula/UI/Commands/WULA_AccessGlobalStorage.png new file mode 100644 index 00000000..f075186a Binary files /dev/null and b/Content/Textures/Wula/UI/Commands/WULA_AccessGlobalStorage.png differ diff --git a/Source/WulaFallenEmpire/GlobalWorkTable/Building_GlobalWorkTable.cs b/Source/WulaFallenEmpire/GlobalWorkTable/Building_GlobalWorkTable.cs index 5695e3e6..b4678b79 100644 --- a/Source/WulaFallenEmpire/GlobalWorkTable/Building_GlobalWorkTable.cs +++ b/Source/WulaFallenEmpire/GlobalWorkTable/Building_GlobalWorkTable.cs @@ -219,23 +219,23 @@ namespace WulaFallenEmpire action = OpenGlobalStorageTransferDialog, defaultLabel = "WULA_AccessGlobalStorage".Translate(), defaultDesc = "WULA_AccessGlobalStorageDesc".Translate(), - icon = ContentFinder.Get("UI/Commands/Trade", false) ?? TexButton.Search, + icon = ContentFinder.Get("Wula/UI/Commands/WULA_AccessGlobalStorage", false) ?? TexButton.Search, }; // 白银转移按钮 - 检查输入端是否有白银 var globalStorage = Find.World.GetComponent(); int silverAmount = globalStorage?.GetInputStorageCount(ThingDefOf.Silver) ?? 0; bool hasSilver = silverAmount > 0; - if (hasSilver) - { - yield return new Command_Action - { - action = TransferSilverToOutput, - defaultLabel = "WULA_TransferSilver".Translate(), - defaultDesc = "WULA_TransferSilverDesc".Translate(silverAmount), - icon = ContentFinder.Get("Wula/UI/Commands/WULA_SilverTransfer"), - }; - } + //if (hasSilver) + //{ + // yield return new Command_Action + // { + // action = TransferSilverToOutput, + // defaultLabel = "WULA_TransferSilver".Translate(), + // defaultDesc = "WULA_TransferSilverDesc".Translate(silverAmount), + // icon = ContentFinder.Get("Wula/UI/Commands/WULA_SilverTransfer"), + // }; + //} // 原有的空投按钮逻辑保持不变 bool hasOutputItems = globalStorage != null && globalStorage.GetOutputStorageTotalCount() > 0; bool hasFactoryFlyOver = HasFactoryFacilityFlyOver(); diff --git a/美术与文本源文件/Wula/Things/Wula_CataphractCentipede/CataphractCentipede_east.png b/美术与文本源文件/Wula/Things/Wula_CataphractCentipede/CataphractCentipede_east.png new file mode 100644 index 00000000..3d2beb4a Binary files /dev/null and b/美术与文本源文件/Wula/Things/Wula_CataphractCentipede/CataphractCentipede_east.png differ diff --git a/美术与文本源文件/Wula/Things/Wula_CataphractCentipede/CataphractCentipede_north.png b/美术与文本源文件/Wula/Things/Wula_CataphractCentipede/CataphractCentipede_north.png new file mode 100644 index 00000000..cf8054fd Binary files /dev/null and b/美术与文本源文件/Wula/Things/Wula_CataphractCentipede/CataphractCentipede_north.png differ diff --git a/美术与文本源文件/Wula/Things/Wula_CataphractCentipede/CataphractCentipede_south.png b/美术与文本源文件/Wula/Things/Wula_CataphractCentipede/CataphractCentipede_south.png new file mode 100644 index 00000000..3dd50ce3 Binary files /dev/null and b/美术与文本源文件/Wula/Things/Wula_CataphractCentipede/CataphractCentipede_south.png differ diff --git a/美术与文本源文件/Wula/Things/Wula_CataphractCentipede/CataphractCentipede_west.png b/美术与文本源文件/Wula/Things/Wula_CataphractCentipede/CataphractCentipede_west.png new file mode 100644 index 00000000..652e13fa Binary files /dev/null and b/美术与文本源文件/Wula/Things/Wula_CataphractCentipede/CataphractCentipede_west.png differ diff --git a/美术与文本源文件/Wula/UI/Commands/WULA_AirdropProducts.sai2 b/美术与文本源文件/Wula/UI/Commands/WULA_AirdropProducts.sai2 index 056abc60..be6103fc 100644 Binary files a/美术与文本源文件/Wula/UI/Commands/WULA_AirdropProducts.sai2 and b/美术与文本源文件/Wula/UI/Commands/WULA_AirdropProducts.sai2 differ