Writing Amp 2, March 5th, 2023

Random THEME – Love conquers all
Random PLOT – Comedy
Euphemism Euphemism Onomatopoeia Onomatopoeia Metaphor Simile Informal Diction Foreshadowing Colloquialism Tone
Random Villain Lich
Troll Banshee Banshee Bandit Lich Vampire Siren Ghost Vampire Lich Lich Banshee Banshee Giant Troll Dragon Troll Kraken Banshee Demon

Descriptive Writing Amps

  1. [gargantuan, sweet, delightful] momentum wrote
  2. [proper, sad, sweet] fight shifted
  3. [glittering, soft, gargantuan] puzzle evoked
  4. [glittering, proper, towering] skyscraper opened
  5. [saturated, tinted, proper] aluminum blocked
  6. [daunting, efficient, glittering] silver shifted
  7. [diminished, kinetic, microscopic] carbon halted
  8. [delightful, minuscule, tinted] ice cream painted
  9. [diminished, joyful, soft] imagination blocked
  10. [soft, soft, delightful] dear commanded

Random Hero – Bard

And But Therefore Event Sets

  1. [Hero] gets in supercar but they are delayed therefore they fight the [monster]
  2. [Hero] gets on horse but [monster] challenges [Hero] with hurtful scary words therefore they fight the [monster]
  3. [Hero] gets on train but [monster] challenges [Hero] with hurtful scary words therefore they decide to learn more
  4. [Hero] gets in jet but they are delayed therefore they seek assistance with [side character]
  5. fight a [monster] but they get there early therefore they decide to learn more
  6. [Hero] is attacked by [Monster] but [Side character] shows up therefore they travel to a new area
  7. Narration highlights allegory that amplifies key details worthy of memory but they are delayed therefore they fight the [monster]
  8. [Hero] gets on motorcycle but [monster] shows up therefore they seek assistance with [side character]
  9. [Hero] gets in spaceship but [monster] shows up therefore they fight the [monster]
  10. [Hero] gets in jet but they get there early therefore they travel to a new area

Taken from Logs on Java App in Eclipse IDE – Mar 05, 2023 5:38:35 AM main.Main main

Updated Villains Code a Bit

Mar 05, 2023 5:56:09 AM main.Main main
INFO: Random THEME - We all have a bit of wisdom inside us
Mar 05, 2023 5:56:09 AM main.Main main
INFO: Random PLOT - Overcoming the Monster
Mar 05, 2023 5:56:09 AM main.Main main
INFO: Informal Diction Imagery Onomatopoeia Euphemism Tone Simile Simile Metaphor Imagery Euphemism 
Mar 05, 2023 5:56:09 AM main.Main main
INFO: Random Villain Earthquake
Mar 05, 2023 5:56:09 AM main.Main main
INFO: Ghost Kraken Siren Siren Ice Elemental Siren Vampire Troll Fire Elemental Dragon Vampire Ice Elemental Dragon Skeleton Earthquake Hurricane Tornado Vampire Shark Giant Spider 
Mar 05, 2023 5:56:09 AM main.Main main
INFO: [toned, magnificent, loud] castle sculpted
[blissful, sad, microscopic] cliff infused
[shaded, delicate, minuscule] velocity communicated
[sweet, angry, glittering] bird inspired
[red, sweet, towering] cable relayed
[toned, soft, sour] wave blocked
[gargantuan, exalted, calm] moon dashed
[microscopic, colossal, daunting] emotion delivered
[memorable, sweet, diminished] imagination eroded
[tinted, minuscule, beguiling] star eroded

Mar 05, 2023 5:56:09 AM main.Main main
INFO: Random Hero - Rogue
Mar 05, 2023 5:56:09 AM main.Main main
INFO: And But Therefore Event Sets
Mar 05, 2023 5:56:09 AM main.Main main
INFO: [Hero] gets in bus  but [monster] shows up  therefore they decide to learn more
[Hero] gets in supercar  but [monster] challenges [Hero] with hurtful scary words  therefore they seek assistance with [side character]
[Hero] is Inspired and Encouraged by [side character]  but they are delayed  therefore they decide to learn more
[Hero] is given assistance from [side character]  but it rains  therefore they seek assistance with [side character]
[Hero] gets on horse  but [monster] challenges [Hero] with hurtful scary words  therefore they travel to a new area
[Hero] gets on train  but they are delayed  therefore they fight the [monster]
[Hero] gets in spaceship  but they are delayed  therefore they decide to learn more
[Hero] gets in spaceship  but they are delayed  therefore they decide to learn more
[Hero] gets in supercar  but they get there early  therefore they seek assistance with [side character]
Dramatic Dialogue with subtext  but they are delayed  therefore they decide to learn more

Free Starter Java Class

package main.util;

import java.util.ArrayList;
import java.util.Arrays;
import java.util.OptionalDouble;
import java.util.random.RandomGenerator;
import java.util.random.RandomGeneratorFactory;
import java.util.stream.DoubleStream;

public class VillainUtil {
	private static ArrayList<String> villains;
	
	public static ArrayList<String> getVillains() {
		if (null != villains) {
			return villains;
		}
		
		String arrayOfVillains[] = { 
			"Vampire", "Dragon", "Lich", "Ghost", "Kraken", "Giant",
			"Demon", "Banshee", "Siren", "Skeleton", "Troll",
			"Bandit", "Shark", "Giant Spider", "Stone Elemental", "Fire Elemental",
			"Ice Elemental", "Water Elemental", "Hurricane", "Tornado", "Earthquake",
			"Forest Fire"
		};
		
		
		villains = new ArrayList<>(Arrays.asList(arrayOfVillains));
		
		return villains;
	}
	
	public static String getRandomVillain() {
		if (null == villains) {
			getVillains();
		}
		
		RandomGenerator randomGenerator = RandomGeneratorFactory.getDefault().create();
		DoubleStream doubleStream = randomGenerator.doubles(1);
		
		OptionalDouble random = doubleStream.findFirst();
		
		int value = Double.valueOf(villains.size()*random.getAsDouble()).intValue();
		String villain = villains.get(value);
		return villain;		
	}
}

Supercomputers not required to enable Feedback likely not all value for Future Amped.

Published by techinfodebug

Flex and Java Developer, Christian, Art, Music, Video, and Vlogging

Leave a comment