197 lines
2.6 KiB
C
197 lines
2.6 KiB
C
// Dark Souls messages
|
|
|
|
#define DS1_TEMPLATES 13
|
|
const char templates1[DS1_TEMPLATES][32] =
|
|
{
|
|
"%s ahead",
|
|
"Be wary of %s",
|
|
"Try %s",
|
|
"Need %s",
|
|
"Imminent %s...",
|
|
"Weakness: %s",
|
|
"%s",
|
|
"%s?",
|
|
"Good luck",
|
|
"I did it!",
|
|
"Here!",
|
|
"I can't take this...",
|
|
"Praise the Sun!"
|
|
};
|
|
|
|
#define DS1_WORDS 173
|
|
const char words1[DS1_WORDS][32] =
|
|
{
|
|
"Enemy",
|
|
"Tough enemy",
|
|
"Hollow",
|
|
"Soldier",
|
|
"Knight",
|
|
"Sniper",
|
|
"Caster",
|
|
"Giant",
|
|
"Skeleton",
|
|
"Ghost",
|
|
"Bug",
|
|
"Poison bug",
|
|
"Lizard",
|
|
"Drake",
|
|
"Flier",
|
|
"Golem",
|
|
"Statue",
|
|
"Monster",
|
|
"Strange creature",
|
|
"Demon",
|
|
"Darkwraith",
|
|
"Dragon",
|
|
"Boss",
|
|
"Saint",
|
|
"Wretch",
|
|
"Charmer",
|
|
"Miscreant",
|
|
"Liar",
|
|
"Fatty",
|
|
"Beanpole",
|
|
"Merchant",
|
|
"Blacksmith",
|
|
"Master",
|
|
"Prisoner",
|
|
"Bonfire",
|
|
"Fog wall",
|
|
"Humanity",
|
|
"Lever",
|
|
"Switch",
|
|
"Key",
|
|
"Treasure",
|
|
"Chest",
|
|
"Weapon",
|
|
"Shield",
|
|
"Projectile",
|
|
"Armour",
|
|
"Item",
|
|
"Ring",
|
|
"Sorcery scroll",
|
|
"Pyromancy scroll",
|
|
"Miracle scroll",
|
|
"Ember",
|
|
"Trap",
|
|
"Covenant",
|
|
"Amazing key",
|
|
"Amazing treasure",
|
|
"Amazing chest",
|
|
"Amazing weapon",
|
|
"Amazing armour",
|
|
"Amazing item",
|
|
"Amazing ring",
|
|
"Amazing sorcery scroll",
|
|
"Amazing pyromancy scroll",
|
|
"Amazing miracle scroll",
|
|
"Amazing ember",
|
|
"Amazing trap",
|
|
"Close-ranged battle",
|
|
"Ranged battle",
|
|
"Eliminating one at a time",
|
|
"Luring it out",
|
|
"Beating to a pulp",
|
|
"Lying in ambush",
|
|
"Stealth",
|
|
"Mimicry",
|
|
"Pincer attack",
|
|
"Hitting them in one swoop",
|
|
"Fleeing",
|
|
"Charging",
|
|
"Stabbing in the back",
|
|
"Sweeping attack",
|
|
"Shield breaking",
|
|
"Head shots",
|
|
"Sorcery",
|
|
"Pyromancy",
|
|
"Miracles",
|
|
"Jumping off",
|
|
"Sliding down",
|
|
"Dashing through",
|
|
"Rolling",
|
|
"Backstepping",
|
|
"Jumping",
|
|
"Attacking",
|
|
"Holding with both hands",
|
|
"Kicking",
|
|
"A plunging attack",
|
|
"Blocking",
|
|
"Parrying",
|
|
"Locking-on",
|
|
"Path",
|
|
"Hidden path",
|
|
"Shortcut",
|
|
"Detour",
|
|
"Illusory wall",
|
|
"Shortcut",
|
|
"Dead end",
|
|
"Swamp",
|
|
"Lava",
|
|
"Forest",
|
|
"Cave",
|
|
"Labyrinth",
|
|
"Safe zone",
|
|
"Danger zone",
|
|
"Sniper spot",
|
|
"Bright spot",
|
|
"Dark spot",
|
|
"Open area",
|
|
"Tight spot",
|
|
"Hiding place",
|
|
"Exchange",
|
|
"Gorgeous view",
|
|
"Fall",
|
|
"Front",
|
|
"Back",
|
|
"Left",
|
|
"Right",
|
|
"Up",
|
|
"Down",
|
|
"Feet",
|
|
"Head",
|
|
"Back",
|
|
"Head",
|
|
"Neck",
|
|
"Stomach",
|
|
"Back",
|
|
"Arm",
|
|
"Leg",
|
|
"Heel",
|
|
"Rear",
|
|
"Tail",
|
|
"Wings",
|
|
"Anywhere",
|
|
"Strike",
|
|
"Thrust",
|
|
"Slash",
|
|
"Magic",
|
|
"Fire",
|
|
"Lightning",
|
|
"Critical hits",
|
|
"Bleeding",
|
|
"Poison",
|
|
"Strong poison",
|
|
"Curses",
|
|
"Divine",
|
|
"Occult",
|
|
"Crystal",
|
|
"Chance",
|
|
"Hint",
|
|
"Secret",
|
|
"Happiness",
|
|
"Sorrow",
|
|
"Life",
|
|
"Death",
|
|
"Undead",
|
|
"Elation",
|
|
"Grief",
|
|
"Hope",
|
|
"Despair",
|
|
"Light",
|
|
"Dark",
|
|
"Bravery",
|
|
"Resignation",
|
|
"Comfort",
|
|
"Tears"
|
|
};
|