using System.Collections.Generic;
using PeanutButter.RandomGenerators;
static List<string> players;
static string [] startActions = {" is thirsty and has decides to drink infected lake water",
" goes and gets cover like a hedgehog in the winter",
" goes straight to the cornucopia like a G", " hides to play fortnite like its 2018"
, "feels ill so takes a covid test"};
static string[] suicides = {
" fell in a hole and broke his neck ",
" smacked his head on a tree ",
" went for a swim in a prirana pond ouch "
static string[] kills = {
" backhanded him with a base ball bat ", " kicked him in the eye and exploded it "
public static void Main()
players = new List<string>();
while (finished == false)
string input = Console.ReadLine();
for (int i = 0; i<players.Count; i++)
int actionIndex = RandomValueGen.GetRandomInt(0, startActions.Length - 1);
Console.WriteLine(players [i] + startActions[actionIndex]);
string killer = RandomPlayer();
string victim = RandomPlayer();
static public string RandomPlayer()
return players[RandomValueGen.GetRandomInt(0, players.Count - 1)];