All this work with damsels and trains is making Laura feel a bit run down, so she decides to stop working on her characters for a little while, and to work a bit on the main plot.
Accordingly, she sets her pen to the sheet of paper labeled main routine.
Here is the main plot of the Gunfight at the Old West Saloon:
There is a WesternTown called Sweaty Post. Sweaty Post has
two saloons, one sheriff, and five troublemakers. There is a male
villain named Maurice. Maurice has a black hat, a red moustache,
and a horse named "Beer Gut". Maurice prefers Jack Daniels
whiskey. Mary is a female human. She has a horse named
"Midnight" and she prefers her whiskey straight. In our story,
Maurice starts out by drinking whiskey. He then lets everyone
know how drunk he is, and then ties up a woman named Mary.
Here is the main plot of Gunfight at the Old West Saloon; In the novel Gunfight;
There is a town called sweatyPost;
sweatyPost has two saloons;
sweatyPost has one sheriff;
sweatyPost has five troublemakers;
There is a new villain named maurice;
maurice has a black hat;
maurice has a red mustache;
maurice is male;
maurice has a horse named "Beer Gut";
maurice prefers Jack Daniels whiskey;
There is a new Human named Mary;
mary is female;
mary has a horse named "Midnight";
mary prefers her whiskey straight;
maurice drinks some whiskey;
maurice tells us how drunk he is;
maurice ties up a damsel named Mary
-------------------------------------------------------------------------------------------------
public class Gunfight
{
public static void main(String arguments[])
{
WesternTown sweatyPost = new WesternTown();
sweatyPost.saloons = 2;
sweatyPost.sheriffs = 1;
sweatyPost.troublemakers = 5;
Villains maurice = new Villains();
maurice.hatColor = "black";
maurice.mustacheColor = "red";
maurice.sex = "Male";
maurice.horseName = "Beer Gut";
maurice.whiskeyPreference = "Jack Daniels";
Humans mary = new Humans();
mary.sex = "female";
mary.horseName = "Midnight";
mary.whiskeyPreference = "Straight";
mary.name = "Mary";
maurice.drinkWhiskey();
System.out.println(maurice.howDrunkAmI());
maurice.tieUpDamsel(mary);
}
}
|