diff --git a/oresources/contenttweaker/lang/zh_cn.lang b/oresources/contenttweaker/lang/zh_cn.lang index d29aac89..a069337d 100644 --- a/oresources/contenttweaker/lang/zh_cn.lang +++ b/oresources/contenttweaker/lang/zh_cn.lang @@ -85,7 +85,7 @@ tile.contenttweaker.precasian_cap.name=传说柱顶石 item.contenttweaker.gold_leaf.name=金叶 item.contenttweaker.palladium_egg.name=钯蛋 tile.contenttweaker.sednanite_ore.name=塞德娜金属矿石 -tile.contenttweaker.defined_machine_case.name=明确定义机壳 +tile.contenttweaker.defined_machine_case.name=明确定义机械外壳 item.contenttweaker.bento_xxl.name=便当 XXL item.contenttweaker.dried_vishroom.name=干燥纤毛菇 tile.contenttweaker.haven_block.name=天堂方块 @@ -551,7 +551,7 @@ tile.contenttweaker.dyson_collector.name=戴森收集器 tile.contenttweaker.nightmare_block.name=噩梦方块 tile.contenttweaker.fractallite_stone_of_love.name=分形爱之石 tile.contenttweaker.infinity_dyson_conduit.name=相对论戴森导管 -tile.contenttweaker.nightmare_machine_case.name=噩梦机壳 +tile.contenttweaker.nightmare_machine_case.name=噩梦机械外壳 tile.contenttweaker.baphomet_altar_bricks.name=巴弗灭祭坛砖 tile.contenttweaker.dyson_compressor.name=戴森压缩机 tile.contenttweaker.horizon_stabilizer.name=地平线稳定器 @@ -1210,9 +1210,9 @@ tile.contenttweaker.holographic_ore.name=全息矿石 tile.contenttweaker.defined_block.name=定义块 tile.contenttweaker.sednanite_stabilizer.name=塞德娜金属稳定器 tile.contenttweaker.definer_casing.name=定义器外壳 -tile.contenttweaker.brightsteel_case.name=星钢机壳 +tile.contenttweaker.brightsteel_case.name=星钢机械外壳 tile.contenttweaker.plasma_injector.name=等离子注入机 -tile.contenttweaker.well_defined_machine_case.name=完美定义机壳 +tile.contenttweaker.well_defined_machine_case.name=完美定义机械外壳 tile.contenttweaker.matrix_ore.name=矩阵矿石 tile.contenttweaker.plasma_collider.name=等离子对撞机 tile.contenttweaker.ultimate_ore.name=终极矿石 @@ -2840,7 +2840,7 @@ tile.contenttweaker.returning_point.name=归乡点 tile.contenttweaker.gluttonous_sentient_meatball.name=暴食觉识肉丸 tile.contenttweaker.pulsar_screen.name=脉冲星屏幕 tile.contenttweaker.infinity_stone.name=无尽灌注之石 -tile.contenttweaker.hungering_machine_case.name=饥渴机壳 +tile.contenttweaker.hungering_machine_case.name=饥渴机械外壳 tile.contenttweaker.all_seeing_sentient_meatball.name=全视觉识肉丸 tile.contenttweaker.possessed_sky_stone.name=缠魂陨石 tile.contenttweaker.burly_sentient_meatball.name=强健觉识肉丸 diff --git a/scripts/Callstones.zs b/scripts/Callstones.zs index fe547c75..c265a901 100644 --- a/scripts/Callstones.zs +++ b/scripts/Callstones.zs @@ -4873,7 +4873,7 @@ meatballmancallstone.itemRightClick = function(stack, world, player, hand) { } player.sendChat("站在以下方块上方:"); - player.sendChat("噩兆机壳(上)"); + player.sendChat("噩兆机械外壳(上)"); player.sendChat("超越天显化法器(中)"); player.sendChat("神话开掘反应器(下)"); @@ -4887,7 +4887,7 @@ meatballmancallstone.itemRightClick = function(stack, world, player, hand) { var blockPos1 = pos1.asBlockPos(); var blockState1 = world.getBlock(blockPos1).definition.id as string; if(blockState1 != "contenttweaker:hungering_machine_case") { - player.sendChat("缺少噩兆机壳"); + player.sendChat("缺少噩兆机械外壳"); return "FAIL"; } diff --git a/scripts/ParallelEarths.zs b/scripts/ParallelEarths.zs index 79117963..c8490448 100644 --- a/scripts/ParallelEarths.zs +++ b/scripts/ParallelEarths.zs @@ -721,7 +721,7 @@ warrencreationfabrial.itemRightClick = function(stack, world, player, hand) { var blockPos1 = pos1.asBlockPos(); var blockState1 = world.getBlock(blockPos1).definition.id as string; if(blockState1 != "contenttweaker:hungering_machine_case") { - player.sendChat("缺少饥渴机壳"); + player.sendChat("缺少饥渴机械外壳"); return "FAIL"; }