1
0
mirror of https://github.com/krateng/maloja.git synced 2023-08-10 21:12:55 +03:00

Expanded scrobble generation

This commit is contained in:
krateng 2021-11-18 06:47:03 +01:00
parent ff8e5ec8ff
commit be7780a0c0

View File

@ -13,23 +13,32 @@ adjectives = [
"Long","Short","Last","First","Final","Huge","Tiny","Important" "Long","Short","Last","First","Final","Huge","Tiny","Important"
] ]
nouns = [ nouns = [
"Ship","Princess","Castle","Monastery","Sword","War","Battle","Temple","Army", "Ship","Princess","Castle","Monastery","Sword","War","Battle","Temple","Army","Horse",
"Valley","River","Waterfall","Mountain","Tree","Forest","Sea","Desert","Montains","Clouds","Glacier", "Valley","River","Waterfall","Mountain","Tree","Forest","Sea","Desert","Montains","Clouds","Glacier","Sun","Moon",
"Penguin","Tiger","Phoenix","Qilin","Dragon","Tortoise","Bird","Toucan" "Dusk","Dawn","Twilight","Nightfall","Sunset","Sunrise",
"Penguin","Tiger","Phoenix","Qilin","Dragon","Tortoise","Bird","Toucan",
"Area","Region","Land","Span","Gate","Arch","Country","Field",
"Cherry","Pear","Olive","Apple","Peach","Berry",
"Sapphire","Emerald","Jade","Ruby"
] ]
prepositions = ["in","of","over","under","about","across","inside","toward","on","within","with"] prepositions = ["in","of","over","under","about","across","inside","toward","on","within","with"]
verbs = ["Lifting","Stealing","Dancing","Running","Jumping","Singing"] verbs = [
"Lifting","Stealing","Dancing","Running","Jumping","Singing","Moving","Climbing","Walking","Wandering",
"Fighting","Entering","Leaving","Meeting","Watching","Eating"
]
patterns = [ patterns = [
"{n1} {p1} the {a1} {n2}", "{n1} {p1} the {a1} {n2}", # Land of the Golden Sun
"The {a1} {n1}", "The {a1} {n1}", # The Green Dragon
"{p1} the {a1} {n1}", "{p1} the {a1} {n1}", # Under the Dark Span
"{a1} {n1} {p1} the {a2} {n2}", "{a1} {n1} {p1} the {a2} {n2}",
"{v1} the {a1} {n1}", "{v1} the {a1} {n1}",
"{v1} {p1} the {a1} {n1}", "{v1} {p1} the {a1} {n1}",
"{v1} and {v2}", "{v1} and {v2}",
"{a1} {n1} {p1} the {n2} {n3}", "{a1} {n1} {p1} the {n2} {n3}",
"{a1} {n1} and the {n2} {n3}" "{a1} {n1} and the {n2} {n3}", # Black Horse and the Cherry Tree
"{a1} {a2} {p1} your {n1}", # Black Pink in your Area
"Forward {p1} {n1}"
] ]
def generate_track(): def generate_track():