chchanged badge colors, added more badges types, handled formal1 and formal2 separately

This commit is contained in:
UndeadMaelys
2022-05-06 16:55:40 +02:00
parent 6d7ae9cefd
commit cb09f7235d
3 changed files with 169 additions and 126 deletions

99
main.js
View File

@@ -9,55 +9,98 @@ let currentFont = "r";
let timeout = "";
let badge_generic = "#393939"
let badge_register= "#fed100"
let badge_number = "#420690"
let badge_case = "#690420"
let badge_tense = "#00dd00"
let badge_mood = "#dd00dd"
let badge_negation = "#133337"
let quirkBadges = {
"formal1": {
"name": "Formal",
"description": "This word is used in formal or sincere settings.",
"color": badge_register,
"type": "Register",
"bending": "-lfur"
},
"formal2": {
"name": "Formal",
"description": "This word is used in formal or sincere settings.",
"color": badge_register,
"type": "Register",
"bending": "-lafura"
},
"genitive": {
"name": "Generic Possesive",
"description": "This word is describing a generic possesive relationship.",
"color": badge_case,
"type": "Case",
"bending": "-lan"
},
"possesive": {
"name": "Specific Possesive",
"description": "This word is describing a specific possesive relationship.",
"color": badge_case,
"type": "Case",
"bending": "la"
},
"plural": {
"name": "Plural",
"description": "This word is denoted as more than one",
"color": badge_number,
"type": "Number",
"bending": "n"
},
"present-tense": {
"name": "Present tense",
"description": "The word is in the present tense.",
"color": "#00dd00",
"name": "Present",
"description": "This word is in the present tense.",
"color": badge_tense,
"type": "Tense",
"bending": "ka'nya"
"bending": "ku → ka'nya"
},
"past-tense": {
"name": "Past tense",
"description": "The word is in the past tense.",
"color": "#dd00dd",
"name": "Past",
"description": "This word is in the past tense.",
"color": badge_tense,
"type": "Tense",
"bending": "kome"
"bending": "ku → kome"
},
"volitional-mood": {
"name": "Feeling mood",
"description": "A feeling,",
"color": "#dd00dd",
"name": "Feeling",
"description": "This word expresses a feeling or craving mood.",
"color": badge_mood,
"type": "Mood",
"bending": "pash"
"bending": "-pash"
},
"imperative-mood": {
"name": "Imperative mood",
"description": "Commanding mood.",
"color": "#dd0000",
"name": "Imperative",
"description": "This word expresses a imperative mood.",
"color": badge_mood,
"type": "Mood",
"bending": "dash"
"bending": "-dash"
},
"shy-mood": {
"name": "Shy mood",
"description": "Shy mood.",
"color": "#dddd00",
"name": "Shy",
"description": "This word expresses a shy mood..",
"color": badge_mood,
"type": "Mood",
"bending": "bash"
"bending": "-bash"
},
"threat-mood": {
"name": "Threat mood",
"description": "Threat mood.",
"color": "#00dddd",
"name": "Threat",
"description": "This word expresses a threatening mood..",
"color": badge_mood,
"type": "Mood",
"bending": "tash"
"bending": "-tash"
},
"negated": {
"name": "Negated",
"description": "The word is negated.",
"color": "#7777dd",
"name": "Negative",
"description": "The word is expressing a negated meaning.",
"color": badge_negation,
"type": "Negation",
"bending": "fa"
"bending": "-fa-"
},
"unknown-tag": {
"name": "Unknown tag",