From 2f5fc6ef80179a6cd9964ca94b91dcb66db29504 Mon Sep 17 00:00:00 2001 From: Wuzzy Date: Thu, 29 Aug 2019 06:53:22 +0200 Subject: [PATCH] Simplify NPC messages even more --- mods/mobs/locale/mobs.de.tr | 12 +++++++----- mods/mobs/locale/template.txt | 14 +++++++++----- mods/mobs/mob_npc.lua | 12 +++++++----- 3 files changed, 23 insertions(+), 15 deletions(-) diff --git a/mods/mobs/locale/mobs.de.tr b/mods/mobs/locale/mobs.de.tr index f7b8ab8..8bd411d 100644 --- a/mods/mobs/locale/mobs.de.tr +++ b/mods/mobs/locale/mobs.de.tr @@ -45,16 +45,18 @@ Munch-munch!=Mampf! Yummies!=Lecker! Yum-yum!=Mjam-mjam! Chomp!=Schmatz! -Thanks, I liked that!=Danke, das war gut! +Thanks!=Danke! I could use a snack.=Ich könnte einen Imbiss gebrauchen. I'm a bit hungry.=Ich bin etwas hungrig. Hello!=Hallo! -What's up?=Guten Tag! Nice to see you.=Schön, dich zu sehen. I don't feel so good.=Mir geht es nicht so gut. I ... I am hurt.=Ich ... ich bin verletzt. -Leave me alone.=Lass mich in Frieden. -What do you want from me?=Was willst du von mir? -Go away!=Geh weg! Screw you!=Verdammt seist du! Villager says: “@1”=Dorfbewohner sagt: „@1“ +Life is beautiful.=Das Leben ist schön. +I feel good.=Mir geht's gut. +Have a nice day!=Guten Tag! +I feel weak.=Ich fühle mich schwach. +My head hurts.=Mein Kopf tut weh. +I have a bad day today.=Ich hab heute einen schlechten Tag. diff --git a/mods/mobs/locale/template.txt b/mods/mobs/locale/template.txt index eaf4117..426b24c 100644 --- a/mods/mobs/locale/template.txt +++ b/mods/mobs/locale/template.txt @@ -42,19 +42,23 @@ Munch-munch!= Yummies!= Yum-yum!= Chomp!= -Thanks, I liked that!= +Thanks!= I could use a snack.= I'm a bit hungry.= Hello!= -What's up?= Nice to see you.= I don't feel so good.= I ... I am hurt.= -Leave me alone.= -What do you want from me?= -Go away!= Screw you!= Villager says: “@1”= Sheep= Skunk= Walker= +Life is beautiful.= +I feel good.= +Have a nice day!= +I don't feel so good.= +I ... I am hurt.= +I feel weak.= +My head hurts.= +I have a bad day today.= diff --git a/mods/mobs/mob_npc.lua b/mods/mobs/mob_npc.lua index 9994421..dabce10 100644 --- a/mods/mobs/mob_npc.lua +++ b/mods/mobs/mob_npc.lua @@ -36,7 +36,7 @@ local msgs = { S("Yummies!"), S("Yum-yum!"), S("Chomp!"), - S("Thanks, I liked that!"), + S("Thanks!"), }, hungry = { S("I could use a snack."), @@ -44,15 +44,17 @@ local msgs = { }, happy = { S("Hello!"), - S("What's up?"), S("Nice to see you."), + S("Life is beautiful."), + S("I feel good."), + S("Have a nice day!"), }, hurt = { S("I don't feel so good."), S("I ... I am hurt."), - S("Leave me alone."), - S("What do you want from me?"), - S("Go away!"), + S("I feel weak."), + S("My head hurts."), + S("I have a bad day today."), }, hostile = { S("Screw you!"),