Change NPC flavor texts to be more functional
This commit is contained in:
parent
7b3b2d33cf
commit
4ffa1c1679
@ -28,16 +28,16 @@ Butcher=Fleischer
|
||||
Sheep=Schaf
|
||||
Skunk=Stinktier
|
||||
Walker=Läufer
|
||||
Hi! I'm a farmer. I take care of crops.=Hallo! Ich bin ein Bauer. Ich kümmere mich um die Felder.
|
||||
In my village, I keep a tavern and the townsfolk entertained.=In meinem Dorf bewirtschafte ich eine Taverne und unterhalte meine Leute.
|
||||
Hi! I'm a blacksmith. Smelting ores is my job.=Hi! Ich bin ein Schmied. Ich schmelze Erze.
|
||||
Hi! I'm a butcher. I sell meat.=Hallo! Ich bin ein Fleischer. Ich verkaufe Fleisch.
|
||||
Hi! I'm a farmer. I sell farming goods.=Hallo! Ich bin ein Bauer. Ich verkaufe Dinge, die ein Bauer so hat.
|
||||
Hi! I'm a tavernkeeper. I trade with assorted goods.=Hallo! Ich bin ein Wirt. Ich handle mit verschiedenen Gütern.
|
||||
Hi! I'm a blacksmith. I sell metal products.=Hallo! Ich bin ein Schmied. Ich verkaufe Metallwaren.
|
||||
Hi! I'm a butcher. Want to buy something?=Hallo! Ich bin ein Fleischer. Möchtest du etwas kaufen?
|
||||
If you want to trade, show me a trading book.=Wenn du mit mir handeln willst, zeig mir ein Handelsbuch.
|
||||
I don't want to eat anymore!=Ich will nichts mehr essen!
|
||||
I'm not hungry!=Ich bin nicht hungrig!
|
||||
I'm full already.=Ich bin schon satt.
|
||||
I don't want food right now.=Ich will jetzt nichts zu essen.
|
||||
Ah, that hit the spot!=Ah, das war gut!
|
||||
Ah, now I'm fully energized!=Ah, jetzt bin ich voller Energie!
|
||||
Thanks, now I'm filled up.=Danke, jetzt bin ich pappsatt!
|
||||
Burp!=Rülps!
|
||||
Thank you, now I feel much better!=Danke, jetzt geht es mir viel besser!
|
||||
@ -45,7 +45,7 @@ Munch-munch!=Mampf!
|
||||
Yummies!=Lecker!
|
||||
Yum-yum!=Mjam-mjam!
|
||||
Chomp!=Schmatz!
|
||||
Thanks, I liked that!=Danke, das hat geschmeckt!
|
||||
Thanks, I liked that!=Danke, das war gut!
|
||||
I could use a snack.=Ich könnte einen Imbiss gebrauchen.
|
||||
I'm a bit hungry.=Ich bin etwas hungrig.
|
||||
Hello!=Hallo!
|
||||
|
@ -1,20 +1,42 @@
|
||||
# textdomain: mobs
|
||||
Hunter=
|
||||
Kill 5 animals for food=
|
||||
Bomb has Been Defused!=
|
||||
Kill a mineturtle=
|
||||
Ranger=
|
||||
Capture a tame animal=
|
||||
Best Friends Forever=
|
||||
Tame an animal=
|
||||
Spawned @1 at @2=
|
||||
Not tamed!=
|
||||
@1 is owner!=
|
||||
Missed!=
|
||||
Wool Bundle=
|
||||
Raw Meat=
|
||||
Cooked Meat=
|
||||
Net=
|
||||
(Right-click to capture)=
|
||||
Lasso=
|
||||
(Right-click to capture)=
|
||||
Boar=
|
||||
Raw Porkchop=
|
||||
Cooked Porkchop=
|
||||
Mine Turtle=
|
||||
Farmer=
|
||||
Tavern Keeper=
|
||||
Blacksmith=
|
||||
Butcher=
|
||||
Hi! I'm a farmer. I take care of crops.=
|
||||
In my village, I keep a tavern and the townsfolk entertained.=
|
||||
Hi! I'm a blacksmith. Smelting ores is my job.=
|
||||
Hi! I'm a butcher. I sell meat.=
|
||||
Hi! I'm a farmer. I sell farming goods.=
|
||||
Hi! I'm a tavernkeeper. I trade with assorted goods.=
|
||||
Hi! I'm a blacksmith. I sell metal products.=
|
||||
Hi! I'm a butcher. Want to buy something?=
|
||||
If you want to trade, show me a trading book.=
|
||||
I don't want to eat anymore!=
|
||||
I'm not hungry!=
|
||||
I'm full already.=
|
||||
I don't want food right now.=
|
||||
Ah, that hit the spot!=
|
||||
Ah, now I'm fully energized!=
|
||||
Thanks, now I'm filled up.=
|
||||
Burp!=
|
||||
Thank you, now I feel much better!=
|
||||
Munch-munch!=
|
||||
Yummies!=
|
||||
@ -33,3 +55,6 @@ What do you want from me?=
|
||||
Go away!=
|
||||
Screw you!=
|
||||
Villager says: “@1”=
|
||||
Sheep=
|
||||
Skunk=
|
||||
Walker=
|
||||
|
@ -12,10 +12,10 @@ local npc_types = {
|
||||
|
||||
local msgs = {
|
||||
npc = {
|
||||
farmer = S("Hi! I'm a farmer. I take care of crops."),
|
||||
tavernkeeper = S("In my village, I keep a tavern and the townsfolk entertained."),
|
||||
blacksmith = S("Hi! I'm a blacksmith. Smelting ores is my job."),
|
||||
butcher = S("Hi! I'm a butcher. I sell meat."),
|
||||
farmer = S("Hi! I'm a farmer. I sell farming goods."),
|
||||
tavernkeeper = S("Hi! I'm a tavernkeeper. I trade with assorted goods."),
|
||||
blacksmith = S("Hi! I'm a blacksmith. I sell metal products."),
|
||||
butcher = S("Hi! I'm a butcher. Want to buy something?"),
|
||||
},
|
||||
trade = {
|
||||
S("If you want to trade, show me a trading book."),
|
||||
@ -27,9 +27,8 @@ local msgs = {
|
||||
S("I don't want food right now."),
|
||||
},
|
||||
eat_full = {
|
||||
S("Ah, that hit the spot!"),
|
||||
S("Ah, now I'm fully energized!"),
|
||||
S("Thanks, now I'm filled up."),
|
||||
S("Burp!"),
|
||||
S("Thank you, now I feel much better!"),
|
||||
},
|
||||
eat_normal = {
|
||||
|
Loading…
Reference in New Issue
Block a user