This shows you the differences between two versions of the page.
Both sides previous revision Previous revision | |||
insult_generator [2018/03/30 10:08] karl moved to :cfpython: namespace |
— (current) | ||
---|---|---|---|
Line 1: | Line 1: | ||
- | ====== Insult Generator ====== | ||
- | For those who didn't know, that [[:dev|Crossfire]] has a wonderful little **insult generator** based on the Simple Shakespearian Insult Generator. \\ | ||
- | FIXME Year 2018 : What is or was this ? Who or what uses it ? What is the "Simple Shakespearian Insult Generator" ? \\ | ||
- | A Google search for "shakespearian insult generator source code" brought a few hits for "GitHub.com" . | ||
- | |||
- | I would like to add a few more modes for this and thought it would be appropriate to open the floor for input from such a dull and witless bunch as yourselves. | ||
- | |||
- | SO the format is: | ||
- | |||
- | //Prefix adj1 adj2 noun// | ||
- | |||
- | So for example the dwarven style would produce output such as: //"You shaven elf-footed goblin-kisser"// and the TEXAS style such joy as: //"Yer Mama's a beedy-eyed hog-lickin greenhorn"// | ||
- | |||
- | ##DWARVEN STYLE: | ||
- | |||
- | elif style == "dwarf":\\ | ||
- | adj1 = ['beardless', 'puny', 'shaven']\\ | ||
- | adj2 = ['elf-footed','dull-axed', 'tin-shielded' ]\\ | ||
- | noun = ['orc-lover', 'gobiln-kisser', 'tree-embracer']\\ | ||
- | prefixA = ['You are a', 'Your Matron\'s a', 'You']\\ | ||
- | prefixAn = ['You are an', 'Your Matron\'s an', 'You']\\ | ||
- | |||
- | ##TEXAS STYLE: | ||
- | |||
- | elif style == "texas":\\ | ||
- | adj1 = ['stewpid', 'uglee', 'pea brained', 'dung-headed', 'beedy-eyed', 'hatless', 'witless', 'dumb']\\ | ||
- | adj2 = ['horse-knappin', 'hog-lickin', 'knock-kneed', 'jug-eared', 'pie-headed', 'snaggle-toothed', 'brown-nosed', 'lilly-livered' ]\\ | ||
- | noun = ['city-slicker', 'root-head', 'cow-pie', 'greenhorn', 'idgit']\\ | ||
- | prefixA = ['Yer a','Yer Mama\'s a', 'Yew']\\ | ||
- | prefixAn = ['Yer an', 'Yer Mama\'s an', 'Yew']\\ | ||
- | |||
- | So please submit some delicious wordage : please specify the style (or a new style) and what which list(s) the word(s) should be in. Keep it creative, funny and not actually obscene. |