Advertisement
SpaceEngineersAddict

Death Messages

Nov 4th, 2016
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 3.59 KB | None | 0 0
  1. namespace DeathCounter
  2. {
  3.     public static class Messages
  4.     {
  5.         public static string[ ] ExplosionStrings = new string[]
  6.         {
  7.             " is splattered across the floor.",
  8.             " got creamed by an explosion.",
  9.             " has to be scraped off the walls.",
  10.             " has been blown to smithereens.",
  11.             " has been turned inside out."
  12.         };
  13.  
  14.  
  15.         public static string[ ] RocketStrings = new string[]
  16.         {
  17.             " ate a missile.",
  18.             " had a hole blown through their chest.",
  19.             " got splattered by a missile.",
  20.             " rode a rocket.",
  21.             " was caught in rocket burst."
  22.         };
  23.  
  24.  
  25.         public static string[ ] BulletStrings = new string[]
  26.         {
  27.             " is now full of holes.",
  28.             " said hello to my little friend.",
  29.             " got turned into swiss cheese.",
  30.             " failed to dance.",
  31.             " ate hot lead.",
  32.             " is swimming in bullets.",
  33.             " got a hole in the head.",
  34.             " was shot to pieces.",
  35.             " is riddled with bullets.",
  36.             “ bled out.”,
  37.             “ got shredded.”
  38.         };
  39.  
  40.  
  41.         public static string[ ] DrillStrings = new string[]
  42.         {
  43.             " got chewed up by a drill.",
  44.             " got ground to dust.",
  45.             " forgot they aren't made of stone.",
  46.             " got drilled."
  47.         };
  48.  
  49.  
  50.         public static string[ ] SuicideStrings = new string[]
  51.         {
  52.             " committed suicide.",
  53.             " took the easy way out.",
  54.             " said goodbye to this cruel world.",
  55.             “ had enough of life.”,
  56.             “ died. Nobody knows why, it just happened.”
  57.         };
  58.  
  59.  
  60.         public static string[ ] FallStrings = new string[]
  61.         {
  62.             " fell to their death.",
  63.             " forgot about gravity.",
  64.             " should have turned on their jetpack.",
  65.             " left a small crater.",
  66.             “ went SPLAT!",
  67.             “ forgot to stop.”
  68.        };
  69.  
  70.  
  71.        public static string[] GridStrings = new string[]
  72.        {
  73.            " forgot to stop.",
  74.            " is smeared across the side of the ship.",
  75.            " made contact with cold hard steel.",
  76.             " has been sacrificed to klang."
  77.        };
  78.  
  79.  
  80.        public static string[ ] GrindStrings = new string[]
  81.        {
  82.            " fell into a grinder.",
  83.            " got cut to ribbons.",
  84.            " got shredded in a grinder."
  85.        };
  86.  
  87.  
  88.        public static string[ ] WeldStrings = new string[]
  89.        {
  90.            " got melted.",
  91.            " had an unfortunate accident involving a welder and six giraffes.",
  92.            " forgot welders work on humans.",
  93.             “ got burned alive.”,
  94.             “ got burned to ashes.”
  95.        };
  96.  
  97.  
  98.        public static string[ ] AsphyxiaStrings = new string[]
  99.        {
  100.            " forgot to breathe.",
  101.            " suffocated.",
  102.            " forgot to put their helmet on.",
  103.            " ran out of air.",
  104.             “ asphyxiated.”
  105.        };
  106.  
  107.  
  108.        public static string[] FloatingStrings = new string[]
  109.        {
  110.            " had something heavy dropped on their head.",
  111.            " got crushed by a big rock.",
  112.            " failed to re-enact Indiana Jones and the boulder."
  113.        };
  114.  
  115.  
  116.        public static string[] BoltStrings = new string[]
  117.        {
  118.            " was mauled to death.",
  119.            " got eaten.",
  120.            " had their face chewed off."
  121.        };
  122.  
  123.  
  124.        public static string[] NaniteStrings = new string[]
  125.        {
  126.            " was turned into grey goo.",
  127.            " got disassembled by nanites.",
  128.            " was executed for impersonating a nanite."
  129.        };
  130.    }
  131. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement