From 1f3fbd28bf1117df8c5bd53925d41f3740570806 Mon Sep 17 00:00:00 2001 From: Shagnor Date: Sat, 7 Jan 2023 23:20:06 +1100 Subject: [PATCH] Make NPCs talk more. --- blastmud_game/src/static_content/npc.rs | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/blastmud_game/src/static_content/npc.rs b/blastmud_game/src/static_content/npc.rs index 85d5a7d3..97c6bca0 100644 --- a/blastmud_game/src/static_content/npc.rs +++ b/blastmud_game/src/static_content/npc.rs @@ -57,7 +57,20 @@ pub fn npc_list() -> &'static Vec { static NPC_LIST: OnceCell> = OnceCell::new(); NPC_LIST.get_or_init( || { - let melbs_citizen_stdsay = NPCSayInfo { say_code: "babble", frequency_secs: 60, talk_type: FromFixedList(vec!((false, "I'm so sick of being cloned")))}; + let melbs_citizen_stdsay = NPCSayInfo { + say_code: "babble", + frequency_secs: 60, + talk_type: FromFixedList(vec!( + (false, "I'm so sick of being cloned."), + (false, "I hope I don't die again today."), + (false, "I wish the so-called king would do something about the damned zombies everywhere."), + (true, "I earn so many credits making babies for the body factory - it literally pays my bills."), + (false, "I know people hated the empire, but I kind of wish it was still intact - it was a lot better than what we have now."), + (false, "I wish there wasn't so much radiation outside of Melbs CBD."), + (false, "I heard about a guy who went to a special place somewhere around here, and there was a machine that enhanced his wristpad and gave him basically superpowers."), + (false, "The damn vampire movement... they are all so sneaky, and I never know when they are going to come for my blood."), + )) + }; vec!( NPC { code: "repro_xv_chargen_statbot",