diff --git a/bin/combine-dictionaries b/bin/combine-dictionaries new file mode 100755 index 0000000..85db0bf --- /dev/null +++ b/bin/combine-dictionaries @@ -0,0 +1,67 @@ +#!/usr/bin/env node + +const fs = require("fs-extra"); +const path = require("path"); +const stringify = require("json-stable-stringify"); +const yaml = require("js-yaml"); + +// Create the combined dictionary file. +let dict = []; +let syllableDict = {}; + +// Create a chain of actions inside an async method. +run(); + +async function run() +{ + // Get all the syllables (directory names). + var syllables = await fs.readdir("src/dictionary"); + + for (const syllable of syllables) + { + // Go through the dictionary files in this list. + const syllablePath = path.join("src/dictionary", syllable); + const files = await fs.readdir(syllablePath); + const yamlFiles = files.filter(f => f.match(/\.yaml$/)); + + for (const file of yamlFiles) + { + // Load the file into memory. + const filePath = path.join(syllablePath, file); + const buffer = await fs.readFile(filePath); + const entry = yaml.safeLoad(buffer); + + // Make sure the syllable object exists. + if (!syllableDict[syllable]) + { + syllableDict[syllable] = []; + } + + // Add them to the given lists. + dict.push(entry); + syllableDict[syllable].push(entry); + } + } + + // Make sure the directories exists. + await fs.mkdir("dist").catch(() => {}); + await fs.mkdir("dist/dictionary").catch(() => {}); + + // Write out all the files. + const options = { sortKeys: true, space: " " }; + fs.writeFile("dist/dictionary.json", stringify(dict, options)); + fs.writeFile("dist/dictionary.yaml", yaml.safeDump(dict, options)); + + for (const syllable in syllableDict) + { + if (syllableDict.hasOwnProperty(syllable)) + { + fs.writeFile( + "dist/dictionary/" + syllable + ".json", + stringify(syllableDict[syllable], options)); + fs.writeFile( + "dist/dictionary/" + syllable + ".yaml", + yaml.safeDump(syllableDict[syllable], options)); + } + } +} diff --git a/bin/create-dictionary-markdown b/bin/create-dictionary-markdown deleted file mode 100755 index 9bf6d0a..0000000 --- a/bin/create-dictionary-markdown +++ /dev/null @@ -1,203 +0,0 @@ -#!/usr/bin/perl - -# -# Setup -# - -# Directives -use strict; -use warnings; -use utf8; - -binmode(STDOUT, ":utf8"); -binmode(STDERR, ":utf8"); - -# Modules -use File::Basename; -use Getopt::Long; - -# Variables -my $EXT = ".markdown"; -my $REPO_DIR = dirname($0) . "/.."; -my $BUILD_DIR = "$REPO_DIR/build"; - -&GetOptions( - "output|o=s" => \$BUILD_DIR, - "ext|e=s" => \$EXT, - ); - -# -# Paths -# - -# These scripts are designed to work within the Git repository and -# makes assumptions of all the relative paths and outputs. -my $DICT_MARKDOWN = "$BUILD_DIR/index.markdown"; -my $DICT_DIR = "$REPO_DIR/src/dictionary"; - -# Make sure the build directory exists. -unless (-d $BUILD_DIR) -{ - print STDERR "Creating build directory\n"; - system("mkdir", "-p", $BUILD_DIR); -} - -# -# Processing -# - -# Create the initial Markdown file. -my ($DICT, $SYB); -print STDERR "Writing to $DICT_MARKDOWN\n"; -open $DICT, ">:encoding(UTF-8)", $DICT_MARKDOWN - or die "Cannot write dictionary file ($!)"; - -# Write out the front matter. -print $DICT join( - "\n", - "---", - "title: Miwāfu Dictionary", - "breadcrumbTitle: Dictionary", - "---"), "\n\n"; - -# Loop through the directories in the dictionary. -for my $s (sort(glob("$DICT_DIR/*"))) -{ - # Figure out the basename. - my $bs = basename($s); - - # Open up the syllable file. - open $SYB, ">:encoding(UTF-8)", "$BUILD_DIR/$bs.markdown" - or die "Cannot write $bs dictionary file ($!)"; - - # Determine if we have any entries in here. - my @w = sort(glob("$s/*.markdown")); - next unless @w; - my $w = scalar(@w); - - # Write out the entry. - print STDERR "Processing: $bs ($w entries)\n"; - print $DICT "# $bs\n\n"; - - print $SYB "---\ntitle: Miwāfu Dictionary - $bs\nbreadcrumbTitle: $bs\n---\n\n# $bs\n\n"; - - # Go through each of these entries. - for $w (@w) - { - process_word($w, $bs); - } - - # Close the file. - close $SYB; -} - -# Finish up the dictionary. -close $DICT; - -# -# Finished -# - -print STDERR "Done\n"; - -# -# Subroutines -# - -sub process_word -{ - # Pull out the entries from the file. - my ($file, $bs) = @_; - - # Read in this file and process the entries. - open WORD, "<:encoding(UTF-8)", $file; - - # The format of the file matches Wikionary's format which is not - # how most dictionaries are created. - my $pos = undef; - my $word = undef; - my %defs = (); - - while () - { - # Clean up the line. - chomp; - next if /^\s*$/; - next if /^=/; - next if /^-/; - - # Figure out the parts of speech. - if (m@(Noun|Verb|Marker|Pronoun|Adjective|Adverb)@) - { - $pos = lc($1); - $pos = "adv" if $pos eq "adverb"; - $pos = "adj" if $pos eq "adjective"; - $pos = "pro" if $pos eq "pronoun"; - $pos = "mark" if $pos eq "marker"; - next; - } - - if (m@^Related$@) - { - $pos = undef; - } - - # If we haven't hit a POS, then skip it. - next unless defined $pos; - - # If we have a number in the beginning, then it's a definition. - if (m@^(\d+)\. (.*?)$@) - { - # Make sure we have an entry here. - push @{$defs{$word}{$pos}}, "**$1** $2"; - next; - } - - # Anything else is a word to add. - my %def_pos = (); - my @def_list = (); - - s@^\#+\s+@@; - $word = $_; - $defs{$word} = \%def_pos unless defined $defs{$word}; - $defs{$word}{$pos} = \@def_list unless defined $defs{$word}{$pos}; - } - - # Finish up the file. - close WORD; - - # Write out the Markdown line. - foreach $word (sort(keys(%defs))) - { - # Start by formatting the word. - my $slug = $word; - - $slug =~ s/[áàā]/a/g; - $slug =~ s/[éèē]/e/g; - $slug =~ s/[íìī]/i/g; - $slug =~ s/[óòō]/o/g; - $slug =~ s/[úùū]/u/g; - $slug =~ s/[\s-]+/-/g; - - print $DICT "[$word]($bs/$slug$EXT):"; - print $SYB "[$word]($slug$EXT):"; - - my $buffer = ""; - - # Add in the parts of speech. - for $pos (qw(noun verb adj adv pro mark)) - { - # If we don't have one, skip it. - next unless exists $defs{$word}{$pos}; - - # Add in the POS. - $buffer .= " *$pos* "; - - # Go through the definitions. - $buffer .= join(" ", @{$defs{$word}{$pos}}); - } - - print $DICT "$buffer\n\n"; - print $SYB "$buffer\n\n"; - } -} diff --git a/dist/dictionary.json b/dist/dictionary.json new file mode 100644 index 0000000..a7fdf83 --- /dev/null +++ b/dist/dictionary.json @@ -0,0 +1,4112 @@ +[ + { + "base": "aeno", + "pos": { + "noun": { + "neuter": [ + { + "def": "Bird eggs." + } + ] + }, + "verb": { + "feminine": [ + { + "def": "To destroy something by crushing it." + } + ] + } + } + }, + { + "base": "afukijomu", + "pos": { + "verb": { + "feminine": [ + { + "def": "To shape or manipulate the physical form using magic.\n" + }, + { + "def": "To sculpt solid materials.\n" + } + ] + } + } + }, + { + "base": "ashyobyupa", + "pos": { + "noun": { + "neuter": [ + { + "def": "A chrysanthemum." + }, + { + "def": "A flower with a lot of petals." + } + ] + }, + "verb": { + "feminine": [ + { + "def": "To use many different tools or techinques to look beautiful." + } + ] + } + } + }, + { + "base": "baba", + "pos": { + "noun": { + "masculine": [ + { + "def": "Heart." + } + ] + } + } + }, + { + "base": "barichi", + "pos": { + "adj": [ + { + "def": "Mundane, non-magical." + } + ] + } + }, + { + "base": "barichiroma", + "pos": { + "noun": { + "neuter": [ + { + "def": "Magic-less person." + } + ] + } + } + }, + { + "base": "bedano", + "pos": { + "noun": { + "feminine": [ + { + "def": "A pinch of something, used for cooking." + }, + { + "def": "1/64th of a wudūna used for measuring delicate weights." + }, + { + "def": "OOW 0.2 g." + } + ] + } + } + }, + { + "base": "benkidofu", + "pos": { + "noun": { + "neuter": [ + { + "def": "The natural shielding of resonance damage against the weaker of two opposing magical fields." + } + ] + } + } + }, + { + "base": "bichiru", + "pos": { + "noun": { + "feminine": [ + { + "def": "A traditional drink of the northern desert primarily made from fermented cactus sap. It typically has a milky appearance." + } + ] + } + } + }, + { + "base": "bidano", + "pos": { + "noun": { + "feminine": [ + { + "def": "A pinch of something, used for cooking." + } + ] + }, + "verb": { + "neuter": [ + { + "def": "To be nit-picky or find fault in tiny details." + } + ] + } + } + }, + { + "base": "bidosomi", + "pos": { + "adj": [ + { + "def": "Personalized or customized for an individual.\n" + }, + { + "def": "A spirit that has a personal or unique manifestion for individual members of the clan. This manifestion can be a physical or an ethereal one.\n", + "reference": [ + { + "excerpt": "Rutejìmo turned back to the valley. Coming in from all directions were the couriers of the clan. They all ran after translucent small birds, the manifestation of Shimusògo; the speed of their sprints kicking up long plumes of sand and dust.\n", + "identifier": "0100-02", + "title": "Sand and Bone 1", + "url": "https://fedran.com/sand-and-bone/chapter-01/" + } + ] + } + ], + "adv": [ + { + "def": "An action that is tailored or adapted for the subject.\n" + } + ] + } + }, + { + "base": "bikiku", + "pos": { + "noun": { + "feminine": [ + { + "def": "Flea, louse." + } + ] + } + } + }, + { + "base": "bimugi", + "pos": { + "noun": { + "masculine": [ + { + "def": "Horn." + } + ] + } + } + }, + { + "base": "bire", + "pos": { + "noun": { + "masculine": [ + { + "def": "Night." + } + ] + } + } + }, + { + "base": "bochigomasu", + "pos": { + "verb": { + "neuter": [ + { + "def": "Do perform something that takes a week to complete." + } + ] + } + } + }, + { + "base": "bokiko", + "pos": { + "noun": { + "feminine": [ + { + "def": "Fire smoke." + } + ] + } + } + }, + { + "base": "bozo", + "pos": { + "verb": { + "feminine": [ + { + "def": "To cook or prepare a small meal or snack." + }, + { + "def": "To prepare a meal for oneself." + } + ], + "masculine": [ + { + "def": "To cook or prepare a large meal." + } + ] + } + } + }, + { + "base": "bupo", + "pos": { + "verb": { + "feminine": [ + { + "def": "Swim." + } + ] + } + } + }, + { + "base": "bupobo", + "pos": { + "noun": { + "feminine": [ + { + "def": "Fish." + } + ] + } + } + }, + { + "base": "burukano", + "pos": { + "noun": { + "neuter": [ + { + "def": "The tendency for members of the same clan to exhibit common traits, morals, and decisions common with the clan's spirit.\n" + } + ] + } + } + }, + { + "base": "byan", + "pos": { + "noun": { + "neuter": [ + { + "def": "Green." + } + ] + } + } + }, + { + "base": "byobi", + "pos": { + "noun": { + "feminine": [ + { + "def": "As [byòbi](../byo/byobi.markdown) [n.1] but female." + } + ], + "masculine": [ + { + "def": "A male rabbit, hare, or other member of the leporine family." + } + ], + "neuter": [ + { + "def": "As [byòbi](../byo/byobi.markdown) [n.1] but a young bunny or kit." + } + ] + } + } + }, + { + "base": "byomokishi", + "pos": { + "noun": { + "neuter": [ + { + "def": "Non-desert people." + } + ] + } + } + }, + { + "base": "byomushike", + "pos": { + "noun": { + "neuter": [ + { + "def": "Outsider." + } + ] + } + } + }, + { + "base": "byoni", + "pos": { + "verb": { + "feminine": [ + { + "def": "To have a little cry." + } + ], + "masculine": [ + { + "def": "To bawl or cry loudly." + }, + { + "def": "To break down sobbing." + } + ] + } + } + }, + { + "base": "chidona", + "pos": { + "noun": { + "neuter": [ + { + "def": "Pebbles or small rocks." + } + ] + }, + "verb": { + "masculine": [ + { + "def": "To throw or cause many small problems in rapid succession." + } + ] + } + } + }, + { + "base": "chifu", + "pos": { + "adj": [ + { + "def": "Long." + } + ] + } + }, + { + "base": "chifumo", + "pos": { + "noun": { + "masculine": [ + { + "def": "Cold weather." + } + ] + } + } + }, + { + "base": "chimoga", + "pos": { + "noun": { + "neuter": [ + { + "def": "A measurement of distance." + }, + { + "def": "A surveyor's chain of 66 feet or 4 [romōga](../ro/romogo.markdown)." + } + ] + }, + "verb": { + "feminine": [ + { + "def": "To measure or pace something out that is approximately a [chimōga](../chi/chimōga.markdown) distance." + }, + { + "def": "To measure something out in terms of [chimōga](../chi/chimōga.markdown) distance." + } + ] + } + } + }, + { + "base": "chiruni", + "pos": { + "noun": { + "feminine": [ + { + "def": "Warm weather." + } + ] + } + } + }, + { + "base": "chisogura", + "pos": { + "noun": { + "masculine": [ + { + "def": "A physical and spiritual call for help from other clan members.\n", + "reference": [ + { + "excerpt": "\"Sands!\" Desòchu threw back his head, exploded into an inferno of golden flames, and screamed. It wasn't the sound of a human that came out of his mouth, but the screech of a bird that echoed in Rutejìmo's head.\nThe sound crashed into Rutejìmo. It echoed beyond his ears and something deep in his heart responded. He had to obey it, had to do something. It was the cry of Shimusògo himself.\nRutejìmo felt the cry force his attention toward Desòchu. A need to do something rose up inside him, a command that came directly from the clan spirit. He stared into Desòchu's flaming form despite the pain of looking into the brightness. Tears burned in his eyes from the effort.\n...\nPower rose around him. Looking up, he saw the clan responding to Desòchu's cry. Every adult of the clan converged on the valley, each one leaving a trail of golden flames. The children who were playing were knocked aside by adults all sprinting toward the entrance.\n", + "identifier": "0100-01", + "title": "Sand and Ash 32", + "url": "https://fedran.com/sand-and-ash/chapter-32/" + } + ] + } + ] + }, + "verb": { + "neuter": [ + { + "def": "To make a spiritual call for help from other clan members.\n" + } + ] + } + } + }, + { + "base": "chisokuku", + "pos": { + "noun": { + "masculine": [ + { + "def": "The amount of water a clan needs in a day." + }, + { + "def": "A volume of liquid equal to 66 [kokéku](../ko/kokeku.markdown)." + }, + { + "def": "OOW: A volume of liquid equal to 264 L." + } + ] + } + } + }, + { + "base": "chobire", + "pos": { + "noun": { + "masculine": [ + { + "def": "The moon." + } + ] + } + } + }, + { + "base": "chochi", + "pos": { + "noun": { + "masculine": [ + { + "def": "A lunar cycle or month." + } + ] + } + } + }, + { + "base": "chon", + "pos": { + "adj": [ + { + "def": "Black." + } + ] + } + }, + { + "base": "chonesu", + "pos": { + "noun": { + "feminine": [ + { + "def": "Stars." + } + ] + } + } + }, + { + "base": "chota", + "pos": { + "noun": { + "masculine": [ + { + "def": "A lunar \"day\"." + } + ] + } + } + }, + { + "base": "chotafuchi", + "pos": { + "noun": { + "masculine": [ + { + "def": "The period where the moon is below the horizon." + }, + { + "def": "When moon-based powers don't work." + } + ] + } + } + }, + { + "base": "chyomigu", + "pos": { + "noun": { + "neuter": [ + { + "def": "1/10th of a domīgu." + }, + { + "def": "OOW: 2.01 cm" + } + ] + } + } + }, + { + "base": "chyore", + "pos": { + "noun": { + "masculine": [ + { + "def": "Snake" + }, + { + "def": "mizonekima chyòre - giant snake" + } + ] + } + } + }, + { + "base": "chyotemako nakifu", + "pos": { + "noun": { + "feminine": [ + { + "def": "A short poem of two or more phrases where every phrase is the same number of syllables." + } + ] + } + } + }, + { + "base": "chyubine", + "pos": { + "noun": { + "feminine": [ + { + "def": "As *chyubìne* (noun 1), but female." + } + ], + "masculine": [ + { + "def": "A male jack-of-trades, someone who had a wide variety of skills." + } + ], + "neuter": [ + { + "def": "A child who has many skills but no specialization." + }, + { + "def": "A child with an uncertain clan affiliation." + } + ] + } + } + }, + { + "base": "chyurena", + "pos": { + "noun": { + "feminine": [ + { + "def": "As *chyurèna* (noun 1), but female." + } + ], + "masculine": [ + { + "def": "A male of a clan which does not have significantly differing levels of magical power among its members." + } + ] + } + } + }, + { + "base": "dakyofu", + "pos": { + "verb": { + "feminine": [ + { + "def": "To channel magic into a weapon to make it stronger or resilent to attack magic.\n" + } + ], + "masculine": [ + { + "def": "To anticipate an unplesant conversation.\n" + } + ] + } + } + }, + { + "base": "danichyo", + "pos": { + "noun": { + "masculine": [ + { + "def": "An impromptu hiding spot." + } + ], + "neuter": [ + { + "def": "A bird's nest." + } + ] + }, + "verb": { + "feminine": [ + { + "def": "To create something for personal joy." + } + ] + } + } + }, + { + "base": "datemo", + "pos": { + "adv": [ + { + "def": "To perform an action with perception magic.\n" + } + ], + "verb": { + "feminine": [ + { + "def": "To look intently or analyze.\n" + } + ], + "neuter": [ + { + "def": "To percieve or observe.\n" + } + ] + } + } + }, + { + "base": "datsu", + "pos": { + "noun": { + "neuter": [ + { + "def": "The basic unit of weight equal to sofùki worth of clean water." + }, + { + "def": "OOW: 1020 g." + } + ] + } + } + }, + { + "base": "defoni", + "pos": { + "noun": { + "masculine": [ + { + "def": "Feather." + } + ] + } + } + }, + { + "base": "demu", + "pos": { + "verb": { + "masculine": [ + { + "def": "Fly." + } + ] + } + } + }, + { + "base": "depa", + "pos": { + "noun": { + "feminine": [ + { + "def": "Bird." + } + ] + } + } + }, + { + "base": "detokishi", + "pos": { + "noun": { + "masculine": [ + { + "def": "Desert folk." + } + ] + } + } + }, + { + "base": "detomusa", + "pos": { + "noun": { + "masculine": [ + { + "def": "Persistent sand storm." + } + ] + } + } + }, + { + "base": "do", + "pos": { + "pro": [ + { + "def": "You, yours." + } + ] + } + }, + { + "base": "dodera", + "pos": { + "noun": { + "neuter": [ + { + "def": "An object used to hold liquid." + }, + { + "def": "A bucket or bowl." + } + ] + }, + "verb": { + "feminine": [ + { + "def": "To cup one's hands to hold liquids." + } + ] + } + } + }, + { + "base": "domigu", + "pos": { + "noun": { + "neuter": [ + { + "def": "1/100th of a romōga." + }, + { + "def": "OOW: 20.12 cm." + } + ] + } + } + }, + { + "base": "doshyo", + "pos": { + "noun": { + "feminine": [ + { + "def": "Soil, earth." + } + ] + } + } + }, + { + "base": "dotsu", + "pos": { + "noun": { + "masculine": [ + { + "def": "Home." + } + ] + } + } + }, + { + "base": "faho", + "pos": { + "noun": { + "feminine": [ + { + "def": "ear." + } + ] + } + } + }, + { + "base": "famu", + "pos": { + "noun": { + "neuter": [ + { + "def": "Eye, eyes." + } + ] + } + } + }, + { + "base": "fapodi", + "pos": { + "verb": { + "feminine": [ + { + "def": "To run over long distances." + }, + { + "def": "Endurance running." + } + ], + "masculine": [ + { + "def": "To sprint or run at full speed." + } + ] + } + } + }, + { + "base": "faruku", + "pos": { + "noun": { + "neuter": [ + { + "def": "A toad or frog." + } + ] + } + } + }, + { + "base": "fasa", + "pos": { + "adj": [ + { + "def": "Fast, speedy." + } + ] + } + }, + { + "base": "fechi", + "pos": { + "adj": [ + { + "def": "Greater or superior in social rank." + } + ] + } + }, + { + "base": "figi", + "pos": { + "noun": { + "feminine": [ + { + "def": "Teeth, bite." + } + ] + } + } + }, + { + "base": "foni", + "pos": { + "noun": { + "neuter": [ + { + "def": "Head." + } + ] + } + } + }, + { + "base": "fopu", + "pos": { + "adj": [ + { + "def": "Full, stuffed." + } + ] + } + }, + { + "base": "fuchi", + "pos": { + "noun": { + "masculine": [ + { + "def": "Nose." + } + ] + } + } + }, + { + "base": "fugi", + "pos": { + "verb": { + "neuter": [ + { + "def": "See, sight." + } + ] + } + } + }, + { + "base": "fugimo", + "pos": { + "noun": { + "masculine": [ + { + "def": "Mouth." + } + ] + } + } + }, + { + "base": "fumiga", + "pos": { + "noun": { + "feminine": [ + { + "def": "Claw." + } + ] + } + } + }, + { + "base": "funami", + "pos": { + "noun": { + "neuter": [ + { + "def": "Sheep or other wool-producing herd creature." + } + ] + }, + "verb": { + "feminine": [ + { + "def": "To shave or remove hair." + } + ] + } + } + }, + { + "base": "gabuchigika", + "pos": { + "noun": { + "masculine": [ + { + "def": "1. A large area of land claimed by a clan." + }, + { + "def": "120 [gachigyukōga](../ga/gachigyukōga.markdown)." + } + ] + } + } + }, + { + "base": "gachi", + "pos": { + "verb": { + "masculine": [ + { + "def": "Eat." + } + ] + } + } + }, + { + "base": "gachigyukoga", + "pos": { + "noun": { + "neuter": [ + { + "def": "A \"plot\" of land one chimōga by one gyukōga." + }, + { + "def": "OOW: 1 acre." + } + ] + } + } + }, + { + "base": "gamekoji", + "pos": { + "noun": { + "neuter": [ + { + "def": "A miscarriage." + } + ] + } + } + }, + { + "base": "gamibita", + "pos": { + "adj": [ + { + "def": "A magical talent that charges a physical item with explosive force.\n", + "reference": [ + { + "excerpt": "And then the dépa was there, sprinting in a circle around Chimípu. Her movements accelerated, and a vortex of dust rose up around her, blurring her form. The sling formed a disk as it spun with her.\nShe stopped suddenly and released one end of the cloth. The rock shot out and crossed the valley in an instant. It left ripples in the air as raw power rolled off the stone. A crack of air shook Rutejìmo from its passing. The stone shattered at the base of a nest and there was a shower of blood and feathers.\n", + "identifier": "0100-00", + "title": "Sand and Blood 17", + "url": "https://fedran.com/sand-and-bone/chapter-17/" + } + ] + } + ], + "noun": { + "feminine": [ + { + "def": "A bang or sharp noise.\n" + }, + { + "def": "Firecrackers or celebratory explosions.\n" + } + ], + "masculine": [ + { + "def": "A large explosion that does significant damage.\n" + } + ] + } + } + }, + { + "base": "gatiru", + "pos": { + "noun": { + "neuter": [ + { + "def": "A wild dog-like creature." + }, + { + "def": "A coyote." + } + ] + }, + "verb": { + "masculine": [ + { + "def": "To rummage around scraps for food." + } + ] + } + } + }, + { + "base": "ge", + "pos": { + "adj": [ + { + "def": "My clan." + } + ] + } + }, + { + "base": "gen", + "pos": { + "noun": { + "feminine": [ + { + "def": "As *gèn* (noun 1), but as a feminine clan spirit." + } + ], + "masculine": [ + { + "def": "My clan, when referencing a clan with a masculine spirit." + } + ], + "neuter": [ + { + "def": "As *gèn* (noun 1), but as a neuter clan spirit." + } + ] + } + } + }, + { + "base": "gichyoku", + "pos": { + "noun": { + "feminine": [ + { + "def": "A cutting or slicing force or energy.\n" + } + ] + } + } + }, + { + "base": "gidajimo", + "pos": { + "noun": { + "feminine": [ + { + "def": "As *gidajìmo* (noun 1), but where the female is the primary or sole caregiver of any children." + } + ], + "masculine": [ + { + "def": "A marriage between an adult man and woman where the male is the primary or only caretaker for any children (including step-children)." + } + ], + "neuter": [ + { + "def": "As *gidajìmo* (noun 1), but where either both members are equal in raising children or the marriage has not produced any children." + } + ] + }, + "verb": { + "feminine": [ + { + "def": "A quiet or private marriage ceremony." + } + ], + "masculine": [ + { + "def": "A marriage ceremony performed with a significant amount of ceremony, guests, or planning." + } + ] + } + } + }, + { + "base": "gimetsui", + "pos": { + "verb": { + "masculine": [ + { + "def": "To give birth to a living child." + } + ], + "neuter": [ + { + "def": "To lay eggs or other non-live birth." + } + ] + } + } + }, + { + "base": "gitamafu", + "pos": { + "noun": { + "feminine": [ + { + "def": "Shared senses among two or more people.\n" + } + ] + }, + "verb": { + "feminine": [ + { + "def": "To recieve senses from an external source.\n" + } + ], + "masculine": [ + { + "def": "To project senses or perceptions into someone else.\n" + } + ] + } + } + }, + { + "base": "gitopoga", + "pos": { + "verb": { + "masculine": [ + { + "def": "To have unenthusiastic sex solely for purposes of reproduction." + } + ] + } + } + }, + { + "base": "gokote", + "pos": { + "noun": { + "neuter": [ + { + "def": "A solar week consisting of eight rōte." + } + ] + } + } + }, + { + "base": "gomata", + "pos": { + "noun": { + "neuter": [ + { + "def": "1/128 of a māsa." + }, + { + "def": "OOW: a \"minute\"." + } + ] + } + } + }, + { + "base": "gupa", + "pos": { + "verb": { + "masculine": [ + { + "def": "Gulp, drink." + } + ] + } + } + }, + { + "base": "gupiji", + "pos": { + "noun": { + "neuter": [ + { + "def": "Valley" + } + ] + } + } + }, + { + "base": "gyukoga", + "pos": { + "noun": { + "neuter": [ + { + "def": "1. 80 chimōga." + }, + { + "def": "1/9th the distance an average person can walk in a māsa." + }, + { + "def": "OOW: 1 mile." + } + ] + } + } + }, + { + "base": "hachifobu", + "pos": { + "noun": { + "neuter": [ + { + "def": "The trial when a teenager about to manifest power and various spirits present themselves to see if there is a natural fit.\n" + } + ] + } + } + }, + { + "base": "hachifu", + "pos": { + "noun": { + "neuter": [ + { + "def": "Path, road, trail." + } + ] + } + } + }, + { + "base": "hamani", + "pos": { + "noun": { + "neuter": [ + { + "def": "A mountain lion." + }, + { + "def": "A large cat." + } + ] + }, + "verb": { + "masculine": [ + { + "def": "To seek out a romantic or sexual partner during nocturnal events." + } + ] + } + } + }, + { + "base": "hanako", + "pos": { + "noun": { + "feminine": [ + { + "def": "A large horn of a creature." + } + ], + "masculine": [ + { + "def": "A bighorn sheep." + } + ] + }, + "verb": { + "masculine": [ + { + "def": "To butt or interject into a conversation." + } + ] + } + } + }, + { + "base": "hayoka", + "pos": { + "adj": [ + { + "def": "Good, favorable." + } + ] + } + }, + { + "base": "heru", + "pos": { + "noun": { + "feminine": [ + { + "def": "A mare or female horse." + } + ], + "masculine": [ + { + "def": "A stallion or male horse." + } + ], + "neuter": [ + { + "def": "A foal or young horse." + } + ] + } + } + }, + { + "base": "herudaki", + "pos": { + "noun": { + "neuter": [ + { + "def": "The weight of a horse." + }, + { + "def": "30 [madèku](../ma/madèku.markdown)." + }, + { + "def": "OOW: 489.6 kg." + } + ] + } + } + }, + { + "base": "hichifuma", + "pos": { + "verb": { + "neuter": [ + { + "def": "The effort to keep the nature of spirits and the rite of passage secret from children to facilitate the connection to a clan spirit." + } + ] + } + } + }, + { + "base": "hikomini", + "pos": { + "noun": { + "feminine": [ + { + "def": "A lesser clan spirit, one that gains power from one of the *hikomìni* (noun 1)." + } + ], + "masculine": [ + { + "def": "One of the three greater spirits of the desert: Tachìra, Chobìre, or Mifúno." + } + ] + } + } + }, + { + "base": "hinoto", + "pos": { + "noun": { + "feminine": [ + { + "def": "Tail." + } + ] + } + } + }, + { + "base": "hiropadu", + "pos": { + "noun": { + "neuter": [ + { + "def": "Marks left behind by hooved creatures." + } + ] + }, + "verb": { + "masculine": [ + { + "def": "To kick something with great force." + } + ] + } + } + }, + { + "base": "hofuma", + "pos": { + "noun": { + "masculine": [ + { + "def": "A hawk or raptor." + }, + { + "def": "A large hunting bird." + } + ] + } + } + }, + { + "base": "hogano", + "pos": { + "adj": [ + { + "def": "Magical powers that manifest through the combined presence of related creatures as opposed to individual members. Common talents include telepathy, mental control, and projected senses through the members of the species.\n", + "example": [ + { + "en": "Legendary are the herd powers of Waryōni.", + "miw": "oa zeshitómi e hogano waryōni" + } + ] + } + ], + "noun": { + "masculine": [ + { + "def": "A group of anything running around making a great deal of noise and distration.\n", + "example": [ + { + "en": "The girls of our clan run like a herd of horses.", + "miw": "oe ge nágo i fapòdi a hogáno" + } + ] + } + ] + } + } + }, + { + "base": "horanakifu", + "pos": { + "verb": { + "feminine": [ + { + "def": "To see solace away from others." + }, + { + "def": "To sequester oneself for contemplation." + } + ] + } + } + }, + { + "base": "hupodi", + "pos": { + "verb": { + "feminine": [ + { + "def": "Come, approach." + } + ] + } + } + }, + { + "base": "hyobechimo", + "pos": { + "noun": { + "feminine": [ + { + "def": "The ritual of performing *hyobechìmo* (verb 1)." + }, + { + "def": "The rite of passage for young adults." + } + ] + }, + "verb": { + "masculine": [ + { + "def": "The process of putting a young adult in mortal danger to reveal their clan and powers." + }, + { + "def": "To put someone in mortal danger to reveal their true nature." + }, + { + "def": "To stress test something." + } + ] + } + } + }, + { + "base": "hyukadi", + "pos": { + "verb": { + "feminine": [ + { + "def": "To volunteer or give assistance." + } + ] + } + } + }, + { + "base": "ikugafu", + "pos": { + "adj": [ + { + "def": "To be unkillable." + }, + { + "def": "To be impossible to get rid of." + } + ], + "noun": { + "neuter": [ + { + "def": "A cockroach." + } + ] + } + } + }, + { + "base": "iryoga", + "pos": { + "noun": { + "neuter": [ + { + "def": "The moment of despair or longing when someone's associated celestial body goes below the horizon and they lose their magical powers.\n" + } + ] + }, + "verb": { + "masculine": [ + { + "def": "The dread that rises when one's celestial body is about to go below the horizon.\n" + } + ] + } + } + }, + { + "base": "itochyoku", + "pos": { + "verb": { + "feminine": [ + { + "def": "The teleport or move without crossing the intervening distance.\n", + "reference": [ + { + "excerpt": "“There is no thanks,” she said in her wavering voice, “because this is the way it is. Go on, I will help you break fast.” She turned, and then she was gone. He didn’t see how she moved, only that one moment she was standing in front of him and the other she was a rod away, kneeling at an old fire pit.\n", + "identifier": "0100-02", + "title": "Sand and Bone 22", + "url": "https://fedran.com/sand-and-bone/chapter-22/" + } + ] + }, + { + "def": "The move through shadows or mirrors.\n" + } + ] + } + } + }, + { + "base": "jimo", + "pos": { + "noun": { + "neuter": [ + { + "def": "Cloth, fabric, or textile." + } + ] + }, + "verb": { + "feminine": [ + { + "def": "To wrap or bind in cloth or fabrics." + } + ] + } + } + }, + { + "base": "jokidofu", + "pos": { + "noun": { + "neuter": [ + { + "def": "Magical resonance." + }, + { + "def": "The field that surrounds mages and artifacts." + } + ] + }, + "verb": { + "feminine": [ + { + "def": "To create discomfort in someone else using magical resonance." + } + ], + "masculine": [ + { + "def": "To create pain in someone else using magical resonance." + } + ] + } + } + }, + { + "base": "jokofatsu", + "pos": { + "noun": { + "neuter": [ + { + "def": "A script that has vowels to the right of the consonants." + }, + { + "def": "The script of the Western part of the Mifúno desert." + } + ] + }, + "verb": { + "feminine": [ + { + "def": "To write in a *jokofātsu* script." + } + ] + } + } + }, + { + "base": "jyomyo", + "pos": { + "pro": [ + { + "def": "Many." + } + ] + } + }, + { + "base": "jyon", + "pos": { + "adj": [ + { + "def": "Yellow." + } + ] + } + }, + { + "base": "jyopa", + "pos": { + "num": [ + { + "def": "One." + } + ] + } + }, + { + "base": "jyore", + "pos": { + "num": [ + { + "def": "Two." + } + ] + } + }, + { + "base": "jyoshya", + "pos": { + "adj": [ + { + "def": "All." + } + ] + } + }, + { + "base": "kadu", + "pos": { + "noun": { + "feminine": [ + { + "def": "Hand." + } + ] + } + } + }, + { + "base": "kafu", + "pos": { + "verb": { + "feminine": [ + { + "def": "Love, affection." + } + ], + "masculine": [ + { + "def": "Passion." + } + ] + } + } + }, + { + "base": "kafuchi", + "pos": { + "adj": [ + { + "def": "A spiritual energy that is shared and pools.\n" + }, + { + "def": "A manifestion of magic where multiple clan members see the same spirit.\n" + } + ], + "noun": { + "feminine": [ + { + "def": "A shared memory or magic between close friends or clan members.\n" + } + ] + } + } + }, + { + "base": "keka", + "pos": { + "noun": { + "feminine": [ + { + "def": "The amount of displacement of an adult woman's fist." + }, + { + "def": "OOW: A volume of liquid equal to 305 mL." + } + ] + } + } + }, + { + "base": "keri", + "pos": { + "verb": { + "masculine": [ + { + "def": "Stand." + } + ] + } + } + }, + { + "base": "kifi", + "pos": { + "verb": { + "feminine": [ + { + "def": "Give, hand over." + } + ] + } + } + }, + { + "base": "kifomakoji", + "pos": { + "verb": { + "feminine": [ + { + "def": "To lose a loved one to death." + } + ] + } + } + }, + { + "base": "kiko", + "pos": { + "noun": { + "masculine": [ + { + "def": "Fire, burn." + } + ] + } + } + }, + { + "base": "kikochyo", + "pos": { + "noun": { + "neuter": [ + { + "def": "Ashes of a fire." + } + ] + } + } + }, + { + "base": "kikofuna", + "pos": { + "noun": { + "neuter": [ + { + "def": "The minimum area of ash produced from a funeral fire to be considered holy." + }, + { + "def": "OOW: 80 m^2." + } + ] + } + } + }, + { + "base": "kimu", + "pos": { + "verb": { + "feminine": [ + { + "def": "Sit." + } + ] + } + } + }, + { + "base": "kireki", + "pos": { + "noun": { + "masculine": [ + { + "def": "Tree." + } + ] + } + } + }, + { + "base": "kishi", + "pos": { + "noun": { + "masculine": [ + { + "def": "Male, masculine." + } + ] + } + } + }, + { + "base": "kochozo", + "pos": { + "verb": { + "neuter": [ + { + "def": "Sleep." + } + ] + } + } + }, + { + "base": "kodi", + "pos": { + "verb": { + "neuter": [ + { + "def": "Lie down." + } + ] + } + } + }, + { + "base": "kodo", + "pos": { + "noun": { + "feminine": [ + { + "def": "Stone." + } + ] + } + } + }, + { + "base": "kodoshyo", + "pos": { + "noun": { + "masculine": [ + { + "def": "Mountain." + } + ] + } + } + }, + { + "base": "koji", + "pos": { + "verb": { + "neuter": [ + { + "def": "Die, death, kill." + } + ] + } + } + }, + { + "base": "kojifu", + "pos": { + "verb": { + "neuter": [ + { + "def": "Die." + } + ] + } + } + }, + { + "base": "kokeku", + "pos": { + "noun": { + "masculine": [ + { + "def": "The amount of water an average person needs for a single day in the desert." + }, + { + "def": "A volume of liquid equal to 13 [kéka](../ke/keka.markdown)." + }, + { + "def": "OOW: A volume of liquid equal to 4 L." + } + ] + } + } + }, + { + "base": "komiyaza", + "pos": { + "noun": { + "neuter": [ + { + "def": "The temperature where water boils." + }, + { + "def": "OOW: 100 C." + } + ] + } + } + }, + { + "base": "koroma", + "pos": { + "adj": [ + { + "def": "Cursed." + } + ] + } + }, + { + "base": "kufo", + "pos": { + "noun": { + "neuter": [ + { + "def": "A mouse or rat." + } + ] + }, + "verb": { + "feminine": [ + { + "def": "A worm into a tight space." + } + ], + "masculine": [ + { + "def": "To make oneself at home when unwelcomed." + } + ] + } + } + }, + { + "base": "kuga", + "pos": { + "verb": { + "neuter": [ + { + "def": "Hear." + } + ] + } + } + }, + { + "base": "kyoda", + "pos": { + "verb": { + "feminine": [ + { + "def": "To ride a creature over distances." + } + ], + "masculine": [ + { + "def": "To charge a creature, such as into battle." + }, + { + "def": "To sprint or race a creature while riding it." + } + ], + "neuter": [ + { + "def": "To ride poorly or without skill." + }, + { + "def": "To learn how to ride a creature." + } + ] + } + } + }, + { + "base": "kyon", + "pos": { + "noun": { + "neuter": [ + { + "def": "Red." + } + ] + } + } + }, + { + "base": "kyumogo", + "pos": { + "noun": { + "neuter": [ + { + "def": "A measurement of distance." + }, + { + "def": "A mile." + } + ] + }, + "verb": { + "feminine": [ + { + "def": "To measure or pace something out that is approximately a *kyumōgo* distance." + } + ] + } + } + }, + { + "base": "ma", + "pos": { + "adj": [ + { + "def": "Me, I, mine." + } + ] + } + }, + { + "base": "madeku", + "pos": { + "noun": { + "masculine": [ + { + "def": "A weight of 16 dātsu used for measuring heavy items and people." + }, + { + "def": "OOW: 16.32 kg." + } + ] + } + } + }, + { + "base": "man", + "pos": { + "noun": { + "feminine": [ + { + "def": "As *màn* (noun 1), but as a feminine." + } + ], + "masculine": [ + { + "def": "Myself, when referencing a masculine person." + } + ], + "neuter": [ + { + "def": "As *màn* (noun 1), but as a neuter." + } + ] + } + } + }, + { + "base": "masa", + "pos": { + "noun": { + "neuter": [ + { + "def": "1/8th of a rōte or solar day." + } + ] + } + } + }, + { + "base": "masotoru", + "pos": { + "adj": [ + { + "def": "Concerning or using electrical-based magic.\n" + } + ], + "noun": { + "masculine": [ + { + "def": "Lightning formed from a dust storm.\n" + } + ] + } + } + }, + { + "base": "mekoshi", + "pos": { + "adj": [ + { + "def": "To perform an action humbly or without pride." + } + ] + } + }, + { + "base": "michi", + "pos": { + "verb": { + "masculine": [ + { + "def": "Smile." + } + ] + } + } + }, + { + "base": "mifuno", + "pos": { + "noun": { + "feminine": [ + { + "def": "The desert spirit." + } + ], + "neuter": [ + { + "def": "The desrt." + } + ] + } + } + }, + { + "base": "miga", + "pos": { + "noun": { + "feminine": [ + { + "def": "Meat, flesh." + } + ] + } + } + }, + { + "base": "minafatsu", + "pos": { + "noun": { + "neuter": [ + { + "def": "Written words or letters of the desert tongue." + } + ] + } + } + }, + { + "base": "miwafu", + "pos": { + "noun": { + "neuter": [ + { + "def": "Words of the desert." + } + ] + } + } + }, + { + "base": "mo", + "pos": { + "pro": [ + { + "def": "What, who, whom, question placeholder." + } + ] + } + }, + { + "base": "mobipo", + "pos": { + "noun": { + "masculine": [ + { + "def": "A crow or blackbird." + } + ] + }, + "verb": { + "neuter": [ + { + "def": "To make loud, persistent noises." + } + ] + } + } + }, + { + "base": "monika", + "pos": { + "adj": [ + { + "def": "A magical force that accelerates or speeds a character.\n", + "reference": [ + { + "excerpt": "The ground shook as a blast of wind blew and the flash of a bird raced past them. Rocks tore at Rutejìmo's side and face. Coughing, he managed to focus just as Desòchu caught the third bowl. The other two rested in his other hand. Wind eddied around Rutejìmo's older brother as he gracefully spun around to prevent the food from slipping.\nDesòchu glanced up and then stepped forward. He disappeared in a cloud of dust, and a plume of wind streaked to the switchback at the end of the trail and up toward them.\n", + "identifier": "0100-00", + "title": "Sand and Blood 4", + "url": "https://fedran.com/sand-and-bone/chapter-04/" + } + ] + } + ], + "adv": [ + { + "def": "To move or run very fast.\n" + } + ] + } + }, + { + "base": "mujichi", + "pos": { + "adj": [ + { + "def": "Dry, powdery" + } + ] + } + }, + { + "base": "mukisa", + "pos": { + "noun": { + "feminine": [ + { + "def": "a fine sand that is difficult to walk along because it is shifting" + } + ] + } + } + }, + { + "base": "munisa", + "pos": { + "noun": { + "masculine": [ + { + "def": "a coarse grain sand that grates against bare flesh but doesn't blow in light winds" + } + ] + } + } + }, + { + "base": "musa", + "pos": { + "noun": { + "feminine": [ + { + "def": "Sand (generic)." + } + ] + } + } + }, + { + "base": "mushigi", + "pos": { + "noun": { + "masculine": [ + { + "def": "Tongue." + } + ] + } + } + }, + { + "base": "myoregu", + "pos": { + "noun": { + "masculine": [ + { + "def": "Moron." + } + ] + } + } + }, + { + "base": "myukira", + "pos": { + "noun": { + "feminine": [ + { + "def": "Leaf." + } + ] + } + } + }, + { + "base": "netune", + "pos": { + "noun": { + "feminine": [ + { + "def": "A legacy left behind when someone dies.\n" + } + ], + "neuter": [ + { + "def": "The tendency for a child to become associated with the same clan as as their mother.\n" + } + ] + } + } + }, + { + "base": "norikuchyofune", + "pos": { + "verb": { + "masculine": [ + { + "def": "The final burst of energy when the last member of a clan dies.\n" + }, + { + "def": "The moment when a clan spirit dies with the last living member's death.\n" + } + ] + } + } + }, + { + "base": "nago", + "pos": { + "noun": { + "masculine": [ + { + "def": "Girl child." + } + ] + } + } + }, + { + "base": "nakifu", + "pos": { + "noun": { + "feminine": [ + { + "def": "A short poem." + } + ], + "masculine": [ + { + "def": "A long or epic poem." + } + ] + } + } + }, + { + "base": "nesa", + "pos": { + "adj": [ + { + "def": "Unhappily, miserably." + } + ] + } + }, + { + "base": "nesakafu", + "pos": { + "verb": { + "neuter": [ + { + "def": "To be unhappily in love." + }, + { + "def": "To be miserably happy." + } + ] + } + } + }, + { + "base": "nibaba", + "pos": { + "noun": { + "feminine": [ + { + "def": "Breasts." + } + ] + } + } + }, + { + "base": "nibapu", + "pos": { + "noun": { + "masculine": [ + { + "def": "Liver" + } + ] + } + } + }, + { + "base": "nichiza", + "pos": { + "noun": { + "masculine": [ + { + "def": "Belly." + } + ] + } + } + }, + { + "base": "nido", + "pos": { + "noun": { + "feminine": [ + { + "def": "Neck." + } + ] + } + } + }, + { + "base": "nireigi", + "pos": { + "adj": [ + { + "def": "New, freshly made." + } + ] + } + }, + { + "base": "nonyu", + "pos": { + "noun": { + "feminine": [ + { + "def": "Discomfort." + } + ], + "masculine": [ + { + "def": "Agony, overwhelming pain." + } + ] + }, + "verb": { + "neuter": [ + { + "def": "To live with pain or agony." + } + ] + } + } + }, + { + "base": "nyan", + "pos": { + "adj": [ + { + "def": "Blue." + } + ] + } + }, + { + "base": "nyokiru", + "pos": { + "noun": { + "masculine": [ + { + "def": "Root." + } + ] + } + } + }, + { + "base": "ogapi", + "pos": { + "adj": [ + { + "def": "To be related to a group of children." + } + ], + "noun": { + "neuter": [ + { + "def": "A flea." + }, + { + "def": "A bedbug." + } + ] + } + } + }, + { + "base": "ogimo", + "pos": { + "noun": { + "masculine": [ + { + "def": "A camel or other hump-backed creature." + } + ] + }, + "verb": { + "feminine": [ + { + "def": "To carry a grudge or conversation for years." + } + ] + } + } + }, + { + "base": "oteza", + "pos": { + "noun": { + "neuter": [ + { + "def": "A spider or another arachnid." + } + ] + }, + "verb": { + "feminine": [ + { + "def": "To work on many projects at the same time." + } + ] + } + } + }, + { + "base": "pachyun", + "pos": { + "noun": { + "neuter": [ + { + "def": "A smooth lizard." + } + ] + }, + "verb": { + "feminine": [ + { + "def": "To adapt to circumstances." + } + ] + } + } + }, + { + "base": "padu", + "pos": { + "noun": { + "masculine": [ + { + "def": "Foot." + } + ] + } + } + }, + { + "base": "parechyo", + "pos": { + "noun": { + "neuter": [ + { + "def": "Knee." + } + ] + } + } + }, + { + "base": "peji", + "pos": { + "verb": { + "feminine": [ + { + "def": "To temporarily raise something." + } + ] + } + } + }, + { + "base": "pibafu", + "pos": { + "noun": { + "masculine": [ + { + "def": "Blood." + } + ] + } + } + }, + { + "base": "pimayazu", + "pos": { + "noun": { + "neuter": [ + { + "def": "The temperature where water freezes." + }, + { + "def": "OOW: 0 C." + } + ] + } + } + }, + { + "base": "pimiga", + "pos": { + "noun": { + "neuter": [ + { + "def": "Bone." + } + ] + } + } + }, + { + "base": "pocho", + "pos": { + "noun": { + "feminine": [ + { + "def": "A discomforting fear, one that does not stop someone." + } + ], + "masculine": [ + { + "def": "An overwhelming fear or terror." + } + ] + } + } + }, + { + "base": "podi", + "pos": { + "verb": { + "masculine": [ + { + "def": "Walk." + } + ] + } + } + }, + { + "base": "poga", + "pos": { + "verb": { + "masculine": [ + { + "def": "To participate in loud or enthusiastic sex." + } + ] + } + } + }, + { + "base": "pokemon", + "pos": { + "noun": { + "feminine": [ + { + "def": "The obsessive need to collect or gather one of everything." + } + ] + }, + "verb": { + "feminine": [ + { + "def": "The process of collecting or gathering a collection." + } + ] + } + } + }, + { + "base": "poroneso", + "pos": { + "noun": { + "neuter": [ + { + "def": "Kin-killer." + } + ] + } + } + }, + { + "base": "pu", + "pos": { + "pro": [ + { + "def": "your clan" + } + ] + } + }, + { + "base": "pumakyoni", + "pos": { + "adv": [ + { + "def": "To perform an action that phases through solid matter.\n", + "reference": [ + { + "excerpt": "Gichyòbi jumped in front of Rutejìmo and broke the line of sight. His leap had carried him over the charging warriors. He hit hard, swinging his weapon down toward the ground.\nInstead of bouncing off the earth, the blade easily slid into the stone as if it wasn’t there. Gichyòbi’s gauntlet dipped into the ground as he swung forward. Rutejìmo followed the movement through Gichyòbi’s shoulders before the weapon came up in front of him.\n", + "identifier": "0100-02", + "title": "Sand and Bone 23", + "url": "https://fedran.com/sand-and-bone/chapter-23/" + } + ] + } + ], + "verb": { + "feminine": [ + { + "def": "To phase or walk through solid matter.\n" + } + ] + } + } + }, + { + "base": "puruna", + "pos": { + "adv": [ + { + "def": "To perform an action with flying magic.\n" + } + ], + "noun": { + "masculine": [ + { + "def": "To fly using magic.\n" + } + ] + } + } + }, + { + "base": "pyabi", + "pos": { + "noun": { + "neuter": [ + { + "def": "The primary currency of the [Mifúno Desert](mifúno)." + } + ] + } + } + }, + { + "base": "pyadashimu", + "pos": { + "noun": { + "masculine": [ + { + "def": "Clockwork mechanism, something is powered by winding up." + } + ] + } + } + }, + { + "base": "pyuchyu", + "pos": { + "adj": [ + { + "def": "Stinky, has a stench." + } + ] + } + }, + { + "base": "ragofuchino", + "pos": { + "noun": { + "feminine": [ + { + "def": "Salt water." + } + ], + "masculine": [ + { + "def": "An ocean or sea." + }, + { + "def": "A massive body of water." + } + ] + } + } + }, + { + "base": "raki", + "pos": { + "noun": { + "feminine": [ + { + "def": "Skin." + } + ] + } + } + }, + { + "base": "rakiki", + "pos": { + "noun": { + "masculine": [ + { + "def": "Bark of a tree." + } + ] + } + } + }, + { + "base": "remigu", + "pos": { + "noun": { + "feminine": [ + { + "def": "Grease, fat." + } + ] + } + } + }, + { + "base": "richi", + "pos": { + "noun": { + "feminine": [ + { + "def": "A solar cycle between 44 and 47 days." + }, + { + "def": "A solar \"month\"." + } + ] + } + } + }, + { + "base": "rimu", + "pos": { + "noun": { + "feminine": [ + { + "def": "Water." + } + ] + } + } + }, + { + "base": "rimuhi", + "pos": { + "adj": [ + { + "def": "Small and unassuming." + } + ], + "noun": { + "neuter": [ + { + "def": "A small, smooth lizard." + }, + { + "def": "A gecko." + } + ] + } + } + }, + { + "base": "rimyo", + "pos": { + "adj": [ + { + "def": "Unfocused or wandering." + } + ], + "noun": { + "neuter": [ + { + "def": "A river or stream." + } + ] + }, + "verb": { + "masculine": [ + { + "def": "To have a meandering conversation." + } + ] + } + } + }, + { + "base": "rocho", + "pos": { + "noun": { + "feminine": [ + { + "def": "A long-term anger." + } + ], + "masculine": [ + { + "def": "A furious rage or anger." + }, + { + "def": "A screaming fighting." + } + ] + }, + "verb": { + "feminine": [ + { + "def": "To have a passive-aggressive fight." + }, + { + "def": "To fight without revealing the purpose of the fight." + } + ], + "masculine": [ + { + "def": "To have a screaming fight." + }, + { + "def": "To fight for the sake of fighting." + } + ] + } + } + }, + { + "base": "romoga", + "pos": { + "noun": { + "neuter": [ + { + "def": "A measurement of distance." + }, + { + "def": "A surveyor's rod of 16.5 feet." + } + ] + }, + "verb": { + "feminine": [ + { + "def": "To measure out a distance that is approximately a [romōga](../ro/romōga.markdown) away." + }, + { + "def": "To measure something out in terms of [romōga](../ro/romōga.markdown)." + } + ] + } + } + }, + { + "base": "rote", + "pos": { + "noun": { + "neuter": [ + { + "def": "A solar day from sunrise to sunrise." + } + ] + } + } + }, + { + "base": "rotefuchi", + "pos": { + "noun": { + "masculine": [ + { + "def": "The period where the sun is below the horizon." + }, + { + "def": "When sun-based powers don't work." + } + ] + } + } + }, + { + "base": "rube", + "pos": { + "noun": { + "feminine": [ + { + "def": "A small quantity of water." + } + ], + "masculine": [ + { + "def": "A large quantity of water." + } + ] + } + } + }, + { + "base": "rukan", + "pos": { + "noun": { + "neuter": [ + { + "def": "An iguana." + }, + { + "def": "A dry lizard with large scales." + } + ] + }, + "verb": { + "feminine": [ + { + "def": "To be aware of events in multiple directions." + } + ] + } + } + }, + { + "base": "runakomin", + "pos": { + "noun": { + "neuter": [ + { + "def": "A child playing with imaginary things or people." + }, + { + "def": "Creativity in a child." + } + ] + } + } + }, + { + "base": "rurafu", + "pos": { + "noun": { + "neuter": [ + { + "def": "A manufactured or created well to provide water." + } + ] + }, + "verb": { + "feminine": [ + { + "def": "To persistently drive or hammer." + } + ], + "masculine": [ + { + "def": "To violently penetrate or impale." + } + ] + } + } + }, + { + "base": "ryakochyani", + "pos": { + "noun": { + "neuter": [ + { + "def": "An underground cave or opening." + } + ] + } + } + }, + { + "base": "ryarena", + "pos": { + "noun": { + "feminine": [ + { + "def": "As *ryarèna* (noun 1), but female." + }, + { + "def": "As *ryarèna* (noun 2), but female." + } + ], + "masculine": [ + { + "def": "A male of a clan who has significantly more magical powers than average." + }, + { + "def": "A male warrior or defender of a clan." + } + ] + } + } + }, + { + "base": "ryon", + "pos": { + "noun": { + "neuter": [ + { + "def": "The color white." + } + ] + } + } + }, + { + "base": "ryuma", + "pos": { + "noun": { + "neuter": [ + { + "def": "An oasis or a place to rest." + } + ] + }, + "verb": { + "feminine": [ + { + "def": "To create a place of safety or rest." + } + ] + } + } + }, + { + "base": "sakomichi", + "pos": { + "noun": { + "feminine": [ + { + "def": "The clan leader in a battle or war." + } + ], + "masculine": [ + { + "def": "The leader of one side of a battle or war." + } + ] + } + } + }, + { + "base": "seku", + "pos": { + "verb": { + "masculine": [ + { + "def": "Speak." + } + ] + } + } + }, + { + "base": "semura", + "pos": { + "noun": { + "masculine": [ + { + "def": "The flare of heat and energy that forms with powerful uses of magic.\n", + "reference": [ + { + "excerpt": "Light burst from an impact, and he saw the runes of Chimípu’s blade flare with the clash against the other woman’s spike. Each letter was bright as sunlight but faded instantly. With the next attack, the runes flashed again. As Chimípu rained down blows, their attacks became a lighting storm of attack and parry.\n", + "identifier": "0100-00", + "title": "Sand and Ash 18", + "url": "https://fedran.com/sand-and-ash/chapter-18/" + } + ] + } + ] + } + } + }, + { + "base": "shifin", + "pos": { + "noun": { + "feminine": [ + { + "def": "Mildly shamed." + } + ], + "masculine": [ + { + "def": "A deep and humiliating shame." + } + ] + } + } + }, + { + "base": "shikafu", + "pos": { + "noun": { + "neuter": [ + { + "def": "Unrequited love or a crush." + } + ] + } + } + }, + { + "base": "sofuki", + "pos": { + "noun": { + "masculine": [ + { + "def": "A volume of a standard bottle of wine." + }, + { + "def": "A volume of liquid equal to 3.3 [kéka](../ke/keka.markdown)." + }, + { + "def": "OOW: A volume of liquid equal to 1,020 mL." + } + ] + } + } + }, + { + "base": "soramifu", + "pos": { + "noun": { + "masculine": [ + { + "def": "The flare of heat and energy that bursts out of powerful warriors when they experience strong emotions.\n", + "reference": [ + { + "excerpt": "But, despite Tsubàyo and the massive horse stepping into the shadows just moments before, she hit nothing.\n“Damn that bastard!” Chimípu threw back her head and screamed in rage. It was a high-pitched screech that sounded uncomfortably like that of a bird. Her body ignited with a golden flame that burned away the shadows around her. She became a blinding sun in an instant as a translucent dépa superimposed itself over her body. The image expanded to twice her height before it dissipated in swirls of golden sparks.\n", + "identifier": "0100-00", + "title": "Sand and Ash 21", + "url": "https://fedran.com/sand-and-ash/chapter-21/" + } + ] + } + ] + } + } + }, + { + "base": "sugo", + "pos": { + "noun": { + "feminine": [ + { + "def": "Know, knowledge." + } + ] + } + } + }, + { + "base": "ta", + "pos": { + "pro": [ + { + "def": "This. Add \"-n\" for final." + } + ] + } + }, + { + "base": "tachira", + "pos": { + "noun": { + "masculine": [ + { + "def": "The sun spirit." + } + ], + "neuter": [ + { + "def": "The sun." + } + ] + } + } + }, + { + "base": "taigona", + "pos": { + "noun": { + "feminine": [ + { + "def": "The transfer of energy from one of the great spirit, into a clan spirit, and then into an individual.\n" + } + ] + } + } + }, + { + "base": "tanifatsu", + "pos": { + "noun": { + "neuter": [ + { + "def": "A script that has vowels underneath the consonants." + }, + { + "def": "The script of the Eastern part of the Mifúno desert." + } + ] + }, + "verb": { + "feminine": [ + { + "def": "To write in a *tanifātsu* script." + } + ] + } + } + }, + { + "base": "tata", + "pos": { + "pro": [ + { + "def": "That, use \"-n\" for final." + } + ] + } + }, + { + "base": "tazagu", + "pos": { + "noun": { + "feminine": [ + { + "def": "A fighting spike." + } + ] + } + } + }, + { + "base": "te", + "pos": { + "pro": [ + { + "def": "They, them, theirs." + } + ] + } + }, + { + "base": "tejoki", + "pos": { + "adj": [ + { + "def": "Blocking or obstructing." + } + ], + "noun": { + "masculine": [ + { + "def": "A boulder or large rock." + } + ] + }, + "verb": { + "neuter": [ + { + "def": "To block or obstruct the flow of water or liquid." + }, + { + "def": "To obstruct a conversation." + } + ] + } + } + }, + { + "base": "toki", + "pos": { + "noun": { + "feminine": [ + { + "def": "Female." + } + ] + } + } + }, + { + "base": "tokishi", + "pos": { + "noun": { + "feminine": [ + { + "def": "People, folk." + } + ] + } + } + }, + { + "base": "tonufi", + "pos": { + "noun": { + "masculine": [ + { + "def": "\"King\", actually lord of an animal given by a spirit." + } + ] + } + } + }, + { + "base": "tora", + "pos": { + "noun": { + "masculine": [ + { + "def": "A male dog or hound." + }, + { + "def": "figaki tòra: A short-haired dog, typically feral." + } + ] + } + } + }, + { + "base": "tsu", + "pos": { + "pro": [ + { + "def": "\"their clan\"" + } + ] + } + }, + { + "base": "tsufi", + "pos": { + "noun": { + "masculine": [ + { + "def": "Big, large." + } + ] + } + } + }, + { + "base": "tsufoni", + "pos": { + "noun": { + "feminine": [ + { + "def": "Hair on a human or creature." + } + ] + } + } + }, + { + "base": "tsukire", + "pos": { + "noun": { + "feminine": [ + { + "def": "tsukíre" + } + ] + } + } + }, + { + "base": "tsukishi", + "pos": { + "noun": { + "masculine": [ + { + "def": "Magic that waxes or wanes with the user's emotional state.\n" + } + ] + } + } + }, + { + "base": "tsukokimu", + "pos": { + "verb": { + "neuter": [ + { + "def": "To answer a spiritual call from a clan member.\n", + "reference": [ + { + "excerpt": "A screech filled the air, radiating away from the sharp cliffs that surrounded Shimusogo Valley. Even ripped from a human's throat, the sound traveled further than a mere cry could ever match. It rolled along the sand dunes and past the short ridges of rocks peppering the desert around the valley.\nRutejìmo froze when the sound slammed into him. The screech demanded action, forcing him to focus on the cliffs that framed the home valley. The sound continued past him, but he heard it repeating in his head like a memory refusing to be forgotten. He clenched his hand, and the leather ball he was about to throw slipped from his palm and landed on the ground with a muted thud.\n", + "identifier": "0100-02", + "title": "Sand and Bone 1", + "url": "https://fedran.com/sand-and-bone/chapter-01/" + } + ] + } + ] + } + } + }, + { + "base": "tsumo", + "pos": { + "noun": { + "feminine": [ + { + "def": "Small" + } + ] + } + } + }, + { + "base": "udimo", + "pos": { + "noun": { + "neuter": [ + { + "def": "The moment of pleasure when someone's associated celestial body rises above the horizon.\n", + "reference": [ + { + "excerpt": "Even in the depths of his family cave, Rutejìmo knew the moment the sun rose above the horizon. The delicate tickle of power started at the tips of his toes and fingers before quickly coursing along his veins and bones. It reached his heart and blossomed into a euphoric wave of pleasure that quickened his breath and heart.\nAcross the valley, all the adults would be waking up in the same manner. They were all part of Shimusògo’s clan, and the dépa’s power came from the sun spirit, Tachìra.\nMapábyo let out a soft coo. She made the same sound every morning, and he never tired of hearing it. Rutejìmo rolled on his side and swept his leg forward, burrowing through the blankets until his shin thudded against the hard muscles of her leg. After so many years of sprinting across the desert, both of their legs were solid as rock.\n", + "identifier": "0100-02", + "title": "Sand and Bone 4", + "url": "https://fedran.com/sand-and-ash/chapter-04/" + } + ] + } + ] + }, + "verb": { + "masculine": [ + { + "def": "Anticipating when one's celestial body rises above the horizon.\n" + } + ] + } + } + }, + { + "base": "uichifogu", + "pos": { + "noun": { + "masculine": [ + { + "def": "The moment when someone first emotionally connects to their spirit and uses magic.\n", + "reference": [ + { + "excerpt": "He caught a hint of movement again. This time, he didn’t stop but glanced over without slowing.\nIt was a bird racing him, just a few paces ahead of him and to the right. The avian glided across the sand on long legs. Its three-toed claws didn’t leave a trail behind it or disturb the sands with the breeze of its passing. It kept its short wings tight to its body as it ran. A brown-and-white speckled pattern ran from its crest down to the end of the long feathers that formed the tail. It was a shimusogo dépa, the dune-runner bird Shimusògo took his name from.\nStartled, Rutejìmo slowed down, and between one step and the next, he lost sight of the bird. Desperate, he tried to maintain his speed while looking around but the dépa was gone. He slowed down further, peering over his shoulders for the bird.\nAs he came to a stumbling halt, all the joy fled out of him. In one moment, he was experiencing a high and in the next it was gone. It wasn’t until it was missing that he realized he was experiencing it. In its wake, a longing burned inside him. He wanted to run, something he had never felt before, and the urge sang through his veins.\nRutejìmo frowned and turned in a circle. The dépa was gone and Tsubàyo and Karawàbi were quickly outpacing him. The need to run burned hotter. In the back of his mind, he knew that if he just ran fast enough, the dépa would return. The knowledge, however, frightened him since he had never had an urge to run before, nor had he ever seen a dépa while running.\n", + "identifier": "0100-00", + "title": "Sand and Blood 10", + "url": "https://fedran.com/sand-and-ash/chapter-10/" + } + ] + } + ] + } + } + }, + { + "base": "wabi", + "pos": { + "noun": { + "neuter": [ + { + "def": "The relative social rank between two people, such as a underling and their boss, a child to a clan elder, or a younger to an older person." + } + ] + } + } + }, + { + "base": "wabipeji", + "pos": { + "verb": { + "feminine": [ + { + "def": "To temporarily raise the subject's social rank for purposes of speaking." + } + ] + } + } + }, + { + "base": "wafu", + "pos": { + "noun": { + "neuter": [ + { + "def": "Word or words, either spoken or written." + } + ] + } + } + }, + { + "base": "wamuchiso", + "pos": { + "verb": { + "feminine": [ + { + "def": "To magically bond with an animal or creature.\n" + } + ] + } + } + }, + { + "base": "wanu", + "pos": { + "noun": { + "neuter": [ + { + "def": "Name, named." + } + ] + } + } + }, + { + "base": "watefama", + "pos": { + "verb": { + "feminine": [ + { + "def": "To magically bond with a place or natural feature.\n" + } + ] + } + } + }, + { + "base": "we", + "pos": { + "part": [ + { + "def": "Indicates the beginning of a number sequence." + } + ] + } + }, + { + "base": "widahogu", + "pos": { + "verb": { + "feminine": [ + { + "def": "To lift or carry something using magic.\n" + }, + { + "def": "To move something through telekinesis.\n" + } + ] + } + } + }, + { + "base": "woi", + "pos": { + "noun": { + "neuter": [ + { + "def": "A blade or clump of grass." + } + ] + }, + "verb": { + "feminine": [ + { + "def": "To gather or group together for company." + } + ] + } + } + }, + { + "base": "wuduna", + "pos": { + "noun": { + "neuter": [ + { + "def": "1/64th of a dātsu used for light weights." + }, + { + "def": "OOW: 15.9 g." + } + ] + } + } + }, + { + "base": "wufabi", + "pos": { + "noun": { + "neuter": [ + { + "def": "Sparrows or small birds." + } + ] + } + } + }, + { + "base": "yagumama", + "pos": { + "verb": { + "feminine": [ + { + "def": "To manipulate or guide a plant or animal's growth.\n" + } + ], + "masculine": [ + { + "def": "To cause a plant or animal grow rapidly with magic.\n" + } + ] + } + } + }, + { + "base": "yaji", + "pos": { + "noun": { + "neuter": [ + { + "def": "1/64th the difference between [pimayāzu](../pi/pimayāzu.markdown) (freezing) and [komiyāza](../ko/komiyāza.markdown) (boiling)." + }, + { + "def": "OOW: 1.6 C." + } + ] + } + } + }, + { + "base": "yarimu", + "pos": { + "noun": { + "neuter": [ + { + "def": "Rain." + } + ] + } + } + }, + { + "base": "yarimufu", + "pos": { + "noun": { + "masculine": [ + { + "def": "Cloud." + } + ] + } + } + }, + { + "base": "yo", + "pos": { + "part": [ + { + "def": "Suffix for not or negate." + } + ] + } + }, + { + "base": "yuji", + "pos": { + "noun": { + "neuter": [ + { + "def": "An egg of a bird or insect." + } + ] + } + } + }, + { + "base": "zachyo", + "pos": { + "noun": { + "feminine": [ + { + "def": "A bowl for a single person." + }, + { + "def": "A small bowl." + } + ], + "masculine": [ + { + "def": "A serving or shared bowl." + } + ] + } + } + }, + { + "base": "zeshitomi", + "pos": { + "noun": { + "masculine": [ + { + "def": "Legend." + } + ] + } + } + }, + { + "base": "zopaba", + "pos": { + "noun": { + "neuter": [ + { + "def": "Round, circle" + } + ] + } + } + }, + { + "base": "zushi", + "pos": { + "noun": { + "feminine": [ + { + "def": "A nap." + } + ], + "masculine": [ + { + "def": "A long or a full night's sleep." + } + ] + }, + "verb": { + "feminine": [ + { + "def": "To take a nap." + } + ], + "masculine": [ + { + "def": "To sleep for a long time." + } + ] + } + } + }, + { + "base": "zushichya", + "pos": { + "adj": [ + { + "def": "Growing older." + } + ], + "noun": { + "masculine": [ + { + "def": "Amber." + } + ], + "neuter": [ + { + "def": "A resin tree." + } + ] + }, + "verb": { + "feminine": [ + { + "def": "To solidify one's opinions." + } + ] + } + } + } +] \ No newline at end of file diff --git a/dist/dictionary.yaml b/dist/dictionary.yaml new file mode 100644 index 0000000..20fb1d8 --- /dev/null +++ b/dist/dictionary.yaml @@ -0,0 +1,1965 @@ +- base: aeno + pos: + noun: + neuter: + - def: Bird eggs. + verb: + feminine: + - def: To destroy something by crushing it. +- base: afukijomu + pos: + verb: + feminine: + - def: | + To shape or manipulate the physical form using magic. + - def: | + To sculpt solid materials. +- base: ashyobyupa + pos: + noun: + neuter: + - def: A chrysanthemum. + - def: A flower with a lot of petals. + verb: + feminine: + - def: To use many different tools or techinques to look beautiful. +- base: baba + pos: + noun: + masculine: + - def: Heart. +- base: barichi + pos: + adj: + - def: 'Mundane, non-magical.' +- base: barichiroma + pos: + noun: + neuter: + - def: Magic-less person. +- base: bedano + pos: + noun: + feminine: + - def: 'A pinch of something, used for cooking.' + - def: 1/64th of a wudūna used for measuring delicate weights. + - def: OOW 0.2 g. +- base: benkidofu + pos: + noun: + neuter: + - def: >- + The natural shielding of resonance damage against the weaker of two + opposing magical fields. +- base: bichiru + pos: + noun: + feminine: + - def: >- + A traditional drink of the northern desert primarily made from + fermented cactus sap. It typically has a milky appearance. +- base: bidano + pos: + noun: + feminine: + - def: 'A pinch of something, used for cooking.' + verb: + neuter: + - def: To be nit-picky or find fault in tiny details. +- base: bidosomi + pos: + adj: + - def: | + Personalized or customized for an individual. + - def: > + A spirit that has a personal or unique manifestion for individual + members of the clan. This manifestion can be a physical or an ethereal + one. + reference: + - excerpt: > + Rutejìmo turned back to the valley. Coming in from all directions + were the couriers of the clan. They all ran after translucent + small birds, the manifestation of Shimusògo; the speed of their + sprints kicking up long plumes of sand and dust. + identifier: 0100-02 + title: Sand and Bone 1 + url: 'https://fedran.com/sand-and-bone/chapter-01/' + adv: + - def: | + An action that is tailored or adapted for the subject. +- base: bikiku + pos: + noun: + feminine: + - def: 'Flea, louse.' +- base: bimugi + pos: + noun: + masculine: + - def: Horn. +- base: bire + pos: + noun: + masculine: + - def: Night. +- base: bochigomasu + pos: + verb: + neuter: + - def: Do perform something that takes a week to complete. +- base: bokiko + pos: + noun: + feminine: + - def: Fire smoke. +- base: bozo + pos: + verb: + feminine: + - def: To cook or prepare a small meal or snack. + - def: To prepare a meal for oneself. + masculine: + - def: To cook or prepare a large meal. +- base: bupo + pos: + verb: + feminine: + - def: Swim. +- base: bupobo + pos: + noun: + feminine: + - def: Fish. +- base: burukano + pos: + noun: + neuter: + - def: > + The tendency for members of the same clan to exhibit common traits, + morals, and decisions common with the clan's spirit. +- base: byan + pos: + noun: + neuter: + - def: Green. +- base: byobi + pos: + noun: + feminine: + - def: 'As [byòbi](../byo/byobi.markdown) [n.1] but female.' + masculine: + - def: 'A male rabbit, hare, or other member of the leporine family.' + neuter: + - def: 'As [byòbi](../byo/byobi.markdown) [n.1] but a young bunny or kit.' +- base: byomokishi + pos: + noun: + neuter: + - def: Non-desert people. +- base: byomushike + pos: + noun: + neuter: + - def: Outsider. +- base: byoni + pos: + verb: + feminine: + - def: To have a little cry. + masculine: + - def: To bawl or cry loudly. + - def: To break down sobbing. +- base: chidona + pos: + noun: + neuter: + - def: Pebbles or small rocks. + verb: + masculine: + - def: To throw or cause many small problems in rapid succession. +- base: chifu + pos: + adj: + - def: Long. +- base: chifumo + pos: + noun: + masculine: + - def: Cold weather. +- base: chimoga + pos: + noun: + neuter: + - def: A measurement of distance. + - def: 'A surveyor''s chain of 66 feet or 4 [romōga](../ro/romogo.markdown).' + verb: + feminine: + - def: >- + To measure or pace something out that is approximately a + [chimōga](../chi/chimōga.markdown) distance. + - def: >- + To measure something out in terms of + [chimōga](../chi/chimōga.markdown) distance. +- base: chiruni + pos: + noun: + feminine: + - def: Warm weather. +- base: chisogura + pos: + noun: + masculine: + - def: | + A physical and spiritual call for help from other clan members. + reference: + - excerpt: > + "Sands!" Desòchu threw back his head, exploded into an inferno + of golden flames, and screamed. It wasn't the sound of a human + that came out of his mouth, but the screech of a bird that + echoed in Rutejìmo's head. + + The sound crashed into Rutejìmo. It echoed beyond his ears and + something deep in his heart responded. He had to obey it, had to + do something. It was the cry of Shimusògo himself. + + Rutejìmo felt the cry force his attention toward Desòchu. A need + to do something rose up inside him, a command that came directly + from the clan spirit. He stared into Desòchu's flaming form + despite the pain of looking into the brightness. Tears burned in + his eyes from the effort. + + ... + + Power rose around him. Looking up, he saw the clan responding to + Desòchu's cry. Every adult of the clan converged on the valley, + each one leaving a trail of golden flames. The children who were + playing were knocked aside by adults all sprinting toward the + entrance. + identifier: 0100-01 + title: Sand and Ash 32 + url: 'https://fedran.com/sand-and-ash/chapter-32/' + verb: + neuter: + - def: | + To make a spiritual call for help from other clan members. +- base: chisokuku + pos: + noun: + masculine: + - def: The amount of water a clan needs in a day. + - def: 'A volume of liquid equal to 66 [kokéku](../ko/kokeku.markdown).' + - def: 'OOW: A volume of liquid equal to 264 L.' +- base: chobire + pos: + noun: + masculine: + - def: The moon. +- base: chochi + pos: + noun: + masculine: + - def: A lunar cycle or month. +- base: chon + pos: + adj: + - def: Black. +- base: chonesu + pos: + noun: + feminine: + - def: Stars. +- base: chota + pos: + noun: + masculine: + - def: A lunar "day". +- base: chotafuchi + pos: + noun: + masculine: + - def: The period where the moon is below the horizon. + - def: When moon-based powers don't work. +- base: chyomigu + pos: + noun: + neuter: + - def: 1/10th of a domīgu. + - def: 'OOW: 2.01 cm' +- base: chyore + pos: + noun: + masculine: + - def: Snake + - def: mizonekima chyòre - giant snake +- base: chyotemako nakifu + pos: + noun: + feminine: + - def: >- + A short poem of two or more phrases where every phrase is the same + number of syllables. +- base: chyubine + pos: + noun: + feminine: + - def: 'As *chyubìne* (noun 1), but female.' + masculine: + - def: 'A male jack-of-trades, someone who had a wide variety of skills.' + neuter: + - def: A child who has many skills but no specialization. + - def: A child with an uncertain clan affiliation. +- base: chyurena + pos: + noun: + feminine: + - def: 'As *chyurèna* (noun 1), but female.' + masculine: + - def: >- + A male of a clan which does not have significantly differing levels + of magical power among its members. +- base: dakyofu + pos: + verb: + feminine: + - def: > + To channel magic into a weapon to make it stronger or resilent to + attack magic. + masculine: + - def: | + To anticipate an unplesant conversation. +- base: danichyo + pos: + noun: + masculine: + - def: An impromptu hiding spot. + neuter: + - def: A bird's nest. + verb: + feminine: + - def: To create something for personal joy. +- base: datemo + pos: + adv: + - def: | + To perform an action with perception magic. + verb: + feminine: + - def: | + To look intently or analyze. + neuter: + - def: | + To percieve or observe. +- base: datsu + pos: + noun: + neuter: + - def: The basic unit of weight equal to sofùki worth of clean water. + - def: 'OOW: 1020 g.' +- base: defoni + pos: + noun: + masculine: + - def: Feather. +- base: demu + pos: + verb: + masculine: + - def: Fly. +- base: depa + pos: + noun: + feminine: + - def: Bird. +- base: detokishi + pos: + noun: + masculine: + - def: Desert folk. +- base: detomusa + pos: + noun: + masculine: + - def: Persistent sand storm. +- base: do + pos: + pro: + - def: 'You, yours.' +- base: dodera + pos: + noun: + neuter: + - def: An object used to hold liquid. + - def: A bucket or bowl. + verb: + feminine: + - def: To cup one's hands to hold liquids. +- base: domigu + pos: + noun: + neuter: + - def: 1/100th of a romōga. + - def: 'OOW: 20.12 cm.' +- base: doshyo + pos: + noun: + feminine: + - def: 'Soil, earth.' +- base: dotsu + pos: + noun: + masculine: + - def: Home. +- base: faho + pos: + noun: + feminine: + - def: ear. +- base: famu + pos: + noun: + neuter: + - def: 'Eye, eyes.' +- base: fapodi + pos: + verb: + feminine: + - def: To run over long distances. + - def: Endurance running. + masculine: + - def: To sprint or run at full speed. +- base: faruku + pos: + noun: + neuter: + - def: A toad or frog. +- base: fasa + pos: + adj: + - def: 'Fast, speedy.' +- base: fechi + pos: + adj: + - def: Greater or superior in social rank. +- base: figi + pos: + noun: + feminine: + - def: 'Teeth, bite.' +- base: foni + pos: + noun: + neuter: + - def: Head. +- base: fopu + pos: + adj: + - def: 'Full, stuffed.' +- base: fuchi + pos: + noun: + masculine: + - def: Nose. +- base: fugi + pos: + verb: + neuter: + - def: 'See, sight.' +- base: fugimo + pos: + noun: + masculine: + - def: Mouth. +- base: fumiga + pos: + noun: + feminine: + - def: Claw. +- base: funami + pos: + noun: + neuter: + - def: Sheep or other wool-producing herd creature. + verb: + feminine: + - def: To shave or remove hair. +- base: gabuchigika + pos: + noun: + masculine: + - def: 1. A large area of land claimed by a clan. + - def: '120 [gachigyukōga](../ga/gachigyukōga.markdown).' +- base: gachi + pos: + verb: + masculine: + - def: Eat. +- base: gachigyukoga + pos: + noun: + neuter: + - def: A "plot" of land one chimōga by one gyukōga. + - def: 'OOW: 1 acre.' +- base: gamekoji + pos: + noun: + neuter: + - def: A miscarriage. +- base: gamibita + pos: + adj: + - def: | + A magical talent that charges a physical item with explosive force. + reference: + - excerpt: > + And then the dépa was there, sprinting in a circle around Chimípu. + Her movements accelerated, and a vortex of dust rose up around + her, blurring her form. The sling formed a disk as it spun with + her. + + She stopped suddenly and released one end of the cloth. The rock + shot out and crossed the valley in an instant. It left ripples in + the air as raw power rolled off the stone. A crack of air shook + Rutejìmo from its passing. The stone shattered at the base of a + nest and there was a shower of blood and feathers. + identifier: 0100-00 + title: Sand and Blood 17 + url: 'https://fedran.com/sand-and-bone/chapter-17/' + noun: + feminine: + - def: | + A bang or sharp noise. + - def: | + Firecrackers or celebratory explosions. + masculine: + - def: | + A large explosion that does significant damage. +- base: gatiru + pos: + noun: + neuter: + - def: A wild dog-like creature. + - def: A coyote. + verb: + masculine: + - def: To rummage around scraps for food. +- base: ge + pos: + adj: + - def: My clan. +- base: gen + pos: + noun: + feminine: + - def: 'As *gèn* (noun 1), but as a feminine clan spirit.' + masculine: + - def: 'My clan, when referencing a clan with a masculine spirit.' + neuter: + - def: 'As *gèn* (noun 1), but as a neuter clan spirit.' +- base: gichyoku + pos: + noun: + feminine: + - def: | + A cutting or slicing force or energy. +- base: gidajimo + pos: + noun: + feminine: + - def: >- + As *gidajìmo* (noun 1), but where the female is the primary or sole + caregiver of any children. + masculine: + - def: >- + A marriage between an adult man and woman where the male is the + primary or only caretaker for any children (including + step-children). + neuter: + - def: >- + As *gidajìmo* (noun 1), but where either both members are equal in + raising children or the marriage has not produced any children. + verb: + feminine: + - def: A quiet or private marriage ceremony. + masculine: + - def: >- + A marriage ceremony performed with a significant amount of ceremony, + guests, or planning. +- base: gimetsui + pos: + verb: + masculine: + - def: To give birth to a living child. + neuter: + - def: To lay eggs or other non-live birth. +- base: gitamafu + pos: + noun: + feminine: + - def: | + Shared senses among two or more people. + verb: + feminine: + - def: | + To recieve senses from an external source. + masculine: + - def: | + To project senses or perceptions into someone else. +- base: gitopoga + pos: + verb: + masculine: + - def: To have unenthusiastic sex solely for purposes of reproduction. +- base: gokote + pos: + noun: + neuter: + - def: A solar week consisting of eight rōte. +- base: gomata + pos: + noun: + neuter: + - def: 1/128 of a māsa. + - def: 'OOW: a "minute".' +- base: gupa + pos: + verb: + masculine: + - def: 'Gulp, drink.' +- base: gupiji + pos: + noun: + neuter: + - def: Valley +- base: gyukoga + pos: + noun: + neuter: + - def: 1. 80 chimōga. + - def: 1/9th the distance an average person can walk in a māsa. + - def: 'OOW: 1 mile.' +- base: hachifobu + pos: + noun: + neuter: + - def: > + The trial when a teenager about to manifest power and various + spirits present themselves to see if there is a natural fit. +- base: hachifu + pos: + noun: + neuter: + - def: 'Path, road, trail.' +- base: hamani + pos: + noun: + neuter: + - def: A mountain lion. + - def: A large cat. + verb: + masculine: + - def: To seek out a romantic or sexual partner during nocturnal events. +- base: hanako + pos: + noun: + feminine: + - def: A large horn of a creature. + masculine: + - def: A bighorn sheep. + verb: + masculine: + - def: To butt or interject into a conversation. +- base: hayoka + pos: + adj: + - def: 'Good, favorable.' +- base: heru + pos: + noun: + feminine: + - def: A mare or female horse. + masculine: + - def: A stallion or male horse. + neuter: + - def: A foal or young horse. +- base: herudaki + pos: + noun: + neuter: + - def: The weight of a horse. + - def: '30 [madèku](../ma/madèku.markdown).' + - def: 'OOW: 489.6 kg.' +- base: hichifuma + pos: + verb: + neuter: + - def: >- + The effort to keep the nature of spirits and the rite of passage + secret from children to facilitate the connection to a clan spirit. +- base: hikomini + pos: + noun: + feminine: + - def: >- + A lesser clan spirit, one that gains power from one of the + *hikomìni* (noun 1). + masculine: + - def: >- + One of the three greater spirits of the desert: Tachìra, Chobìre, or + Mifúno. +- base: hinoto + pos: + noun: + feminine: + - def: Tail. +- base: hiropadu + pos: + noun: + neuter: + - def: Marks left behind by hooved creatures. + verb: + masculine: + - def: To kick something with great force. +- base: hofuma + pos: + noun: + masculine: + - def: A hawk or raptor. + - def: A large hunting bird. +- base: hogano + pos: + adj: + - def: > + Magical powers that manifest through the combined presence of related + creatures as opposed to individual members. Common talents include + telepathy, mental control, and projected senses through the members of + the species. + example: + - en: Legendary are the herd powers of Waryōni. + miw: oa zeshitómi e hogano waryōni + noun: + masculine: + - def: > + A group of anything running around making a great deal of noise and + distration. + example: + - en: The girls of our clan run like a herd of horses. + miw: oe ge nágo i fapòdi a hogáno +- base: horanakifu + pos: + verb: + feminine: + - def: To see solace away from others. + - def: To sequester oneself for contemplation. +- base: hupodi + pos: + verb: + feminine: + - def: 'Come, approach.' +- base: hyobechimo + pos: + noun: + feminine: + - def: The ritual of performing *hyobechìmo* (verb 1). + - def: The rite of passage for young adults. + verb: + masculine: + - def: >- + The process of putting a young adult in mortal danger to reveal + their clan and powers. + - def: To put someone in mortal danger to reveal their true nature. + - def: To stress test something. +- base: hyukadi + pos: + verb: + feminine: + - def: To volunteer or give assistance. +- base: ikugafu + pos: + adj: + - def: To be unkillable. + - def: To be impossible to get rid of. + noun: + neuter: + - def: A cockroach. +- base: iryoga + pos: + noun: + neuter: + - def: > + The moment of despair or longing when someone's associated celestial + body goes below the horizon and they lose their magical powers. + verb: + masculine: + - def: > + The dread that rises when one's celestial body is about to go below + the horizon. +- base: itochyoku + pos: + verb: + feminine: + - def: | + The teleport or move without crossing the intervening distance. + reference: + - excerpt: > + “There is no thanks,” she said in her wavering voice, “because + this is the way it is. Go on, I will help you break fast.” She + turned, and then she was gone. He didn’t see how she moved, only + that one moment she was standing in front of him and the other + she was a rod away, kneeling at an old fire pit. + identifier: 0100-02 + title: Sand and Bone 22 + url: 'https://fedran.com/sand-and-bone/chapter-22/' + - def: | + The move through shadows or mirrors. +- base: jimo + pos: + noun: + neuter: + - def: 'Cloth, fabric, or textile.' + verb: + feminine: + - def: To wrap or bind in cloth or fabrics. +- base: jokidofu + pos: + noun: + neuter: + - def: Magical resonance. + - def: The field that surrounds mages and artifacts. + verb: + feminine: + - def: To create discomfort in someone else using magical resonance. + masculine: + - def: To create pain in someone else using magical resonance. +- base: jokofatsu + pos: + noun: + neuter: + - def: A script that has vowels to the right of the consonants. + - def: The script of the Western part of the Mifúno desert. + verb: + feminine: + - def: To write in a *jokofātsu* script. +- base: jyomyo + pos: + pro: + - def: Many. +- base: jyon + pos: + adj: + - def: Yellow. +- base: jyopa + pos: + num: + - def: One. +- base: jyore + pos: + num: + - def: Two. +- base: jyoshya + pos: + adj: + - def: All. +- base: kadu + pos: + noun: + feminine: + - def: Hand. +- base: kafu + pos: + verb: + feminine: + - def: 'Love, affection.' + masculine: + - def: Passion. +- base: kafuchi + pos: + adj: + - def: | + A spiritual energy that is shared and pools. + - def: > + A manifestion of magic where multiple clan members see the same + spirit. + noun: + feminine: + - def: | + A shared memory or magic between close friends or clan members. +- base: keka + pos: + noun: + feminine: + - def: The amount of displacement of an adult woman's fist. + - def: 'OOW: A volume of liquid equal to 305 mL.' +- base: keri + pos: + verb: + masculine: + - def: Stand. +- base: kifi + pos: + verb: + feminine: + - def: 'Give, hand over.' +- base: kifomakoji + pos: + verb: + feminine: + - def: To lose a loved one to death. +- base: kiko + pos: + noun: + masculine: + - def: 'Fire, burn.' +- base: kikochyo + pos: + noun: + neuter: + - def: Ashes of a fire. +- base: kikofuna + pos: + noun: + neuter: + - def: >- + The minimum area of ash produced from a funeral fire to be + considered holy. + - def: 'OOW: 80 m^2.' +- base: kimu + pos: + verb: + feminine: + - def: Sit. +- base: kireki + pos: + noun: + masculine: + - def: Tree. +- base: kishi + pos: + noun: + masculine: + - def: 'Male, masculine.' +- base: kochozo + pos: + verb: + neuter: + - def: Sleep. +- base: kodi + pos: + verb: + neuter: + - def: Lie down. +- base: kodo + pos: + noun: + feminine: + - def: Stone. +- base: kodoshyo + pos: + noun: + masculine: + - def: Mountain. +- base: koji + pos: + verb: + neuter: + - def: 'Die, death, kill.' +- base: kojifu + pos: + verb: + neuter: + - def: Die. +- base: kokeku + pos: + noun: + masculine: + - def: >- + The amount of water an average person needs for a single day in the + desert. + - def: 'A volume of liquid equal to 13 [kéka](../ke/keka.markdown).' + - def: 'OOW: A volume of liquid equal to 4 L.' +- base: komiyaza + pos: + noun: + neuter: + - def: The temperature where water boils. + - def: 'OOW: 100 C.' +- base: koroma + pos: + adj: + - def: Cursed. +- base: kufo + pos: + noun: + neuter: + - def: A mouse or rat. + verb: + feminine: + - def: A worm into a tight space. + masculine: + - def: To make oneself at home when unwelcomed. +- base: kuga + pos: + verb: + neuter: + - def: Hear. +- base: kyoda + pos: + verb: + feminine: + - def: To ride a creature over distances. + masculine: + - def: 'To charge a creature, such as into battle.' + - def: To sprint or race a creature while riding it. + neuter: + - def: To ride poorly or without skill. + - def: To learn how to ride a creature. +- base: kyon + pos: + noun: + neuter: + - def: Red. +- base: kyumogo + pos: + noun: + neuter: + - def: A measurement of distance. + - def: A mile. + verb: + feminine: + - def: >- + To measure or pace something out that is approximately a *kyumōgo* + distance. +- base: ma + pos: + adj: + - def: 'Me, I, mine.' +- base: madeku + pos: + noun: + masculine: + - def: A weight of 16 dātsu used for measuring heavy items and people. + - def: 'OOW: 16.32 kg.' +- base: man + pos: + noun: + feminine: + - def: 'As *màn* (noun 1), but as a feminine.' + masculine: + - def: 'Myself, when referencing a masculine person.' + neuter: + - def: 'As *màn* (noun 1), but as a neuter.' +- base: masa + pos: + noun: + neuter: + - def: 1/8th of a rōte or solar day. +- base: masotoru + pos: + adj: + - def: | + Concerning or using electrical-based magic. + noun: + masculine: + - def: | + Lightning formed from a dust storm. +- base: mekoshi + pos: + adj: + - def: To perform an action humbly or without pride. +- base: michi + pos: + verb: + masculine: + - def: Smile. +- base: mifuno + pos: + noun: + feminine: + - def: The desert spirit. + neuter: + - def: The desrt. +- base: miga + pos: + noun: + feminine: + - def: 'Meat, flesh.' +- base: minafatsu + pos: + noun: + neuter: + - def: Written words or letters of the desert tongue. +- base: miwafu + pos: + noun: + neuter: + - def: Words of the desert. +- base: mo + pos: + pro: + - def: 'What, who, whom, question placeholder.' +- base: mobipo + pos: + noun: + masculine: + - def: A crow or blackbird. + verb: + neuter: + - def: 'To make loud, persistent noises.' +- base: monika + pos: + adj: + - def: | + A magical force that accelerates or speeds a character. + reference: + - excerpt: > + The ground shook as a blast of wind blew and the flash of a bird + raced past them. Rocks tore at Rutejìmo's side and face. Coughing, + he managed to focus just as Desòchu caught the third bowl. The + other two rested in his other hand. Wind eddied around Rutejìmo's + older brother as he gracefully spun around to prevent the food + from slipping. + + Desòchu glanced up and then stepped forward. He disappeared in a + cloud of dust, and a plume of wind streaked to the switchback at + the end of the trail and up toward them. + identifier: 0100-00 + title: Sand and Blood 4 + url: 'https://fedran.com/sand-and-bone/chapter-04/' + adv: + - def: | + To move or run very fast. +- base: mujichi + pos: + adj: + - def: 'Dry, powdery' +- base: mukisa + pos: + noun: + feminine: + - def: a fine sand that is difficult to walk along because it is shifting +- base: munisa + pos: + noun: + masculine: + - def: >- + a coarse grain sand that grates against bare flesh but doesn't blow + in light winds +- base: musa + pos: + noun: + feminine: + - def: Sand (generic). +- base: mushigi + pos: + noun: + masculine: + - def: Tongue. +- base: myoregu + pos: + noun: + masculine: + - def: Moron. +- base: myukira + pos: + noun: + feminine: + - def: Leaf. +- base: netune + pos: + noun: + feminine: + - def: | + A legacy left behind when someone dies. + neuter: + - def: > + The tendency for a child to become associated with the same clan as + as their mother. +- base: norikuchyofune + pos: + verb: + masculine: + - def: | + The final burst of energy when the last member of a clan dies. + - def: > + The moment when a clan spirit dies with the last living member's + death. +- base: nago + pos: + noun: + masculine: + - def: Girl child. +- base: nakifu + pos: + noun: + feminine: + - def: A short poem. + masculine: + - def: A long or epic poem. +- base: nesa + pos: + adj: + - def: 'Unhappily, miserably.' +- base: nesakafu + pos: + verb: + neuter: + - def: To be unhappily in love. + - def: To be miserably happy. +- base: nibaba + pos: + noun: + feminine: + - def: Breasts. +- base: nibapu + pos: + noun: + masculine: + - def: Liver +- base: nichiza + pos: + noun: + masculine: + - def: Belly. +- base: nido + pos: + noun: + feminine: + - def: Neck. +- base: nireigi + pos: + adj: + - def: 'New, freshly made.' +- base: nonyu + pos: + noun: + feminine: + - def: Discomfort. + masculine: + - def: 'Agony, overwhelming pain.' + verb: + neuter: + - def: To live with pain or agony. +- base: nyan + pos: + adj: + - def: Blue. +- base: nyokiru + pos: + noun: + masculine: + - def: Root. +- base: ogapi + pos: + adj: + - def: To be related to a group of children. + noun: + neuter: + - def: A flea. + - def: A bedbug. +- base: ogimo + pos: + noun: + masculine: + - def: A camel or other hump-backed creature. + verb: + feminine: + - def: To carry a grudge or conversation for years. +- base: oteza + pos: + noun: + neuter: + - def: A spider or another arachnid. + verb: + feminine: + - def: To work on many projects at the same time. +- base: pachyun + pos: + noun: + neuter: + - def: A smooth lizard. + verb: + feminine: + - def: To adapt to circumstances. +- base: padu + pos: + noun: + masculine: + - def: Foot. +- base: parechyo + pos: + noun: + neuter: + - def: Knee. +- base: peji + pos: + verb: + feminine: + - def: To temporarily raise something. +- base: pibafu + pos: + noun: + masculine: + - def: Blood. +- base: pimayazu + pos: + noun: + neuter: + - def: The temperature where water freezes. + - def: 'OOW: 0 C.' +- base: pimiga + pos: + noun: + neuter: + - def: Bone. +- base: pocho + pos: + noun: + feminine: + - def: 'A discomforting fear, one that does not stop someone.' + masculine: + - def: An overwhelming fear or terror. +- base: podi + pos: + verb: + masculine: + - def: Walk. +- base: poga + pos: + verb: + masculine: + - def: To participate in loud or enthusiastic sex. +- base: pokemon + pos: + noun: + feminine: + - def: The obsessive need to collect or gather one of everything. + verb: + feminine: + - def: The process of collecting or gathering a collection. +- base: poroneso + pos: + noun: + neuter: + - def: Kin-killer. +- base: pu + pos: + pro: + - def: your clan +- base: pumakyoni + pos: + adv: + - def: | + To perform an action that phases through solid matter. + reference: + - excerpt: > + Gichyòbi jumped in front of Rutejìmo and broke the line of sight. + His leap had carried him over the charging warriors. He hit hard, + swinging his weapon down toward the ground. + + Instead of bouncing off the earth, the blade easily slid into the + stone as if it wasn’t there. Gichyòbi’s gauntlet dipped into the + ground as he swung forward. Rutejìmo followed the movement through + Gichyòbi’s shoulders before the weapon came up in front of him. + identifier: 0100-02 + title: Sand and Bone 23 + url: 'https://fedran.com/sand-and-bone/chapter-23/' + verb: + feminine: + - def: | + To phase or walk through solid matter. +- base: puruna + pos: + adv: + - def: | + To perform an action with flying magic. + noun: + masculine: + - def: | + To fly using magic. +- base: pyabi + pos: + noun: + neuter: + - def: 'The primary currency of the [Mifúno Desert](mifúno).' +- base: pyadashimu + pos: + noun: + masculine: + - def: 'Clockwork mechanism, something is powered by winding up.' +- base: pyuchyu + pos: + adj: + - def: 'Stinky, has a stench.' +- base: ragofuchino + pos: + noun: + feminine: + - def: Salt water. + masculine: + - def: An ocean or sea. + - def: A massive body of water. +- base: raki + pos: + noun: + feminine: + - def: Skin. +- base: rakiki + pos: + noun: + masculine: + - def: Bark of a tree. +- base: remigu + pos: + noun: + feminine: + - def: 'Grease, fat.' +- base: richi + pos: + noun: + feminine: + - def: A solar cycle between 44 and 47 days. + - def: A solar "month". +- base: rimu + pos: + noun: + feminine: + - def: Water. +- base: rimuhi + pos: + adj: + - def: Small and unassuming. + noun: + neuter: + - def: 'A small, smooth lizard.' + - def: A gecko. +- base: rimyo + pos: + adj: + - def: Unfocused or wandering. + noun: + neuter: + - def: A river or stream. + verb: + masculine: + - def: To have a meandering conversation. +- base: rocho + pos: + noun: + feminine: + - def: A long-term anger. + masculine: + - def: A furious rage or anger. + - def: A screaming fighting. + verb: + feminine: + - def: To have a passive-aggressive fight. + - def: To fight without revealing the purpose of the fight. + masculine: + - def: To have a screaming fight. + - def: To fight for the sake of fighting. +- base: romoga + pos: + noun: + neuter: + - def: A measurement of distance. + - def: A surveyor's rod of 16.5 feet. + verb: + feminine: + - def: >- + To measure out a distance that is approximately a + [romōga](../ro/romōga.markdown) away. + - def: >- + To measure something out in terms of + [romōga](../ro/romōga.markdown). +- base: rote + pos: + noun: + neuter: + - def: A solar day from sunrise to sunrise. +- base: rotefuchi + pos: + noun: + masculine: + - def: The period where the sun is below the horizon. + - def: When sun-based powers don't work. +- base: rube + pos: + noun: + feminine: + - def: A small quantity of water. + masculine: + - def: A large quantity of water. +- base: rukan + pos: + noun: + neuter: + - def: An iguana. + - def: A dry lizard with large scales. + verb: + feminine: + - def: To be aware of events in multiple directions. +- base: runakomin + pos: + noun: + neuter: + - def: A child playing with imaginary things or people. + - def: Creativity in a child. +- base: rurafu + pos: + noun: + neuter: + - def: A manufactured or created well to provide water. + verb: + feminine: + - def: To persistently drive or hammer. + masculine: + - def: To violently penetrate or impale. +- base: ryakochyani + pos: + noun: + neuter: + - def: An underground cave or opening. +- base: ryarena + pos: + noun: + feminine: + - def: 'As *ryarèna* (noun 1), but female.' + - def: 'As *ryarèna* (noun 2), but female.' + masculine: + - def: >- + A male of a clan who has significantly more magical powers than + average. + - def: A male warrior or defender of a clan. +- base: ryon + pos: + noun: + neuter: + - def: The color white. +- base: ryuma + pos: + noun: + neuter: + - def: An oasis or a place to rest. + verb: + feminine: + - def: To create a place of safety or rest. +- base: sakomichi + pos: + noun: + feminine: + - def: The clan leader in a battle or war. + masculine: + - def: The leader of one side of a battle or war. +- base: seku + pos: + verb: + masculine: + - def: Speak. +- base: semura + pos: + noun: + masculine: + - def: | + The flare of heat and energy that forms with powerful uses of magic. + reference: + - excerpt: > + Light burst from an impact, and he saw the runes of Chimípu’s + blade flare with the clash against the other woman’s spike. Each + letter was bright as sunlight but faded instantly. With the next + attack, the runes flashed again. As Chimípu rained down blows, + their attacks became a lighting storm of attack and parry. + identifier: 0100-00 + title: Sand and Ash 18 + url: 'https://fedran.com/sand-and-ash/chapter-18/' +- base: shifin + pos: + noun: + feminine: + - def: Mildly shamed. + masculine: + - def: A deep and humiliating shame. +- base: shikafu + pos: + noun: + neuter: + - def: Unrequited love or a crush. +- base: sofuki + pos: + noun: + masculine: + - def: A volume of a standard bottle of wine. + - def: 'A volume of liquid equal to 3.3 [kéka](../ke/keka.markdown).' + - def: 'OOW: A volume of liquid equal to 1,020 mL.' +- base: soramifu + pos: + noun: + masculine: + - def: > + The flare of heat and energy that bursts out of powerful warriors + when they experience strong emotions. + reference: + - excerpt: > + But, despite Tsubàyo and the massive horse stepping into the + shadows just moments before, she hit nothing. + + “Damn that bastard!” Chimípu threw back her head and screamed in + rage. It was a high-pitched screech that sounded uncomfortably + like that of a bird. Her body ignited with a golden flame that + burned away the shadows around her. She became a blinding sun in + an instant as a translucent dépa superimposed itself over her + body. The image expanded to twice her height before it + dissipated in swirls of golden sparks. + identifier: 0100-00 + title: Sand and Ash 21 + url: 'https://fedran.com/sand-and-ash/chapter-21/' +- base: sugo + pos: + noun: + feminine: + - def: 'Know, knowledge.' +- base: ta + pos: + pro: + - def: This. Add "-n" for final. +- base: tachira + pos: + noun: + masculine: + - def: The sun spirit. + neuter: + - def: The sun. +- base: taigona + pos: + noun: + feminine: + - def: > + The transfer of energy from one of the great spirit, into a clan + spirit, and then into an individual. +- base: tanifatsu + pos: + noun: + neuter: + - def: A script that has vowels underneath the consonants. + - def: The script of the Eastern part of the Mifúno desert. + verb: + feminine: + - def: To write in a *tanifātsu* script. +- base: tata + pos: + pro: + - def: 'That, use "-n" for final.' +- base: tazagu + pos: + noun: + feminine: + - def: A fighting spike. +- base: te + pos: + pro: + - def: 'They, them, theirs.' +- base: tejoki + pos: + adj: + - def: Blocking or obstructing. + noun: + masculine: + - def: A boulder or large rock. + verb: + neuter: + - def: To block or obstruct the flow of water or liquid. + - def: To obstruct a conversation. +- base: toki + pos: + noun: + feminine: + - def: Female. +- base: tokishi + pos: + noun: + feminine: + - def: 'People, folk.' +- base: tonufi + pos: + noun: + masculine: + - def: '"King", actually lord of an animal given by a spirit.' +- base: tora + pos: + noun: + masculine: + - def: A male dog or hound. + - def: 'figaki tòra: A short-haired dog, typically feral.' +- base: tsu + pos: + pro: + - def: '"their clan"' +- base: tsufi + pos: + noun: + masculine: + - def: 'Big, large.' +- base: tsufoni + pos: + noun: + feminine: + - def: Hair on a human or creature. +- base: tsukire + pos: + noun: + feminine: + - def: tsukíre +- base: tsukishi + pos: + noun: + masculine: + - def: | + Magic that waxes or wanes with the user's emotional state. +- base: tsukokimu + pos: + verb: + neuter: + - def: | + To answer a spiritual call from a clan member. + reference: + - excerpt: > + A screech filled the air, radiating away from the sharp cliffs + that surrounded Shimusogo Valley. Even ripped from a human's + throat, the sound traveled further than a mere cry could ever + match. It rolled along the sand dunes and past the short ridges + of rocks peppering the desert around the valley. + + Rutejìmo froze when the sound slammed into him. The screech + demanded action, forcing him to focus on the cliffs that framed + the home valley. The sound continued past him, but he heard it + repeating in his head like a memory refusing to be forgotten. He + clenched his hand, and the leather ball he was about to throw + slipped from his palm and landed on the ground with a muted + thud. + identifier: 0100-02 + title: Sand and Bone 1 + url: 'https://fedran.com/sand-and-bone/chapter-01/' +- base: tsumo + pos: + noun: + feminine: + - def: Small +- base: udimo + pos: + noun: + neuter: + - def: > + The moment of pleasure when someone's associated celestial body + rises above the horizon. + reference: + - excerpt: > + Even in the depths of his family cave, Rutejìmo knew the moment + the sun rose above the horizon. The delicate tickle of power + started at the tips of his toes and fingers before quickly + coursing along his veins and bones. It reached his heart and + blossomed into a euphoric wave of pleasure that quickened his + breath and heart. + + Across the valley, all the adults would be waking up in the same + manner. They were all part of Shimusògo’s clan, and the dépa’s + power came from the sun spirit, Tachìra. + + Mapábyo let out a soft coo. She made the same sound every + morning, and he never tired of hearing it. Rutejìmo rolled on + his side and swept his leg forward, burrowing through the + blankets until his shin thudded against the hard muscles of her + leg. After so many years of sprinting across the desert, both of + their legs were solid as rock. + identifier: 0100-02 + title: Sand and Bone 4 + url: 'https://fedran.com/sand-and-ash/chapter-04/' + verb: + masculine: + - def: | + Anticipating when one's celestial body rises above the horizon. +- base: uichifogu + pos: + noun: + masculine: + - def: > + The moment when someone first emotionally connects to their spirit + and uses magic. + reference: + - excerpt: > + He caught a hint of movement again. This time, he didn’t stop + but glanced over without slowing. + + It was a bird racing him, just a few paces ahead of him and to + the right. The avian glided across the sand on long legs. Its + three-toed claws didn’t leave a trail behind it or disturb the + sands with the breeze of its passing. It kept its short wings + tight to its body as it ran. A brown-and-white speckled pattern + ran from its crest down to the end of the long feathers that + formed the tail. It was a shimusogo dépa, the dune-runner bird + Shimusògo took his name from. + + Startled, Rutejìmo slowed down, and between one step and the + next, he lost sight of the bird. Desperate, he tried to maintain + his speed while looking around but the dépa was gone. He slowed + down further, peering over his shoulders for the bird. + + As he came to a stumbling halt, all the joy fled out of him. In + one moment, he was experiencing a high and in the next it was + gone. It wasn’t until it was missing that he realized he was + experiencing it. In its wake, a longing burned inside him. He + wanted to run, something he had never felt before, and the urge + sang through his veins. + + Rutejìmo frowned and turned in a circle. The dépa was gone and + Tsubàyo and Karawàbi were quickly outpacing him. The need to run + burned hotter. In the back of his mind, he knew that if he just + ran fast enough, the dépa would return. The knowledge, however, + frightened him since he had never had an urge to run before, nor + had he ever seen a dépa while running. + identifier: 0100-00 + title: Sand and Blood 10 + url: 'https://fedran.com/sand-and-ash/chapter-10/' +- base: wabi + pos: + noun: + neuter: + - def: >- + The relative social rank between two people, such as a underling and + their boss, a child to a clan elder, or a younger to an older + person. +- base: wabipeji + pos: + verb: + feminine: + - def: >- + To temporarily raise the subject's social rank for purposes of + speaking. +- base: wafu + pos: + noun: + neuter: + - def: 'Word or words, either spoken or written.' +- base: wamuchiso + pos: + verb: + feminine: + - def: | + To magically bond with an animal or creature. +- base: wanu + pos: + noun: + neuter: + - def: 'Name, named.' +- base: watefama + pos: + verb: + feminine: + - def: | + To magically bond with a place or natural feature. +- base: we + pos: + part: + - def: Indicates the beginning of a number sequence. +- base: widahogu + pos: + verb: + feminine: + - def: | + To lift or carry something using magic. + - def: | + To move something through telekinesis. +- base: woi + pos: + noun: + neuter: + - def: A blade or clump of grass. + verb: + feminine: + - def: To gather or group together for company. +- base: wuduna + pos: + noun: + neuter: + - def: 1/64th of a dātsu used for light weights. + - def: 'OOW: 15.9 g.' +- base: wufabi + pos: + noun: + neuter: + - def: Sparrows or small birds. +- base: yagumama + pos: + verb: + feminine: + - def: | + To manipulate or guide a plant or animal's growth. + masculine: + - def: | + To cause a plant or animal grow rapidly with magic. +- base: yaji + pos: + noun: + neuter: + - def: >- + 1/64th the difference between [pimayāzu](../pi/pimayāzu.markdown) + (freezing) and [komiyāza](../ko/komiyāza.markdown) (boiling). + - def: 'OOW: 1.6 C.' +- base: yarimu + pos: + noun: + neuter: + - def: Rain. +- base: yarimufu + pos: + noun: + masculine: + - def: Cloud. +- base: yo + pos: + part: + - def: Suffix for not or negate. +- base: yuji + pos: + noun: + neuter: + - def: An egg of a bird or insect. +- base: zachyo + pos: + noun: + feminine: + - def: A bowl for a single person. + - def: A small bowl. + masculine: + - def: A serving or shared bowl. +- base: zeshitomi + pos: + noun: + masculine: + - def: Legend. +- base: zopaba + pos: + noun: + neuter: + - def: 'Round, circle' +- base: zushi + pos: + noun: + feminine: + - def: A nap. + masculine: + - def: A long or a full night's sleep. + verb: + feminine: + - def: To take a nap. + masculine: + - def: To sleep for a long time. +- base: zushichya + pos: + adj: + - def: Growing older. + noun: + masculine: + - def: Amber. + neuter: + - def: A resin tree. + verb: + feminine: + - def: To solidify one's opinions. diff --git a/dist/dictionary/a.json b/dist/dictionary/a.json new file mode 100644 index 0000000..ed062f8 --- /dev/null +++ b/dist/dictionary/a.json @@ -0,0 +1,58 @@ +[ + { + "base": "aeno", + "pos": { + "noun": { + "neuter": [ + { + "def": "Bird eggs." + } + ] + }, + "verb": { + "feminine": [ + { + "def": "To destroy something by crushing it." + } + ] + } + } + }, + { + "base": "afukijomu", + "pos": { + "verb": { + "feminine": [ + { + "def": "To shape or manipulate the physical form using magic.\n" + }, + { + "def": "To sculpt solid materials.\n" + } + ] + } + } + }, + { + "base": "ashyobyupa", + "pos": { + "noun": { + "neuter": [ + { + "def": "A chrysanthemum." + }, + { + "def": "A flower with a lot of petals." + } + ] + }, + "verb": { + "feminine": [ + { + "def": "To use many different tools or techinques to look beautiful." + } + ] + } + } + } +] \ No newline at end of file diff --git a/dist/dictionary/a.yaml b/dist/dictionary/a.yaml new file mode 100644 index 0000000..39cda6d --- /dev/null +++ b/dist/dictionary/a.yaml @@ -0,0 +1,25 @@ +- base: aeno + pos: + noun: + neuter: + - def: Bird eggs. + verb: + feminine: + - def: To destroy something by crushing it. +- base: afukijomu + pos: + verb: + feminine: + - def: | + To shape or manipulate the physical form using magic. + - def: | + To sculpt solid materials. +- base: ashyobyupa + pos: + noun: + neuter: + - def: A chrysanthemum. + - def: A flower with a lot of petals. + verb: + feminine: + - def: To use many different tools or techinques to look beautiful. diff --git a/dist/dictionary/ba.json b/dist/dictionary/ba.json new file mode 100644 index 0000000..f5d81a8 --- /dev/null +++ b/dist/dictionary/ba.json @@ -0,0 +1,36 @@ +[ + { + "base": "baba", + "pos": { + "noun": { + "masculine": [ + { + "def": "Heart." + } + ] + } + } + }, + { + "base": "barichi", + "pos": { + "adj": [ + { + "def": "Mundane, non-magical." + } + ] + } + }, + { + "base": "barichiroma", + "pos": { + "noun": { + "neuter": [ + { + "def": "Magic-less person." + } + ] + } + } + } +] \ No newline at end of file diff --git a/dist/dictionary/ba.yaml b/dist/dictionary/ba.yaml new file mode 100644 index 0000000..28c6f0c --- /dev/null +++ b/dist/dictionary/ba.yaml @@ -0,0 +1,14 @@ +- base: baba + pos: + noun: + masculine: + - def: Heart. +- base: barichi + pos: + adj: + - def: 'Mundane, non-magical.' +- base: barichiroma + pos: + noun: + neuter: + - def: Magic-less person. diff --git a/dist/dictionary/be.json b/dist/dictionary/be.json new file mode 100644 index 0000000..1177f84 --- /dev/null +++ b/dist/dictionary/be.json @@ -0,0 +1,32 @@ +[ + { + "base": "bedano", + "pos": { + "noun": { + "feminine": [ + { + "def": "A pinch of something, used for cooking." + }, + { + "def": "1/64th of a wudūna used for measuring delicate weights." + }, + { + "def": "OOW 0.2 g." + } + ] + } + } + }, + { + "base": "benkidofu", + "pos": { + "noun": { + "neuter": [ + { + "def": "The natural shielding of resonance damage against the weaker of two opposing magical fields." + } + ] + } + } + } +] \ No newline at end of file diff --git a/dist/dictionary/be.yaml b/dist/dictionary/be.yaml new file mode 100644 index 0000000..35f9b91 --- /dev/null +++ b/dist/dictionary/be.yaml @@ -0,0 +1,14 @@ +- base: bedano + pos: + noun: + feminine: + - def: 'A pinch of something, used for cooking.' + - def: 1/64th of a wudūna used for measuring delicate weights. + - def: OOW 0.2 g. +- base: benkidofu + pos: + noun: + neuter: + - def: >- + The natural shielding of resonance damage against the weaker of two + opposing magical fields. diff --git a/dist/dictionary/bi.json b/dist/dictionary/bi.json new file mode 100644 index 0000000..ad9e74a --- /dev/null +++ b/dist/dictionary/bi.json @@ -0,0 +1,95 @@ +[ + { + "base": "bichiru", + "pos": { + "noun": { + "feminine": [ + { + "def": "A traditional drink of the northern desert primarily made from fermented cactus sap. It typically has a milky appearance." + } + ] + } + } + }, + { + "base": "bidano", + "pos": { + "noun": { + "feminine": [ + { + "def": "A pinch of something, used for cooking." + } + ] + }, + "verb": { + "neuter": [ + { + "def": "To be nit-picky or find fault in tiny details." + } + ] + } + } + }, + { + "base": "bidosomi", + "pos": { + "adj": [ + { + "def": "Personalized or customized for an individual.\n" + }, + { + "def": "A spirit that has a personal or unique manifestion for individual members of the clan. This manifestion can be a physical or an ethereal one.\n", + "reference": [ + { + "excerpt": "Rutejìmo turned back to the valley. Coming in from all directions were the couriers of the clan. They all ran after translucent small birds, the manifestation of Shimusògo; the speed of their sprints kicking up long plumes of sand and dust.\n", + "identifier": "0100-02", + "title": "Sand and Bone 1", + "url": "https://fedran.com/sand-and-bone/chapter-01/" + } + ] + } + ], + "adv": [ + { + "def": "An action that is tailored or adapted for the subject.\n" + } + ] + } + }, + { + "base": "bikiku", + "pos": { + "noun": { + "feminine": [ + { + "def": "Flea, louse." + } + ] + } + } + }, + { + "base": "bimugi", + "pos": { + "noun": { + "masculine": [ + { + "def": "Horn." + } + ] + } + } + }, + { + "base": "bire", + "pos": { + "noun": { + "masculine": [ + { + "def": "Night." + } + ] + } + } + } +] \ No newline at end of file diff --git a/dist/dictionary/bi.yaml b/dist/dictionary/bi.yaml new file mode 100644 index 0000000..272c75a --- /dev/null +++ b/dist/dictionary/bi.yaml @@ -0,0 +1,51 @@ +- base: bichiru + pos: + noun: + feminine: + - def: >- + A traditional drink of the northern desert primarily made from + fermented cactus sap. It typically has a milky appearance. +- base: bidano + pos: + noun: + feminine: + - def: 'A pinch of something, used for cooking.' + verb: + neuter: + - def: To be nit-picky or find fault in tiny details. +- base: bidosomi + pos: + adj: + - def: | + Personalized or customized for an individual. + - def: > + A spirit that has a personal or unique manifestion for individual + members of the clan. This manifestion can be a physical or an ethereal + one. + reference: + - excerpt: > + Rutejìmo turned back to the valley. Coming in from all directions + were the couriers of the clan. They all ran after translucent + small birds, the manifestation of Shimusògo; the speed of their + sprints kicking up long plumes of sand and dust. + identifier: 0100-02 + title: Sand and Bone 1 + url: 'https://fedran.com/sand-and-bone/chapter-01/' + adv: + - def: | + An action that is tailored or adapted for the subject. +- base: bikiku + pos: + noun: + feminine: + - def: 'Flea, louse.' +- base: bimugi + pos: + noun: + masculine: + - def: Horn. +- base: bire + pos: + noun: + masculine: + - def: Night. diff --git a/dist/dictionary/bo.json b/dist/dictionary/bo.json new file mode 100644 index 0000000..f987d58 --- /dev/null +++ b/dist/dictionary/bo.json @@ -0,0 +1,46 @@ +[ + { + "base": "bochigomasu", + "pos": { + "verb": { + "neuter": [ + { + "def": "Do perform something that takes a week to complete." + } + ] + } + } + }, + { + "base": "bokiko", + "pos": { + "noun": { + "feminine": [ + { + "def": "Fire smoke." + } + ] + } + } + }, + { + "base": "bozo", + "pos": { + "verb": { + "feminine": [ + { + "def": "To cook or prepare a small meal or snack." + }, + { + "def": "To prepare a meal for oneself." + } + ], + "masculine": [ + { + "def": "To cook or prepare a large meal." + } + ] + } + } + } +] \ No newline at end of file diff --git a/dist/dictionary/bo.yaml b/dist/dictionary/bo.yaml new file mode 100644 index 0000000..8a6fb0b --- /dev/null +++ b/dist/dictionary/bo.yaml @@ -0,0 +1,18 @@ +- base: bochigomasu + pos: + verb: + neuter: + - def: Do perform something that takes a week to complete. +- base: bokiko + pos: + noun: + feminine: + - def: Fire smoke. +- base: bozo + pos: + verb: + feminine: + - def: To cook or prepare a small meal or snack. + - def: To prepare a meal for oneself. + masculine: + - def: To cook or prepare a large meal. diff --git a/dist/dictionary/bu.json b/dist/dictionary/bu.json new file mode 100644 index 0000000..9e04e4a --- /dev/null +++ b/dist/dictionary/bu.json @@ -0,0 +1,38 @@ +[ + { + "base": "bupo", + "pos": { + "verb": { + "feminine": [ + { + "def": "Swim." + } + ] + } + } + }, + { + "base": "bupobo", + "pos": { + "noun": { + "feminine": [ + { + "def": "Fish." + } + ] + } + } + }, + { + "base": "burukano", + "pos": { + "noun": { + "neuter": [ + { + "def": "The tendency for members of the same clan to exhibit common traits, morals, and decisions common with the clan's spirit.\n" + } + ] + } + } + } +] \ No newline at end of file diff --git a/dist/dictionary/bu.yaml b/dist/dictionary/bu.yaml new file mode 100644 index 0000000..8fc90b2 --- /dev/null +++ b/dist/dictionary/bu.yaml @@ -0,0 +1,17 @@ +- base: bupo + pos: + verb: + feminine: + - def: Swim. +- base: bupobo + pos: + noun: + feminine: + - def: Fish. +- base: burukano + pos: + noun: + neuter: + - def: > + The tendency for members of the same clan to exhibit common traits, + morals, and decisions common with the clan's spirit. diff --git a/dist/dictionary/bya.json b/dist/dictionary/bya.json new file mode 100644 index 0000000..2494899 --- /dev/null +++ b/dist/dictionary/bya.json @@ -0,0 +1,14 @@ +[ + { + "base": "byan", + "pos": { + "noun": { + "neuter": [ + { + "def": "Green." + } + ] + } + } + } +] \ No newline at end of file diff --git a/dist/dictionary/bya.yaml b/dist/dictionary/bya.yaml new file mode 100644 index 0000000..1a321bb --- /dev/null +++ b/dist/dictionary/bya.yaml @@ -0,0 +1,5 @@ +- base: byan + pos: + noun: + neuter: + - def: Green. diff --git a/dist/dictionary/byo.json b/dist/dictionary/byo.json new file mode 100644 index 0000000..6c9f216 --- /dev/null +++ b/dist/dictionary/byo.json @@ -0,0 +1,68 @@ +[ + { + "base": "byobi", + "pos": { + "noun": { + "feminine": [ + { + "def": "As [byòbi](../byo/byobi.markdown) [n.1] but female." + } + ], + "masculine": [ + { + "def": "A male rabbit, hare, or other member of the leporine family." + } + ], + "neuter": [ + { + "def": "As [byòbi](../byo/byobi.markdown) [n.1] but a young bunny or kit." + } + ] + } + } + }, + { + "base": "byomokishi", + "pos": { + "noun": { + "neuter": [ + { + "def": "Non-desert people." + } + ] + } + } + }, + { + "base": "byomushike", + "pos": { + "noun": { + "neuter": [ + { + "def": "Outsider." + } + ] + } + } + }, + { + "base": "byoni", + "pos": { + "verb": { + "feminine": [ + { + "def": "To have a little cry." + } + ], + "masculine": [ + { + "def": "To bawl or cry loudly." + }, + { + "def": "To break down sobbing." + } + ] + } + } + } +] \ No newline at end of file diff --git a/dist/dictionary/byo.yaml b/dist/dictionary/byo.yaml new file mode 100644 index 0000000..6f8a4ff --- /dev/null +++ b/dist/dictionary/byo.yaml @@ -0,0 +1,27 @@ +- base: byobi + pos: + noun: + feminine: + - def: 'As [byòbi](../byo/byobi.markdown) [n.1] but female.' + masculine: + - def: 'A male rabbit, hare, or other member of the leporine family.' + neuter: + - def: 'As [byòbi](../byo/byobi.markdown) [n.1] but a young bunny or kit.' +- base: byomokishi + pos: + noun: + neuter: + - def: Non-desert people. +- base: byomushike + pos: + noun: + neuter: + - def: Outsider. +- base: byoni + pos: + verb: + feminine: + - def: To have a little cry. + masculine: + - def: To bawl or cry loudly. + - def: To break down sobbing. diff --git a/dist/dictionary/chi.json b/dist/dictionary/chi.json new file mode 100644 index 0000000..6fa403b --- /dev/null +++ b/dist/dictionary/chi.json @@ -0,0 +1,125 @@ +[ + { + "base": "chidona", + "pos": { + "noun": { + "neuter": [ + { + "def": "Pebbles or small rocks." + } + ] + }, + "verb": { + "masculine": [ + { + "def": "To throw or cause many small problems in rapid succession." + } + ] + } + } + }, + { + "base": "chifu", + "pos": { + "adj": [ + { + "def": "Long." + } + ] + } + }, + { + "base": "chifumo", + "pos": { + "noun": { + "masculine": [ + { + "def": "Cold weather." + } + ] + } + } + }, + { + "base": "chimoga", + "pos": { + "noun": { + "neuter": [ + { + "def": "A measurement of distance." + }, + { + "def": "A surveyor's chain of 66 feet or 4 [romōga](../ro/romogo.markdown)." + } + ] + }, + "verb": { + "feminine": [ + { + "def": "To measure or pace something out that is approximately a [chimōga](../chi/chimōga.markdown) distance." + }, + { + "def": "To measure something out in terms of [chimōga](../chi/chimōga.markdown) distance." + } + ] + } + } + }, + { + "base": "chiruni", + "pos": { + "noun": { + "feminine": [ + { + "def": "Warm weather." + } + ] + } + } + }, + { + "base": "chisogura", + "pos": { + "noun": { + "masculine": [ + { + "def": "A physical and spiritual call for help from other clan members.\n", + "reference": [ + { + "excerpt": "\"Sands!\" Desòchu threw back his head, exploded into an inferno of golden flames, and screamed. It wasn't the sound of a human that came out of his mouth, but the screech of a bird that echoed in Rutejìmo's head.\nThe sound crashed into Rutejìmo. It echoed beyond his ears and something deep in his heart responded. He had to obey it, had to do something. It was the cry of Shimusògo himself.\nRutejìmo felt the cry force his attention toward Desòchu. A need to do something rose up inside him, a command that came directly from the clan spirit. He stared into Desòchu's flaming form despite the pain of looking into the brightness. Tears burned in his eyes from the effort.\n...\nPower rose around him. Looking up, he saw the clan responding to Desòchu's cry. Every adult of the clan converged on the valley, each one leaving a trail of golden flames. The children who were playing were knocked aside by adults all sprinting toward the entrance.\n", + "identifier": "0100-01", + "title": "Sand and Ash 32", + "url": "https://fedran.com/sand-and-ash/chapter-32/" + } + ] + } + ] + }, + "verb": { + "neuter": [ + { + "def": "To make a spiritual call for help from other clan members.\n" + } + ] + } + } + }, + { + "base": "chisokuku", + "pos": { + "noun": { + "masculine": [ + { + "def": "The amount of water a clan needs in a day." + }, + { + "def": "A volume of liquid equal to 66 [kokéku](../ko/kokeku.markdown)." + }, + { + "def": "OOW: A volume of liquid equal to 264 L." + } + ] + } + } + } +] \ No newline at end of file diff --git a/dist/dictionary/chi.yaml b/dist/dictionary/chi.yaml new file mode 100644 index 0000000..fd736d5 --- /dev/null +++ b/dist/dictionary/chi.yaml @@ -0,0 +1,80 @@ +- base: chidona + pos: + noun: + neuter: + - def: Pebbles or small rocks. + verb: + masculine: + - def: To throw or cause many small problems in rapid succession. +- base: chifu + pos: + adj: + - def: Long. +- base: chifumo + pos: + noun: + masculine: + - def: Cold weather. +- base: chimoga + pos: + noun: + neuter: + - def: A measurement of distance. + - def: 'A surveyor''s chain of 66 feet or 4 [romōga](../ro/romogo.markdown).' + verb: + feminine: + - def: >- + To measure or pace something out that is approximately a + [chimōga](../chi/chimōga.markdown) distance. + - def: >- + To measure something out in terms of + [chimōga](../chi/chimōga.markdown) distance. +- base: chiruni + pos: + noun: + feminine: + - def: Warm weather. +- base: chisogura + pos: + noun: + masculine: + - def: | + A physical and spiritual call for help from other clan members. + reference: + - excerpt: > + "Sands!" Desòchu threw back his head, exploded into an inferno + of golden flames, and screamed. It wasn't the sound of a human + that came out of his mouth, but the screech of a bird that + echoed in Rutejìmo's head. + + The sound crashed into Rutejìmo. It echoed beyond his ears and + something deep in his heart responded. He had to obey it, had to + do something. It was the cry of Shimusògo himself. + + Rutejìmo felt the cry force his attention toward Desòchu. A need + to do something rose up inside him, a command that came directly + from the clan spirit. He stared into Desòchu's flaming form + despite the pain of looking into the brightness. Tears burned in + his eyes from the effort. + + ... + + Power rose around him. Looking up, he saw the clan responding to + Desòchu's cry. Every adult of the clan converged on the valley, + each one leaving a trail of golden flames. The children who were + playing were knocked aside by adults all sprinting toward the + entrance. + identifier: 0100-01 + title: Sand and Ash 32 + url: 'https://fedran.com/sand-and-ash/chapter-32/' + verb: + neuter: + - def: | + To make a spiritual call for help from other clan members. +- base: chisokuku + pos: + noun: + masculine: + - def: The amount of water a clan needs in a day. + - def: 'A volume of liquid equal to 66 [kokéku](../ko/kokeku.markdown).' + - def: 'OOW: A volume of liquid equal to 264 L.' diff --git a/dist/dictionary/cho.json b/dist/dictionary/cho.json new file mode 100644 index 0000000..4ef1e62 --- /dev/null +++ b/dist/dictionary/cho.json @@ -0,0 +1,75 @@ +[ + { + "base": "chobire", + "pos": { + "noun": { + "masculine": [ + { + "def": "The moon." + } + ] + } + } + }, + { + "base": "chochi", + "pos": { + "noun": { + "masculine": [ + { + "def": "A lunar cycle or month." + } + ] + } + } + }, + { + "base": "chon", + "pos": { + "adj": [ + { + "def": "Black." + } + ] + } + }, + { + "base": "chonesu", + "pos": { + "noun": { + "feminine": [ + { + "def": "Stars." + } + ] + } + } + }, + { + "base": "chota", + "pos": { + "noun": { + "masculine": [ + { + "def": "A lunar \"day\"." + } + ] + } + } + }, + { + "base": "chotafuchi", + "pos": { + "noun": { + "masculine": [ + { + "def": "The period where the moon is below the horizon." + }, + { + "def": "When moon-based powers don't work." + } + ] + } + } + } +] \ No newline at end of file diff --git a/dist/dictionary/cho.yaml b/dist/dictionary/cho.yaml new file mode 100644 index 0000000..fcd4d23 --- /dev/null +++ b/dist/dictionary/cho.yaml @@ -0,0 +1,30 @@ +- base: chobire + pos: + noun: + masculine: + - def: The moon. +- base: chochi + pos: + noun: + masculine: + - def: A lunar cycle or month. +- base: chon + pos: + adj: + - def: Black. +- base: chonesu + pos: + noun: + feminine: + - def: Stars. +- base: chota + pos: + noun: + masculine: + - def: A lunar "day". +- base: chotafuchi + pos: + noun: + masculine: + - def: The period where the moon is below the horizon. + - def: When moon-based powers don't work. diff --git a/dist/dictionary/chyo.json b/dist/dictionary/chyo.json new file mode 100644 index 0000000..8a40e01 --- /dev/null +++ b/dist/dictionary/chyo.json @@ -0,0 +1,44 @@ +[ + { + "base": "chyomigu", + "pos": { + "noun": { + "neuter": [ + { + "def": "1/10th of a domīgu." + }, + { + "def": "OOW: 2.01 cm" + } + ] + } + } + }, + { + "base": "chyore", + "pos": { + "noun": { + "masculine": [ + { + "def": "Snake" + }, + { + "def": "mizonekima chyòre - giant snake" + } + ] + } + } + }, + { + "base": "chyotemako nakifu", + "pos": { + "noun": { + "feminine": [ + { + "def": "A short poem of two or more phrases where every phrase is the same number of syllables." + } + ] + } + } + } +] \ No newline at end of file diff --git a/dist/dictionary/chyo.yaml b/dist/dictionary/chyo.yaml new file mode 100644 index 0000000..0c49103 --- /dev/null +++ b/dist/dictionary/chyo.yaml @@ -0,0 +1,19 @@ +- base: chyomigu + pos: + noun: + neuter: + - def: 1/10th of a domīgu. + - def: 'OOW: 2.01 cm' +- base: chyore + pos: + noun: + masculine: + - def: Snake + - def: mizonekima chyòre - giant snake +- base: chyotemako nakifu + pos: + noun: + feminine: + - def: >- + A short poem of two or more phrases where every phrase is the same + number of syllables. diff --git a/dist/dictionary/chyu.json b/dist/dictionary/chyu.json new file mode 100644 index 0000000..197f4bb --- /dev/null +++ b/dist/dictionary/chyu.json @@ -0,0 +1,44 @@ +[ + { + "base": "chyubine", + "pos": { + "noun": { + "feminine": [ + { + "def": "As *chyubìne* (noun 1), but female." + } + ], + "masculine": [ + { + "def": "A male jack-of-trades, someone who had a wide variety of skills." + } + ], + "neuter": [ + { + "def": "A child who has many skills but no specialization." + }, + { + "def": "A child with an uncertain clan affiliation." + } + ] + } + } + }, + { + "base": "chyurena", + "pos": { + "noun": { + "feminine": [ + { + "def": "As *chyurèna* (noun 1), but female." + } + ], + "masculine": [ + { + "def": "A male of a clan which does not have significantly differing levels of magical power among its members." + } + ] + } + } + } +] \ No newline at end of file diff --git a/dist/dictionary/chyu.yaml b/dist/dictionary/chyu.yaml new file mode 100644 index 0000000..92415c4 --- /dev/null +++ b/dist/dictionary/chyu.yaml @@ -0,0 +1,19 @@ +- base: chyubine + pos: + noun: + feminine: + - def: 'As *chyubìne* (noun 1), but female.' + masculine: + - def: 'A male jack-of-trades, someone who had a wide variety of skills.' + neuter: + - def: A child who has many skills but no specialization. + - def: A child with an uncertain clan affiliation. +- base: chyurena + pos: + noun: + feminine: + - def: 'As *chyurèna* (noun 1), but female.' + masculine: + - def: >- + A male of a clan which does not have significantly differing levels + of magical power among its members. diff --git a/dist/dictionary/da.json b/dist/dictionary/da.json new file mode 100644 index 0000000..e46ad71 --- /dev/null +++ b/dist/dictionary/da.json @@ -0,0 +1,80 @@ +[ + { + "base": "dakyofu", + "pos": { + "verb": { + "feminine": [ + { + "def": "To channel magic into a weapon to make it stronger or resilent to attack magic.\n" + } + ], + "masculine": [ + { + "def": "To anticipate an unplesant conversation.\n" + } + ] + } + } + }, + { + "base": "danichyo", + "pos": { + "noun": { + "masculine": [ + { + "def": "An impromptu hiding spot." + } + ], + "neuter": [ + { + "def": "A bird's nest." + } + ] + }, + "verb": { + "feminine": [ + { + "def": "To create something for personal joy." + } + ] + } + } + }, + { + "base": "datemo", + "pos": { + "adv": [ + { + "def": "To perform an action with perception magic.\n" + } + ], + "verb": { + "feminine": [ + { + "def": "To look intently or analyze.\n" + } + ], + "neuter": [ + { + "def": "To percieve or observe.\n" + } + ] + } + } + }, + { + "base": "datsu", + "pos": { + "noun": { + "neuter": [ + { + "def": "The basic unit of weight equal to sofùki worth of clean water." + }, + { + "def": "OOW: 1020 g." + } + ] + } + } + } +] \ No newline at end of file diff --git a/dist/dictionary/da.yaml b/dist/dictionary/da.yaml new file mode 100644 index 0000000..37251ab --- /dev/null +++ b/dist/dictionary/da.yaml @@ -0,0 +1,38 @@ +- base: dakyofu + pos: + verb: + feminine: + - def: > + To channel magic into a weapon to make it stronger or resilent to + attack magic. + masculine: + - def: | + To anticipate an unplesant conversation. +- base: danichyo + pos: + noun: + masculine: + - def: An impromptu hiding spot. + neuter: + - def: A bird's nest. + verb: + feminine: + - def: To create something for personal joy. +- base: datemo + pos: + adv: + - def: | + To perform an action with perception magic. + verb: + feminine: + - def: | + To look intently or analyze. + neuter: + - def: | + To percieve or observe. +- base: datsu + pos: + noun: + neuter: + - def: The basic unit of weight equal to sofùki worth of clean water. + - def: 'OOW: 1020 g.' diff --git a/dist/dictionary/de.json b/dist/dictionary/de.json new file mode 100644 index 0000000..804d16f --- /dev/null +++ b/dist/dictionary/de.json @@ -0,0 +1,62 @@ +[ + { + "base": "defoni", + "pos": { + "noun": { + "masculine": [ + { + "def": "Feather." + } + ] + } + } + }, + { + "base": "demu", + "pos": { + "verb": { + "masculine": [ + { + "def": "Fly." + } + ] + } + } + }, + { + "base": "depa", + "pos": { + "noun": { + "feminine": [ + { + "def": "Bird." + } + ] + } + } + }, + { + "base": "detokishi", + "pos": { + "noun": { + "masculine": [ + { + "def": "Desert folk." + } + ] + } + } + }, + { + "base": "detomusa", + "pos": { + "noun": { + "masculine": [ + { + "def": "Persistent sand storm." + } + ] + } + } + } +] \ No newline at end of file diff --git a/dist/dictionary/de.yaml b/dist/dictionary/de.yaml new file mode 100644 index 0000000..b5baa92 --- /dev/null +++ b/dist/dictionary/de.yaml @@ -0,0 +1,25 @@ +- base: defoni + pos: + noun: + masculine: + - def: Feather. +- base: demu + pos: + verb: + masculine: + - def: Fly. +- base: depa + pos: + noun: + feminine: + - def: Bird. +- base: detokishi + pos: + noun: + masculine: + - def: Desert folk. +- base: detomusa + pos: + noun: + masculine: + - def: Persistent sand storm. diff --git a/dist/dictionary/do.json b/dist/dictionary/do.json new file mode 100644 index 0000000..acc6681 --- /dev/null +++ b/dist/dictionary/do.json @@ -0,0 +1,73 @@ +[ + { + "base": "do", + "pos": { + "pro": [ + { + "def": "You, yours." + } + ] + } + }, + { + "base": "dodera", + "pos": { + "noun": { + "neuter": [ + { + "def": "An object used to hold liquid." + }, + { + "def": "A bucket or bowl." + } + ] + }, + "verb": { + "feminine": [ + { + "def": "To cup one's hands to hold liquids." + } + ] + } + } + }, + { + "base": "domigu", + "pos": { + "noun": { + "neuter": [ + { + "def": "1/100th of a romōga." + }, + { + "def": "OOW: 20.12 cm." + } + ] + } + } + }, + { + "base": "doshyo", + "pos": { + "noun": { + "feminine": [ + { + "def": "Soil, earth." + } + ] + } + } + }, + { + "base": "dotsu", + "pos": { + "noun": { + "masculine": [ + { + "def": "Home." + } + ] + } + } + } +] \ No newline at end of file diff --git a/dist/dictionary/do.yaml b/dist/dictionary/do.yaml new file mode 100644 index 0000000..34d3ff0 --- /dev/null +++ b/dist/dictionary/do.yaml @@ -0,0 +1,29 @@ +- base: do + pos: + pro: + - def: 'You, yours.' +- base: dodera + pos: + noun: + neuter: + - def: An object used to hold liquid. + - def: A bucket or bowl. + verb: + feminine: + - def: To cup one's hands to hold liquids. +- base: domigu + pos: + noun: + neuter: + - def: 1/100th of a romōga. + - def: 'OOW: 20.12 cm.' +- base: doshyo + pos: + noun: + feminine: + - def: 'Soil, earth.' +- base: dotsu + pos: + noun: + masculine: + - def: Home. diff --git a/dist/dictionary/fa.json b/dist/dictionary/fa.json new file mode 100644 index 0000000..c29cbb6 --- /dev/null +++ b/dist/dictionary/fa.json @@ -0,0 +1,68 @@ +[ + { + "base": "faho", + "pos": { + "noun": { + "feminine": [ + { + "def": "ear." + } + ] + } + } + }, + { + "base": "famu", + "pos": { + "noun": { + "neuter": [ + { + "def": "Eye, eyes." + } + ] + } + } + }, + { + "base": "fapodi", + "pos": { + "verb": { + "feminine": [ + { + "def": "To run over long distances." + }, + { + "def": "Endurance running." + } + ], + "masculine": [ + { + "def": "To sprint or run at full speed." + } + ] + } + } + }, + { + "base": "faruku", + "pos": { + "noun": { + "neuter": [ + { + "def": "A toad or frog." + } + ] + } + } + }, + { + "base": "fasa", + "pos": { + "adj": [ + { + "def": "Fast, speedy." + } + ] + } + } +] \ No newline at end of file diff --git a/dist/dictionary/fa.yaml b/dist/dictionary/fa.yaml new file mode 100644 index 0000000..3b4aa68 --- /dev/null +++ b/dist/dictionary/fa.yaml @@ -0,0 +1,27 @@ +- base: faho + pos: + noun: + feminine: + - def: ear. +- base: famu + pos: + noun: + neuter: + - def: 'Eye, eyes.' +- base: fapodi + pos: + verb: + feminine: + - def: To run over long distances. + - def: Endurance running. + masculine: + - def: To sprint or run at full speed. +- base: faruku + pos: + noun: + neuter: + - def: A toad or frog. +- base: fasa + pos: + adj: + - def: 'Fast, speedy.' diff --git a/dist/dictionary/fe.json b/dist/dictionary/fe.json new file mode 100644 index 0000000..66b03b1 --- /dev/null +++ b/dist/dictionary/fe.json @@ -0,0 +1,12 @@ +[ + { + "base": "fechi", + "pos": { + "adj": [ + { + "def": "Greater or superior in social rank." + } + ] + } + } +] \ No newline at end of file diff --git a/dist/dictionary/fe.yaml b/dist/dictionary/fe.yaml new file mode 100644 index 0000000..282ab3a --- /dev/null +++ b/dist/dictionary/fe.yaml @@ -0,0 +1,4 @@ +- base: fechi + pos: + adj: + - def: Greater or superior in social rank. diff --git a/dist/dictionary/fi.json b/dist/dictionary/fi.json new file mode 100644 index 0000000..4ab7521 --- /dev/null +++ b/dist/dictionary/fi.json @@ -0,0 +1,14 @@ +[ + { + "base": "figi", + "pos": { + "noun": { + "feminine": [ + { + "def": "Teeth, bite." + } + ] + } + } + } +] \ No newline at end of file diff --git a/dist/dictionary/fi.yaml b/dist/dictionary/fi.yaml new file mode 100644 index 0000000..8673536 --- /dev/null +++ b/dist/dictionary/fi.yaml @@ -0,0 +1,5 @@ +- base: figi + pos: + noun: + feminine: + - def: 'Teeth, bite.' diff --git a/dist/dictionary/fo.json b/dist/dictionary/fo.json new file mode 100644 index 0000000..810d6cb --- /dev/null +++ b/dist/dictionary/fo.json @@ -0,0 +1,24 @@ +[ + { + "base": "foni", + "pos": { + "noun": { + "neuter": [ + { + "def": "Head." + } + ] + } + } + }, + { + "base": "fopu", + "pos": { + "adj": [ + { + "def": "Full, stuffed." + } + ] + } + } +] \ No newline at end of file diff --git a/dist/dictionary/fo.yaml b/dist/dictionary/fo.yaml new file mode 100644 index 0000000..b795b55 --- /dev/null +++ b/dist/dictionary/fo.yaml @@ -0,0 +1,9 @@ +- base: foni + pos: + noun: + neuter: + - def: Head. +- base: fopu + pos: + adj: + - def: 'Full, stuffed.' diff --git a/dist/dictionary/fu.json b/dist/dictionary/fu.json new file mode 100644 index 0000000..ec8bb3c --- /dev/null +++ b/dist/dictionary/fu.json @@ -0,0 +1,69 @@ +[ + { + "base": "fuchi", + "pos": { + "noun": { + "masculine": [ + { + "def": "Nose." + } + ] + } + } + }, + { + "base": "fugi", + "pos": { + "verb": { + "neuter": [ + { + "def": "See, sight." + } + ] + } + } + }, + { + "base": "fugimo", + "pos": { + "noun": { + "masculine": [ + { + "def": "Mouth." + } + ] + } + } + }, + { + "base": "fumiga", + "pos": { + "noun": { + "feminine": [ + { + "def": "Claw." + } + ] + } + } + }, + { + "base": "funami", + "pos": { + "noun": { + "neuter": [ + { + "def": "Sheep or other wool-producing herd creature." + } + ] + }, + "verb": { + "feminine": [ + { + "def": "To shave or remove hair." + } + ] + } + } + } +] \ No newline at end of file diff --git a/dist/dictionary/fu.yaml b/dist/dictionary/fu.yaml new file mode 100644 index 0000000..59c9ff3 --- /dev/null +++ b/dist/dictionary/fu.yaml @@ -0,0 +1,28 @@ +- base: fuchi + pos: + noun: + masculine: + - def: Nose. +- base: fugi + pos: + verb: + neuter: + - def: 'See, sight.' +- base: fugimo + pos: + noun: + masculine: + - def: Mouth. +- base: fumiga + pos: + noun: + feminine: + - def: Claw. +- base: funami + pos: + noun: + neuter: + - def: Sheep or other wool-producing herd creature. + verb: + feminine: + - def: To shave or remove hair. diff --git a/dist/dictionary/ga.json b/dist/dictionary/ga.json new file mode 100644 index 0000000..7dcc91b --- /dev/null +++ b/dist/dictionary/ga.json @@ -0,0 +1,111 @@ +[ + { + "base": "gabuchigika", + "pos": { + "noun": { + "masculine": [ + { + "def": "1. A large area of land claimed by a clan." + }, + { + "def": "120 [gachigyukōga](../ga/gachigyukōga.markdown)." + } + ] + } + } + }, + { + "base": "gachi", + "pos": { + "verb": { + "masculine": [ + { + "def": "Eat." + } + ] + } + } + }, + { + "base": "gachigyukoga", + "pos": { + "noun": { + "neuter": [ + { + "def": "A \"plot\" of land one chimōga by one gyukōga." + }, + { + "def": "OOW: 1 acre." + } + ] + } + } + }, + { + "base": "gamekoji", + "pos": { + "noun": { + "neuter": [ + { + "def": "A miscarriage." + } + ] + } + } + }, + { + "base": "gamibita", + "pos": { + "adj": [ + { + "def": "A magical talent that charges a physical item with explosive force.\n", + "reference": [ + { + "excerpt": "And then the dépa was there, sprinting in a circle around Chimípu. Her movements accelerated, and a vortex of dust rose up around her, blurring her form. The sling formed a disk as it spun with her.\nShe stopped suddenly and released one end of the cloth. The rock shot out and crossed the valley in an instant. It left ripples in the air as raw power rolled off the stone. A crack of air shook Rutejìmo from its passing. The stone shattered at the base of a nest and there was a shower of blood and feathers.\n", + "identifier": "0100-00", + "title": "Sand and Blood 17", + "url": "https://fedran.com/sand-and-bone/chapter-17/" + } + ] + } + ], + "noun": { + "feminine": [ + { + "def": "A bang or sharp noise.\n" + }, + { + "def": "Firecrackers or celebratory explosions.\n" + } + ], + "masculine": [ + { + "def": "A large explosion that does significant damage.\n" + } + ] + } + } + }, + { + "base": "gatiru", + "pos": { + "noun": { + "neuter": [ + { + "def": "A wild dog-like creature." + }, + { + "def": "A coyote." + } + ] + }, + "verb": { + "masculine": [ + { + "def": "To rummage around scraps for food." + } + ] + } + } + } +] \ No newline at end of file diff --git a/dist/dictionary/ga.yaml b/dist/dictionary/ga.yaml new file mode 100644 index 0000000..876021e --- /dev/null +++ b/dist/dictionary/ga.yaml @@ -0,0 +1,60 @@ +- base: gabuchigika + pos: + noun: + masculine: + - def: 1. A large area of land claimed by a clan. + - def: '120 [gachigyukōga](../ga/gachigyukōga.markdown).' +- base: gachi + pos: + verb: + masculine: + - def: Eat. +- base: gachigyukoga + pos: + noun: + neuter: + - def: A "plot" of land one chimōga by one gyukōga. + - def: 'OOW: 1 acre.' +- base: gamekoji + pos: + noun: + neuter: + - def: A miscarriage. +- base: gamibita + pos: + adj: + - def: | + A magical talent that charges a physical item with explosive force. + reference: + - excerpt: > + And then the dépa was there, sprinting in a circle around Chimípu. + Her movements accelerated, and a vortex of dust rose up around + her, blurring her form. The sling formed a disk as it spun with + her. + + She stopped suddenly and released one end of the cloth. The rock + shot out and crossed the valley in an instant. It left ripples in + the air as raw power rolled off the stone. A crack of air shook + Rutejìmo from its passing. The stone shattered at the base of a + nest and there was a shower of blood and feathers. + identifier: 0100-00 + title: Sand and Blood 17 + url: 'https://fedran.com/sand-and-bone/chapter-17/' + noun: + feminine: + - def: | + A bang or sharp noise. + - def: | + Firecrackers or celebratory explosions. + masculine: + - def: | + A large explosion that does significant damage. +- base: gatiru + pos: + noun: + neuter: + - def: A wild dog-like creature. + - def: A coyote. + verb: + masculine: + - def: To rummage around scraps for food. diff --git a/dist/dictionary/ge.json b/dist/dictionary/ge.json new file mode 100644 index 0000000..df8f578 --- /dev/null +++ b/dist/dictionary/ge.json @@ -0,0 +1,34 @@ +[ + { + "base": "ge", + "pos": { + "adj": [ + { + "def": "My clan." + } + ] + } + }, + { + "base": "gen", + "pos": { + "noun": { + "feminine": [ + { + "def": "As *gèn* (noun 1), but as a feminine clan spirit." + } + ], + "masculine": [ + { + "def": "My clan, when referencing a clan with a masculine spirit." + } + ], + "neuter": [ + { + "def": "As *gèn* (noun 1), but as a neuter clan spirit." + } + ] + } + } + } +] \ No newline at end of file diff --git a/dist/dictionary/ge.yaml b/dist/dictionary/ge.yaml new file mode 100644 index 0000000..647f482 --- /dev/null +++ b/dist/dictionary/ge.yaml @@ -0,0 +1,13 @@ +- base: ge + pos: + adj: + - def: My clan. +- base: gen + pos: + noun: + feminine: + - def: 'As *gèn* (noun 1), but as a feminine clan spirit.' + masculine: + - def: 'My clan, when referencing a clan with a masculine spirit.' + neuter: + - def: 'As *gèn* (noun 1), but as a neuter clan spirit.' diff --git a/dist/dictionary/gi.json b/dist/dictionary/gi.json new file mode 100644 index 0000000..516f20e --- /dev/null +++ b/dist/dictionary/gi.json @@ -0,0 +1,101 @@ +[ + { + "base": "gichyoku", + "pos": { + "noun": { + "feminine": [ + { + "def": "A cutting or slicing force or energy.\n" + } + ] + } + } + }, + { + "base": "gidajimo", + "pos": { + "noun": { + "feminine": [ + { + "def": "As *gidajìmo* (noun 1), but where the female is the primary or sole caregiver of any children." + } + ], + "masculine": [ + { + "def": "A marriage between an adult man and woman where the male is the primary or only caretaker for any children (including step-children)." + } + ], + "neuter": [ + { + "def": "As *gidajìmo* (noun 1), but where either both members are equal in raising children or the marriage has not produced any children." + } + ] + }, + "verb": { + "feminine": [ + { + "def": "A quiet or private marriage ceremony." + } + ], + "masculine": [ + { + "def": "A marriage ceremony performed with a significant amount of ceremony, guests, or planning." + } + ] + } + } + }, + { + "base": "gimetsui", + "pos": { + "verb": { + "masculine": [ + { + "def": "To give birth to a living child." + } + ], + "neuter": [ + { + "def": "To lay eggs or other non-live birth." + } + ] + } + } + }, + { + "base": "gitamafu", + "pos": { + "noun": { + "feminine": [ + { + "def": "Shared senses among two or more people.\n" + } + ] + }, + "verb": { + "feminine": [ + { + "def": "To recieve senses from an external source.\n" + } + ], + "masculine": [ + { + "def": "To project senses or perceptions into someone else.\n" + } + ] + } + } + }, + { + "base": "gitopoga", + "pos": { + "verb": { + "masculine": [ + { + "def": "To have unenthusiastic sex solely for purposes of reproduction." + } + ] + } + } + } +] \ No newline at end of file diff --git a/dist/dictionary/gi.yaml b/dist/dictionary/gi.yaml new file mode 100644 index 0000000..149c462 --- /dev/null +++ b/dist/dictionary/gi.yaml @@ -0,0 +1,54 @@ +- base: gichyoku + pos: + noun: + feminine: + - def: | + A cutting or slicing force or energy. +- base: gidajimo + pos: + noun: + feminine: + - def: >- + As *gidajìmo* (noun 1), but where the female is the primary or sole + caregiver of any children. + masculine: + - def: >- + A marriage between an adult man and woman where the male is the + primary or only caretaker for any children (including + step-children). + neuter: + - def: >- + As *gidajìmo* (noun 1), but where either both members are equal in + raising children or the marriage has not produced any children. + verb: + feminine: + - def: A quiet or private marriage ceremony. + masculine: + - def: >- + A marriage ceremony performed with a significant amount of ceremony, + guests, or planning. +- base: gimetsui + pos: + verb: + masculine: + - def: To give birth to a living child. + neuter: + - def: To lay eggs or other non-live birth. +- base: gitamafu + pos: + noun: + feminine: + - def: | + Shared senses among two or more people. + verb: + feminine: + - def: | + To recieve senses from an external source. + masculine: + - def: | + To project senses or perceptions into someone else. +- base: gitopoga + pos: + verb: + masculine: + - def: To have unenthusiastic sex solely for purposes of reproduction. diff --git a/dist/dictionary/go.json b/dist/dictionary/go.json new file mode 100644 index 0000000..26a4d77 --- /dev/null +++ b/dist/dictionary/go.json @@ -0,0 +1,29 @@ +[ + { + "base": "gokote", + "pos": { + "noun": { + "neuter": [ + { + "def": "A solar week consisting of eight rōte." + } + ] + } + } + }, + { + "base": "gomata", + "pos": { + "noun": { + "neuter": [ + { + "def": "1/128 of a māsa." + }, + { + "def": "OOW: a \"minute\"." + } + ] + } + } + } +] \ No newline at end of file diff --git a/dist/dictionary/go.yaml b/dist/dictionary/go.yaml new file mode 100644 index 0000000..1450444 --- /dev/null +++ b/dist/dictionary/go.yaml @@ -0,0 +1,11 @@ +- base: gokote + pos: + noun: + neuter: + - def: A solar week consisting of eight rōte. +- base: gomata + pos: + noun: + neuter: + - def: 1/128 of a māsa. + - def: 'OOW: a "minute".' diff --git a/dist/dictionary/gu.json b/dist/dictionary/gu.json new file mode 100644 index 0000000..f2301ae --- /dev/null +++ b/dist/dictionary/gu.json @@ -0,0 +1,26 @@ +[ + { + "base": "gupa", + "pos": { + "verb": { + "masculine": [ + { + "def": "Gulp, drink." + } + ] + } + } + }, + { + "base": "gupiji", + "pos": { + "noun": { + "neuter": [ + { + "def": "Valley" + } + ] + } + } + } +] \ No newline at end of file diff --git a/dist/dictionary/gu.yaml b/dist/dictionary/gu.yaml new file mode 100644 index 0000000..2b77699 --- /dev/null +++ b/dist/dictionary/gu.yaml @@ -0,0 +1,10 @@ +- base: gupa + pos: + verb: + masculine: + - def: 'Gulp, drink.' +- base: gupiji + pos: + noun: + neuter: + - def: Valley diff --git a/dist/dictionary/gyu.json b/dist/dictionary/gyu.json new file mode 100644 index 0000000..10f9f8a --- /dev/null +++ b/dist/dictionary/gyu.json @@ -0,0 +1,20 @@ +[ + { + "base": "gyukoga", + "pos": { + "noun": { + "neuter": [ + { + "def": "1. 80 chimōga." + }, + { + "def": "1/9th the distance an average person can walk in a māsa." + }, + { + "def": "OOW: 1 mile." + } + ] + } + } + } +] \ No newline at end of file diff --git a/dist/dictionary/gyu.yaml b/dist/dictionary/gyu.yaml new file mode 100644 index 0000000..4bdd64b --- /dev/null +++ b/dist/dictionary/gyu.yaml @@ -0,0 +1,7 @@ +- base: gyukoga + pos: + noun: + neuter: + - def: 1. 80 chimōga. + - def: 1/9th the distance an average person can walk in a māsa. + - def: 'OOW: 1 mile.' diff --git a/dist/dictionary/ha.json b/dist/dictionary/ha.json new file mode 100644 index 0000000..3a71aee --- /dev/null +++ b/dist/dictionary/ha.json @@ -0,0 +1,82 @@ +[ + { + "base": "hachifobu", + "pos": { + "noun": { + "neuter": [ + { + "def": "The trial when a teenager about to manifest power and various spirits present themselves to see if there is a natural fit.\n" + } + ] + } + } + }, + { + "base": "hachifu", + "pos": { + "noun": { + "neuter": [ + { + "def": "Path, road, trail." + } + ] + } + } + }, + { + "base": "hamani", + "pos": { + "noun": { + "neuter": [ + { + "def": "A mountain lion." + }, + { + "def": "A large cat." + } + ] + }, + "verb": { + "masculine": [ + { + "def": "To seek out a romantic or sexual partner during nocturnal events." + } + ] + } + } + }, + { + "base": "hanako", + "pos": { + "noun": { + "feminine": [ + { + "def": "A large horn of a creature." + } + ], + "masculine": [ + { + "def": "A bighorn sheep." + } + ] + }, + "verb": { + "masculine": [ + { + "def": "To butt or interject into a conversation." + } + ] + } + } + }, + { + "base": "hayoka", + "pos": { + "adj": [ + { + "def": "Good, favorable." + } + ] + } + } +] \ No newline at end of file diff --git a/dist/dictionary/ha.yaml b/dist/dictionary/ha.yaml new file mode 100644 index 0000000..c5f605e --- /dev/null +++ b/dist/dictionary/ha.yaml @@ -0,0 +1,35 @@ +- base: hachifobu + pos: + noun: + neuter: + - def: > + The trial when a teenager about to manifest power and various + spirits present themselves to see if there is a natural fit. +- base: hachifu + pos: + noun: + neuter: + - def: 'Path, road, trail.' +- base: hamani + pos: + noun: + neuter: + - def: A mountain lion. + - def: A large cat. + verb: + masculine: + - def: To seek out a romantic or sexual partner during nocturnal events. +- base: hanako + pos: + noun: + feminine: + - def: A large horn of a creature. + masculine: + - def: A bighorn sheep. + verb: + masculine: + - def: To butt or interject into a conversation. +- base: hayoka + pos: + adj: + - def: 'Good, favorable.' diff --git a/dist/dictionary/he.json b/dist/dictionary/he.json new file mode 100644 index 0000000..326c170 --- /dev/null +++ b/dist/dictionary/he.json @@ -0,0 +1,42 @@ +[ + { + "base": "heru", + "pos": { + "noun": { + "feminine": [ + { + "def": "A mare or female horse." + } + ], + "masculine": [ + { + "def": "A stallion or male horse." + } + ], + "neuter": [ + { + "def": "A foal or young horse." + } + ] + } + } + }, + { + "base": "herudaki", + "pos": { + "noun": { + "neuter": [ + { + "def": "The weight of a horse." + }, + { + "def": "30 [madèku](../ma/madèku.markdown)." + }, + { + "def": "OOW: 489.6 kg." + } + ] + } + } + } +] \ No newline at end of file diff --git a/dist/dictionary/he.yaml b/dist/dictionary/he.yaml new file mode 100644 index 0000000..9e80eab --- /dev/null +++ b/dist/dictionary/he.yaml @@ -0,0 +1,16 @@ +- base: heru + pos: + noun: + feminine: + - def: A mare or female horse. + masculine: + - def: A stallion or male horse. + neuter: + - def: A foal or young horse. +- base: herudaki + pos: + noun: + neuter: + - def: The weight of a horse. + - def: '30 [madèku](../ma/madèku.markdown).' + - def: 'OOW: 489.6 kg.' diff --git a/dist/dictionary/hi.json b/dist/dictionary/hi.json new file mode 100644 index 0000000..c694efd --- /dev/null +++ b/dist/dictionary/hi.json @@ -0,0 +1,62 @@ +[ + { + "base": "hichifuma", + "pos": { + "verb": { + "neuter": [ + { + "def": "The effort to keep the nature of spirits and the rite of passage secret from children to facilitate the connection to a clan spirit." + } + ] + } + } + }, + { + "base": "hikomini", + "pos": { + "noun": { + "feminine": [ + { + "def": "A lesser clan spirit, one that gains power from one of the *hikomìni* (noun 1)." + } + ], + "masculine": [ + { + "def": "One of the three greater spirits of the desert: Tachìra, Chobìre, or Mifúno." + } + ] + } + } + }, + { + "base": "hinoto", + "pos": { + "noun": { + "feminine": [ + { + "def": "Tail." + } + ] + } + } + }, + { + "base": "hiropadu", + "pos": { + "noun": { + "neuter": [ + { + "def": "Marks left behind by hooved creatures." + } + ] + }, + "verb": { + "masculine": [ + { + "def": "To kick something with great force." + } + ] + } + } + } +] \ No newline at end of file diff --git a/dist/dictionary/hi.yaml b/dist/dictionary/hi.yaml new file mode 100644 index 0000000..3fd2225 --- /dev/null +++ b/dist/dictionary/hi.yaml @@ -0,0 +1,31 @@ +- base: hichifuma + pos: + verb: + neuter: + - def: >- + The effort to keep the nature of spirits and the rite of passage + secret from children to facilitate the connection to a clan spirit. +- base: hikomini + pos: + noun: + feminine: + - def: >- + A lesser clan spirit, one that gains power from one of the + *hikomìni* (noun 1). + masculine: + - def: >- + One of the three greater spirits of the desert: Tachìra, Chobìre, or + Mifúno. +- base: hinoto + pos: + noun: + feminine: + - def: Tail. +- base: hiropadu + pos: + noun: + neuter: + - def: Marks left behind by hooved creatures. + verb: + masculine: + - def: To kick something with great force. diff --git a/dist/dictionary/ho.json b/dist/dictionary/ho.json new file mode 100644 index 0000000..9712e8e --- /dev/null +++ b/dist/dictionary/ho.json @@ -0,0 +1,61 @@ +[ + { + "base": "hofuma", + "pos": { + "noun": { + "masculine": [ + { + "def": "A hawk or raptor." + }, + { + "def": "A large hunting bird." + } + ] + } + } + }, + { + "base": "hogano", + "pos": { + "adj": [ + { + "def": "Magical powers that manifest through the combined presence of related creatures as opposed to individual members. Common talents include telepathy, mental control, and projected senses through the members of the species.\n", + "example": [ + { + "en": "Legendary are the herd powers of Waryōni.", + "miw": "oa zeshitómi e hogano waryōni" + } + ] + } + ], + "noun": { + "masculine": [ + { + "def": "A group of anything running around making a great deal of noise and distration.\n", + "example": [ + { + "en": "The girls of our clan run like a herd of horses.", + "miw": "oe ge nágo i fapòdi a hogáno" + } + ] + } + ] + } + } + }, + { + "base": "horanakifu", + "pos": { + "verb": { + "feminine": [ + { + "def": "To see solace away from others." + }, + { + "def": "To sequester oneself for contemplation." + } + ] + } + } + } +] \ No newline at end of file diff --git a/dist/dictionary/ho.yaml b/dist/dictionary/ho.yaml new file mode 100644 index 0000000..f977d88 --- /dev/null +++ b/dist/dictionary/ho.yaml @@ -0,0 +1,31 @@ +- base: hofuma + pos: + noun: + masculine: + - def: A hawk or raptor. + - def: A large hunting bird. +- base: hogano + pos: + adj: + - def: > + Magical powers that manifest through the combined presence of related + creatures as opposed to individual members. Common talents include + telepathy, mental control, and projected senses through the members of + the species. + example: + - en: Legendary are the herd powers of Waryōni. + miw: oa zeshitómi e hogano waryōni + noun: + masculine: + - def: > + A group of anything running around making a great deal of noise and + distration. + example: + - en: The girls of our clan run like a herd of horses. + miw: oe ge nágo i fapòdi a hogáno +- base: horanakifu + pos: + verb: + feminine: + - def: To see solace away from others. + - def: To sequester oneself for contemplation. diff --git a/dist/dictionary/hu.json b/dist/dictionary/hu.json new file mode 100644 index 0000000..6ed5d0e --- /dev/null +++ b/dist/dictionary/hu.json @@ -0,0 +1,14 @@ +[ + { + "base": "hupodi", + "pos": { + "verb": { + "feminine": [ + { + "def": "Come, approach." + } + ] + } + } + } +] \ No newline at end of file diff --git a/dist/dictionary/hu.yaml b/dist/dictionary/hu.yaml new file mode 100644 index 0000000..f9f4871 --- /dev/null +++ b/dist/dictionary/hu.yaml @@ -0,0 +1,5 @@ +- base: hupodi + pos: + verb: + feminine: + - def: 'Come, approach.' diff --git a/dist/dictionary/hyo.json b/dist/dictionary/hyo.json new file mode 100644 index 0000000..f5b1cd1 --- /dev/null +++ b/dist/dictionary/hyo.json @@ -0,0 +1,30 @@ +[ + { + "base": "hyobechimo", + "pos": { + "noun": { + "feminine": [ + { + "def": "The ritual of performing *hyobechìmo* (verb 1)." + }, + { + "def": "The rite of passage for young adults." + } + ] + }, + "verb": { + "masculine": [ + { + "def": "The process of putting a young adult in mortal danger to reveal their clan and powers." + }, + { + "def": "To put someone in mortal danger to reveal their true nature." + }, + { + "def": "To stress test something." + } + ] + } + } + } +] \ No newline at end of file diff --git a/dist/dictionary/hyo.yaml b/dist/dictionary/hyo.yaml new file mode 100644 index 0000000..0d767a1 --- /dev/null +++ b/dist/dictionary/hyo.yaml @@ -0,0 +1,13 @@ +- base: hyobechimo + pos: + noun: + feminine: + - def: The ritual of performing *hyobechìmo* (verb 1). + - def: The rite of passage for young adults. + verb: + masculine: + - def: >- + The process of putting a young adult in mortal danger to reveal + their clan and powers. + - def: To put someone in mortal danger to reveal their true nature. + - def: To stress test something. diff --git a/dist/dictionary/hyu.json b/dist/dictionary/hyu.json new file mode 100644 index 0000000..6dac459 --- /dev/null +++ b/dist/dictionary/hyu.json @@ -0,0 +1,14 @@ +[ + { + "base": "hyukadi", + "pos": { + "verb": { + "feminine": [ + { + "def": "To volunteer or give assistance." + } + ] + } + } + } +] \ No newline at end of file diff --git a/dist/dictionary/hyu.yaml b/dist/dictionary/hyu.yaml new file mode 100644 index 0000000..2dd8cf3 --- /dev/null +++ b/dist/dictionary/hyu.yaml @@ -0,0 +1,5 @@ +- base: hyukadi + pos: + verb: + feminine: + - def: To volunteer or give assistance. diff --git a/dist/dictionary/i.json b/dist/dictionary/i.json new file mode 100644 index 0000000..38394c8 --- /dev/null +++ b/dist/dictionary/i.json @@ -0,0 +1,64 @@ +[ + { + "base": "ikugafu", + "pos": { + "adj": [ + { + "def": "To be unkillable." + }, + { + "def": "To be impossible to get rid of." + } + ], + "noun": { + "neuter": [ + { + "def": "A cockroach." + } + ] + } + } + }, + { + "base": "iryoga", + "pos": { + "noun": { + "neuter": [ + { + "def": "The moment of despair or longing when someone's associated celestial body goes below the horizon and they lose their magical powers.\n" + } + ] + }, + "verb": { + "masculine": [ + { + "def": "The dread that rises when one's celestial body is about to go below the horizon.\n" + } + ] + } + } + }, + { + "base": "itochyoku", + "pos": { + "verb": { + "feminine": [ + { + "def": "The teleport or move without crossing the intervening distance.\n", + "reference": [ + { + "excerpt": "“There is no thanks,” she said in her wavering voice, “because this is the way it is. Go on, I will help you break fast.” She turned, and then she was gone. He didn’t see how she moved, only that one moment she was standing in front of him and the other she was a rod away, kneeling at an old fire pit.\n", + "identifier": "0100-02", + "title": "Sand and Bone 22", + "url": "https://fedran.com/sand-and-bone/chapter-22/" + } + ] + }, + { + "def": "The move through shadows or mirrors.\n" + } + ] + } + } + } +] \ No newline at end of file diff --git a/dist/dictionary/i.yaml b/dist/dictionary/i.yaml new file mode 100644 index 0000000..6a10937 --- /dev/null +++ b/dist/dictionary/i.yaml @@ -0,0 +1,38 @@ +- base: ikugafu + pos: + adj: + - def: To be unkillable. + - def: To be impossible to get rid of. + noun: + neuter: + - def: A cockroach. +- base: iryoga + pos: + noun: + neuter: + - def: > + The moment of despair or longing when someone's associated celestial + body goes below the horizon and they lose their magical powers. + verb: + masculine: + - def: > + The dread that rises when one's celestial body is about to go below + the horizon. +- base: itochyoku + pos: + verb: + feminine: + - def: | + The teleport or move without crossing the intervening distance. + reference: + - excerpt: > + “There is no thanks,” she said in her wavering voice, “because + this is the way it is. Go on, I will help you break fast.” She + turned, and then she was gone. He didn’t see how she moved, only + that one moment she was standing in front of him and the other + she was a rod away, kneeling at an old fire pit. + identifier: 0100-02 + title: Sand and Bone 22 + url: 'https://fedran.com/sand-and-bone/chapter-22/' + - def: | + The move through shadows or mirrors. diff --git a/dist/dictionary/ji.json b/dist/dictionary/ji.json new file mode 100644 index 0000000..fb3080c --- /dev/null +++ b/dist/dictionary/ji.json @@ -0,0 +1,21 @@ +[ + { + "base": "jimo", + "pos": { + "noun": { + "neuter": [ + { + "def": "Cloth, fabric, or textile." + } + ] + }, + "verb": { + "feminine": [ + { + "def": "To wrap or bind in cloth or fabrics." + } + ] + } + } + } +] \ No newline at end of file diff --git a/dist/dictionary/ji.yaml b/dist/dictionary/ji.yaml new file mode 100644 index 0000000..74353ad --- /dev/null +++ b/dist/dictionary/ji.yaml @@ -0,0 +1,8 @@ +- base: jimo + pos: + noun: + neuter: + - def: 'Cloth, fabric, or textile.' + verb: + feminine: + - def: To wrap or bind in cloth or fabrics. diff --git a/dist/dictionary/jo.json b/dist/dictionary/jo.json new file mode 100644 index 0000000..bfcb363 --- /dev/null +++ b/dist/dictionary/jo.json @@ -0,0 +1,51 @@ +[ + { + "base": "jokidofu", + "pos": { + "noun": { + "neuter": [ + { + "def": "Magical resonance." + }, + { + "def": "The field that surrounds mages and artifacts." + } + ] + }, + "verb": { + "feminine": [ + { + "def": "To create discomfort in someone else using magical resonance." + } + ], + "masculine": [ + { + "def": "To create pain in someone else using magical resonance." + } + ] + } + } + }, + { + "base": "jokofatsu", + "pos": { + "noun": { + "neuter": [ + { + "def": "A script that has vowels to the right of the consonants." + }, + { + "def": "The script of the Western part of the Mifúno desert." + } + ] + }, + "verb": { + "feminine": [ + { + "def": "To write in a *jokofātsu* script." + } + ] + } + } + } +] \ No newline at end of file diff --git a/dist/dictionary/jo.yaml b/dist/dictionary/jo.yaml new file mode 100644 index 0000000..144c32a --- /dev/null +++ b/dist/dictionary/jo.yaml @@ -0,0 +1,20 @@ +- base: jokidofu + pos: + noun: + neuter: + - def: Magical resonance. + - def: The field that surrounds mages and artifacts. + verb: + feminine: + - def: To create discomfort in someone else using magical resonance. + masculine: + - def: To create pain in someone else using magical resonance. +- base: jokofatsu + pos: + noun: + neuter: + - def: A script that has vowels to the right of the consonants. + - def: The script of the Western part of the Mifúno desert. + verb: + feminine: + - def: To write in a *jokofātsu* script. diff --git a/dist/dictionary/jyo.json b/dist/dictionary/jyo.json new file mode 100644 index 0000000..5e6872e --- /dev/null +++ b/dist/dictionary/jyo.json @@ -0,0 +1,52 @@ +[ + { + "base": "jyomyo", + "pos": { + "pro": [ + { + "def": "Many." + } + ] + } + }, + { + "base": "jyon", + "pos": { + "adj": [ + { + "def": "Yellow." + } + ] + } + }, + { + "base": "jyopa", + "pos": { + "num": [ + { + "def": "One." + } + ] + } + }, + { + "base": "jyore", + "pos": { + "num": [ + { + "def": "Two." + } + ] + } + }, + { + "base": "jyoshya", + "pos": { + "adj": [ + { + "def": "All." + } + ] + } + } +] \ No newline at end of file diff --git a/dist/dictionary/jyo.yaml b/dist/dictionary/jyo.yaml new file mode 100644 index 0000000..4b916cc --- /dev/null +++ b/dist/dictionary/jyo.yaml @@ -0,0 +1,20 @@ +- base: jyomyo + pos: + pro: + - def: Many. +- base: jyon + pos: + adj: + - def: Yellow. +- base: jyopa + pos: + num: + - def: One. +- base: jyore + pos: + num: + - def: Two. +- base: jyoshya + pos: + adj: + - def: All. diff --git a/dist/dictionary/ka.json b/dist/dictionary/ka.json new file mode 100644 index 0000000..abc48bf --- /dev/null +++ b/dist/dictionary/ka.json @@ -0,0 +1,51 @@ +[ + { + "base": "kadu", + "pos": { + "noun": { + "feminine": [ + { + "def": "Hand." + } + ] + } + } + }, + { + "base": "kafu", + "pos": { + "verb": { + "feminine": [ + { + "def": "Love, affection." + } + ], + "masculine": [ + { + "def": "Passion." + } + ] + } + } + }, + { + "base": "kafuchi", + "pos": { + "adj": [ + { + "def": "A spiritual energy that is shared and pools.\n" + }, + { + "def": "A manifestion of magic where multiple clan members see the same spirit.\n" + } + ], + "noun": { + "feminine": [ + { + "def": "A shared memory or magic between close friends or clan members.\n" + } + ] + } + } + } +] \ No newline at end of file diff --git a/dist/dictionary/ka.yaml b/dist/dictionary/ka.yaml new file mode 100644 index 0000000..d9bc276 --- /dev/null +++ b/dist/dictionary/ka.yaml @@ -0,0 +1,24 @@ +- base: kadu + pos: + noun: + feminine: + - def: Hand. +- base: kafu + pos: + verb: + feminine: + - def: 'Love, affection.' + masculine: + - def: Passion. +- base: kafuchi + pos: + adj: + - def: | + A spiritual energy that is shared and pools. + - def: > + A manifestion of magic where multiple clan members see the same + spirit. + noun: + feminine: + - def: | + A shared memory or magic between close friends or clan members. diff --git a/dist/dictionary/ke.json b/dist/dictionary/ke.json new file mode 100644 index 0000000..fb0b2b6 --- /dev/null +++ b/dist/dictionary/ke.json @@ -0,0 +1,29 @@ +[ + { + "base": "keka", + "pos": { + "noun": { + "feminine": [ + { + "def": "The amount of displacement of an adult woman's fist." + }, + { + "def": "OOW: A volume of liquid equal to 305 mL." + } + ] + } + } + }, + { + "base": "keri", + "pos": { + "verb": { + "masculine": [ + { + "def": "Stand." + } + ] + } + } + } +] \ No newline at end of file diff --git a/dist/dictionary/ke.yaml b/dist/dictionary/ke.yaml new file mode 100644 index 0000000..4cc821b --- /dev/null +++ b/dist/dictionary/ke.yaml @@ -0,0 +1,11 @@ +- base: keka + pos: + noun: + feminine: + - def: The amount of displacement of an adult woman's fist. + - def: 'OOW: A volume of liquid equal to 305 mL.' +- base: keri + pos: + verb: + masculine: + - def: Stand. diff --git a/dist/dictionary/ki.json b/dist/dictionary/ki.json new file mode 100644 index 0000000..e645820 --- /dev/null +++ b/dist/dictionary/ki.json @@ -0,0 +1,101 @@ +[ + { + "base": "kifi", + "pos": { + "verb": { + "feminine": [ + { + "def": "Give, hand over." + } + ] + } + } + }, + { + "base": "kifomakoji", + "pos": { + "verb": { + "feminine": [ + { + "def": "To lose a loved one to death." + } + ] + } + } + }, + { + "base": "kiko", + "pos": { + "noun": { + "masculine": [ + { + "def": "Fire, burn." + } + ] + } + } + }, + { + "base": "kikochyo", + "pos": { + "noun": { + "neuter": [ + { + "def": "Ashes of a fire." + } + ] + } + } + }, + { + "base": "kikofuna", + "pos": { + "noun": { + "neuter": [ + { + "def": "The minimum area of ash produced from a funeral fire to be considered holy." + }, + { + "def": "OOW: 80 m^2." + } + ] + } + } + }, + { + "base": "kimu", + "pos": { + "verb": { + "feminine": [ + { + "def": "Sit." + } + ] + } + } + }, + { + "base": "kireki", + "pos": { + "noun": { + "masculine": [ + { + "def": "Tree." + } + ] + } + } + }, + { + "base": "kishi", + "pos": { + "noun": { + "masculine": [ + { + "def": "Male, masculine." + } + ] + } + } + } +] \ No newline at end of file diff --git a/dist/dictionary/ki.yaml b/dist/dictionary/ki.yaml new file mode 100644 index 0000000..02994e6 --- /dev/null +++ b/dist/dictionary/ki.yaml @@ -0,0 +1,43 @@ +- base: kifi + pos: + verb: + feminine: + - def: 'Give, hand over.' +- base: kifomakoji + pos: + verb: + feminine: + - def: To lose a loved one to death. +- base: kiko + pos: + noun: + masculine: + - def: 'Fire, burn.' +- base: kikochyo + pos: + noun: + neuter: + - def: Ashes of a fire. +- base: kikofuna + pos: + noun: + neuter: + - def: >- + The minimum area of ash produced from a funeral fire to be + considered holy. + - def: 'OOW: 80 m^2.' +- base: kimu + pos: + verb: + feminine: + - def: Sit. +- base: kireki + pos: + noun: + masculine: + - def: Tree. +- base: kishi + pos: + noun: + masculine: + - def: 'Male, masculine.' diff --git a/dist/dictionary/ko.json b/dist/dictionary/ko.json new file mode 100644 index 0000000..d8b84e0 --- /dev/null +++ b/dist/dictionary/ko.json @@ -0,0 +1,117 @@ +[ + { + "base": "kochozo", + "pos": { + "verb": { + "neuter": [ + { + "def": "Sleep." + } + ] + } + } + }, + { + "base": "kodi", + "pos": { + "verb": { + "neuter": [ + { + "def": "Lie down." + } + ] + } + } + }, + { + "base": "kodo", + "pos": { + "noun": { + "feminine": [ + { + "def": "Stone." + } + ] + } + } + }, + { + "base": "kodoshyo", + "pos": { + "noun": { + "masculine": [ + { + "def": "Mountain." + } + ] + } + } + }, + { + "base": "koji", + "pos": { + "verb": { + "neuter": [ + { + "def": "Die, death, kill." + } + ] + } + } + }, + { + "base": "kojifu", + "pos": { + "verb": { + "neuter": [ + { + "def": "Die." + } + ] + } + } + }, + { + "base": "kokeku", + "pos": { + "noun": { + "masculine": [ + { + "def": "The amount of water an average person needs for a single day in the desert." + }, + { + "def": "A volume of liquid equal to 13 [kéka](../ke/keka.markdown)." + }, + { + "def": "OOW: A volume of liquid equal to 4 L." + } + ] + } + } + }, + { + "base": "komiyaza", + "pos": { + "noun": { + "neuter": [ + { + "def": "The temperature where water boils." + }, + { + "def": "OOW: 100 C." + } + ] + } + } + }, + { + "base": "koroma", + "pos": { + "adj": [ + { + "def": "Cursed." + } + ] + } + } +] \ No newline at end of file diff --git a/dist/dictionary/ko.yaml b/dist/dictionary/ko.yaml new file mode 100644 index 0000000..3fa6ba3 --- /dev/null +++ b/dist/dictionary/ko.yaml @@ -0,0 +1,49 @@ +- base: kochozo + pos: + verb: + neuter: + - def: Sleep. +- base: kodi + pos: + verb: + neuter: + - def: Lie down. +- base: kodo + pos: + noun: + feminine: + - def: Stone. +- base: kodoshyo + pos: + noun: + masculine: + - def: Mountain. +- base: koji + pos: + verb: + neuter: + - def: 'Die, death, kill.' +- base: kojifu + pos: + verb: + neuter: + - def: Die. +- base: kokeku + pos: + noun: + masculine: + - def: >- + The amount of water an average person needs for a single day in the + desert. + - def: 'A volume of liquid equal to 13 [kéka](../ke/keka.markdown).' + - def: 'OOW: A volume of liquid equal to 4 L.' +- base: komiyaza + pos: + noun: + neuter: + - def: The temperature where water boils. + - def: 'OOW: 100 C.' +- base: koroma + pos: + adj: + - def: Cursed. diff --git a/dist/dictionary/ku.json b/dist/dictionary/ku.json new file mode 100644 index 0000000..1928e2c --- /dev/null +++ b/dist/dictionary/ku.json @@ -0,0 +1,38 @@ +[ + { + "base": "kufo", + "pos": { + "noun": { + "neuter": [ + { + "def": "A mouse or rat." + } + ] + }, + "verb": { + "feminine": [ + { + "def": "A worm into a tight space." + } + ], + "masculine": [ + { + "def": "To make oneself at home when unwelcomed." + } + ] + } + } + }, + { + "base": "kuga", + "pos": { + "verb": { + "neuter": [ + { + "def": "Hear." + } + ] + } + } + } +] \ No newline at end of file diff --git a/dist/dictionary/ku.yaml b/dist/dictionary/ku.yaml new file mode 100644 index 0000000..a059c52 --- /dev/null +++ b/dist/dictionary/ku.yaml @@ -0,0 +1,15 @@ +- base: kufo + pos: + noun: + neuter: + - def: A mouse or rat. + verb: + feminine: + - def: A worm into a tight space. + masculine: + - def: To make oneself at home when unwelcomed. +- base: kuga + pos: + verb: + neuter: + - def: Hear. diff --git a/dist/dictionary/kyo.json b/dist/dictionary/kyo.json new file mode 100644 index 0000000..2e71b52 --- /dev/null +++ b/dist/dictionary/kyo.json @@ -0,0 +1,42 @@ +[ + { + "base": "kyoda", + "pos": { + "verb": { + "feminine": [ + { + "def": "To ride a creature over distances." + } + ], + "masculine": [ + { + "def": "To charge a creature, such as into battle." + }, + { + "def": "To sprint or race a creature while riding it." + } + ], + "neuter": [ + { + "def": "To ride poorly or without skill." + }, + { + "def": "To learn how to ride a creature." + } + ] + } + } + }, + { + "base": "kyon", + "pos": { + "noun": { + "neuter": [ + { + "def": "Red." + } + ] + } + } + } +] \ No newline at end of file diff --git a/dist/dictionary/kyo.yaml b/dist/dictionary/kyo.yaml new file mode 100644 index 0000000..2447e4a --- /dev/null +++ b/dist/dictionary/kyo.yaml @@ -0,0 +1,16 @@ +- base: kyoda + pos: + verb: + feminine: + - def: To ride a creature over distances. + masculine: + - def: 'To charge a creature, such as into battle.' + - def: To sprint or race a creature while riding it. + neuter: + - def: To ride poorly or without skill. + - def: To learn how to ride a creature. +- base: kyon + pos: + noun: + neuter: + - def: Red. diff --git a/dist/dictionary/kyu.json b/dist/dictionary/kyu.json new file mode 100644 index 0000000..e460637 --- /dev/null +++ b/dist/dictionary/kyu.json @@ -0,0 +1,24 @@ +[ + { + "base": "kyumogo", + "pos": { + "noun": { + "neuter": [ + { + "def": "A measurement of distance." + }, + { + "def": "A mile." + } + ] + }, + "verb": { + "feminine": [ + { + "def": "To measure or pace something out that is approximately a *kyumōgo* distance." + } + ] + } + } + } +] \ No newline at end of file diff --git a/dist/dictionary/kyu.yaml b/dist/dictionary/kyu.yaml new file mode 100644 index 0000000..f5afa73 --- /dev/null +++ b/dist/dictionary/kyu.yaml @@ -0,0 +1,11 @@ +- base: kyumogo + pos: + noun: + neuter: + - def: A measurement of distance. + - def: A mile. + verb: + feminine: + - def: >- + To measure or pace something out that is approximately a *kyumōgo* + distance. diff --git a/dist/dictionary/ma.json b/dist/dictionary/ma.json new file mode 100644 index 0000000..7c821cd --- /dev/null +++ b/dist/dictionary/ma.json @@ -0,0 +1,78 @@ +[ + { + "base": "ma", + "pos": { + "adj": [ + { + "def": "Me, I, mine." + } + ] + } + }, + { + "base": "madeku", + "pos": { + "noun": { + "masculine": [ + { + "def": "A weight of 16 dātsu used for measuring heavy items and people." + }, + { + "def": "OOW: 16.32 kg." + } + ] + } + } + }, + { + "base": "man", + "pos": { + "noun": { + "feminine": [ + { + "def": "As *màn* (noun 1), but as a feminine." + } + ], + "masculine": [ + { + "def": "Myself, when referencing a masculine person." + } + ], + "neuter": [ + { + "def": "As *màn* (noun 1), but as a neuter." + } + ] + } + } + }, + { + "base": "masa", + "pos": { + "noun": { + "neuter": [ + { + "def": "1/8th of a rōte or solar day." + } + ] + } + } + }, + { + "base": "masotoru", + "pos": { + "adj": [ + { + "def": "Concerning or using electrical-based magic.\n" + } + ], + "noun": { + "masculine": [ + { + "def": "Lightning formed from a dust storm.\n" + } + ] + } + } + } +] \ No newline at end of file diff --git a/dist/dictionary/ma.yaml b/dist/dictionary/ma.yaml new file mode 100644 index 0000000..aa822be --- /dev/null +++ b/dist/dictionary/ma.yaml @@ -0,0 +1,33 @@ +- base: ma + pos: + adj: + - def: 'Me, I, mine.' +- base: madeku + pos: + noun: + masculine: + - def: A weight of 16 dātsu used for measuring heavy items and people. + - def: 'OOW: 16.32 kg.' +- base: man + pos: + noun: + feminine: + - def: 'As *màn* (noun 1), but as a feminine.' + masculine: + - def: 'Myself, when referencing a masculine person.' + neuter: + - def: 'As *màn* (noun 1), but as a neuter.' +- base: masa + pos: + noun: + neuter: + - def: 1/8th of a rōte or solar day. +- base: masotoru + pos: + adj: + - def: | + Concerning or using electrical-based magic. + noun: + masculine: + - def: | + Lightning formed from a dust storm. diff --git a/dist/dictionary/me.json b/dist/dictionary/me.json new file mode 100644 index 0000000..1425ceb --- /dev/null +++ b/dist/dictionary/me.json @@ -0,0 +1,12 @@ +[ + { + "base": "mekoshi", + "pos": { + "adj": [ + { + "def": "To perform an action humbly or without pride." + } + ] + } + } +] \ No newline at end of file diff --git a/dist/dictionary/me.yaml b/dist/dictionary/me.yaml new file mode 100644 index 0000000..d33ca89 --- /dev/null +++ b/dist/dictionary/me.yaml @@ -0,0 +1,4 @@ +- base: mekoshi + pos: + adj: + - def: To perform an action humbly or without pride. diff --git a/dist/dictionary/mi.json b/dist/dictionary/mi.json new file mode 100644 index 0000000..370d1a8 --- /dev/null +++ b/dist/dictionary/mi.json @@ -0,0 +1,67 @@ +[ + { + "base": "michi", + "pos": { + "verb": { + "masculine": [ + { + "def": "Smile." + } + ] + } + } + }, + { + "base": "mifuno", + "pos": { + "noun": { + "feminine": [ + { + "def": "The desert spirit." + } + ], + "neuter": [ + { + "def": "The desrt." + } + ] + } + } + }, + { + "base": "miga", + "pos": { + "noun": { + "feminine": [ + { + "def": "Meat, flesh." + } + ] + } + } + }, + { + "base": "minafatsu", + "pos": { + "noun": { + "neuter": [ + { + "def": "Written words or letters of the desert tongue." + } + ] + } + } + }, + { + "base": "miwafu", + "pos": { + "noun": { + "neuter": [ + { + "def": "Words of the desert." + } + ] + } + } + } +] \ No newline at end of file diff --git a/dist/dictionary/mi.yaml b/dist/dictionary/mi.yaml new file mode 100644 index 0000000..70474e2 --- /dev/null +++ b/dist/dictionary/mi.yaml @@ -0,0 +1,27 @@ +- base: michi + pos: + verb: + masculine: + - def: Smile. +- base: mifuno + pos: + noun: + feminine: + - def: The desert spirit. + neuter: + - def: The desrt. +- base: miga + pos: + noun: + feminine: + - def: 'Meat, flesh.' +- base: minafatsu + pos: + noun: + neuter: + - def: Written words or letters of the desert tongue. +- base: miwafu + pos: + noun: + neuter: + - def: Words of the desert. diff --git a/dist/dictionary/mo.json b/dist/dictionary/mo.json new file mode 100644 index 0000000..0ba590e --- /dev/null +++ b/dist/dictionary/mo.json @@ -0,0 +1,54 @@ +[ + { + "base": "mo", + "pos": { + "pro": [ + { + "def": "What, who, whom, question placeholder." + } + ] + } + }, + { + "base": "mobipo", + "pos": { + "noun": { + "masculine": [ + { + "def": "A crow or blackbird." + } + ] + }, + "verb": { + "neuter": [ + { + "def": "To make loud, persistent noises." + } + ] + } + } + }, + { + "base": "monika", + "pos": { + "adj": [ + { + "def": "A magical force that accelerates or speeds a character.\n", + "reference": [ + { + "excerpt": "The ground shook as a blast of wind blew and the flash of a bird raced past them. Rocks tore at Rutejìmo's side and face. Coughing, he managed to focus just as Desòchu caught the third bowl. The other two rested in his other hand. Wind eddied around Rutejìmo's older brother as he gracefully spun around to prevent the food from slipping.\nDesòchu glanced up and then stepped forward. He disappeared in a cloud of dust, and a plume of wind streaked to the switchback at the end of the trail and up toward them.\n", + "identifier": "0100-00", + "title": "Sand and Blood 4", + "url": "https://fedran.com/sand-and-bone/chapter-04/" + } + ] + } + ], + "adv": [ + { + "def": "To move or run very fast.\n" + } + ] + } + } +] \ No newline at end of file diff --git a/dist/dictionary/mo.yaml b/dist/dictionary/mo.yaml new file mode 100644 index 0000000..5253266 --- /dev/null +++ b/dist/dictionary/mo.yaml @@ -0,0 +1,35 @@ +- base: mo + pos: + pro: + - def: 'What, who, whom, question placeholder.' +- base: mobipo + pos: + noun: + masculine: + - def: A crow or blackbird. + verb: + neuter: + - def: 'To make loud, persistent noises.' +- base: monika + pos: + adj: + - def: | + A magical force that accelerates or speeds a character. + reference: + - excerpt: > + The ground shook as a blast of wind blew and the flash of a bird + raced past them. Rocks tore at Rutejìmo's side and face. Coughing, + he managed to focus just as Desòchu caught the third bowl. The + other two rested in his other hand. Wind eddied around Rutejìmo's + older brother as he gracefully spun around to prevent the food + from slipping. + + Desòchu glanced up and then stepped forward. He disappeared in a + cloud of dust, and a plume of wind streaked to the switchback at + the end of the trail and up toward them. + identifier: 0100-00 + title: Sand and Blood 4 + url: 'https://fedran.com/sand-and-bone/chapter-04/' + adv: + - def: | + To move or run very fast. diff --git a/dist/dictionary/mu.json b/dist/dictionary/mu.json new file mode 100644 index 0000000..581434f --- /dev/null +++ b/dist/dictionary/mu.json @@ -0,0 +1,60 @@ +[ + { + "base": "mujichi", + "pos": { + "adj": [ + { + "def": "Dry, powdery" + } + ] + } + }, + { + "base": "mukisa", + "pos": { + "noun": { + "feminine": [ + { + "def": "a fine sand that is difficult to walk along because it is shifting" + } + ] + } + } + }, + { + "base": "munisa", + "pos": { + "noun": { + "masculine": [ + { + "def": "a coarse grain sand that grates against bare flesh but doesn't blow in light winds" + } + ] + } + } + }, + { + "base": "musa", + "pos": { + "noun": { + "feminine": [ + { + "def": "Sand (generic)." + } + ] + } + } + }, + { + "base": "mushigi", + "pos": { + "noun": { + "masculine": [ + { + "def": "Tongue." + } + ] + } + } + } +] \ No newline at end of file diff --git a/dist/dictionary/mu.yaml b/dist/dictionary/mu.yaml new file mode 100644 index 0000000..d837fc7 --- /dev/null +++ b/dist/dictionary/mu.yaml @@ -0,0 +1,26 @@ +- base: mujichi + pos: + adj: + - def: 'Dry, powdery' +- base: mukisa + pos: + noun: + feminine: + - def: a fine sand that is difficult to walk along because it is shifting +- base: munisa + pos: + noun: + masculine: + - def: >- + a coarse grain sand that grates against bare flesh but doesn't blow + in light winds +- base: musa + pos: + noun: + feminine: + - def: Sand (generic). +- base: mushigi + pos: + noun: + masculine: + - def: Tongue. diff --git a/dist/dictionary/myo.json b/dist/dictionary/myo.json new file mode 100644 index 0000000..5ca9b13 --- /dev/null +++ b/dist/dictionary/myo.json @@ -0,0 +1,26 @@ +[ + { + "base": "myoregu", + "pos": { + "noun": { + "masculine": [ + { + "def": "Moron." + } + ] + } + } + }, + { + "base": "myukira", + "pos": { + "noun": { + "feminine": [ + { + "def": "Leaf." + } + ] + } + } + } +] \ No newline at end of file diff --git a/dist/dictionary/myo.yaml b/dist/dictionary/myo.yaml new file mode 100644 index 0000000..1adb5d0 --- /dev/null +++ b/dist/dictionary/myo.yaml @@ -0,0 +1,10 @@ +- base: myoregu + pos: + noun: + masculine: + - def: Moron. +- base: myukira + pos: + noun: + feminine: + - def: Leaf. diff --git a/dist/dictionary/n.json b/dist/dictionary/n.json new file mode 100644 index 0000000..20dacd2 --- /dev/null +++ b/dist/dictionary/n.json @@ -0,0 +1,34 @@ +[ + { + "base": "netune", + "pos": { + "noun": { + "feminine": [ + { + "def": "A legacy left behind when someone dies.\n" + } + ], + "neuter": [ + { + "def": "The tendency for a child to become associated with the same clan as as their mother.\n" + } + ] + } + } + }, + { + "base": "norikuchyofune", + "pos": { + "verb": { + "masculine": [ + { + "def": "The final burst of energy when the last member of a clan dies.\n" + }, + { + "def": "The moment when a clan spirit dies with the last living member's death.\n" + } + ] + } + } + } +] \ No newline at end of file diff --git a/dist/dictionary/n.yaml b/dist/dictionary/n.yaml new file mode 100644 index 0000000..56f6d6d --- /dev/null +++ b/dist/dictionary/n.yaml @@ -0,0 +1,19 @@ +- base: netune + pos: + noun: + feminine: + - def: | + A legacy left behind when someone dies. + neuter: + - def: > + The tendency for a child to become associated with the same clan as + as their mother. +- base: norikuchyofune + pos: + verb: + masculine: + - def: | + The final burst of energy when the last member of a clan dies. + - def: > + The moment when a clan spirit dies with the last living member's + death. diff --git a/dist/dictionary/na.json b/dist/dictionary/na.json new file mode 100644 index 0000000..9c386ce --- /dev/null +++ b/dist/dictionary/na.json @@ -0,0 +1,31 @@ +[ + { + "base": "nago", + "pos": { + "noun": { + "masculine": [ + { + "def": "Girl child." + } + ] + } + } + }, + { + "base": "nakifu", + "pos": { + "noun": { + "feminine": [ + { + "def": "A short poem." + } + ], + "masculine": [ + { + "def": "A long or epic poem." + } + ] + } + } + } +] \ No newline at end of file diff --git a/dist/dictionary/na.yaml b/dist/dictionary/na.yaml new file mode 100644 index 0000000..c7230ff --- /dev/null +++ b/dist/dictionary/na.yaml @@ -0,0 +1,12 @@ +- base: nago + pos: + noun: + masculine: + - def: Girl child. +- base: nakifu + pos: + noun: + feminine: + - def: A short poem. + masculine: + - def: A long or epic poem. diff --git a/dist/dictionary/ne.json b/dist/dictionary/ne.json new file mode 100644 index 0000000..d632118 --- /dev/null +++ b/dist/dictionary/ne.json @@ -0,0 +1,27 @@ +[ + { + "base": "nesa", + "pos": { + "adj": [ + { + "def": "Unhappily, miserably." + } + ] + } + }, + { + "base": "nesakafu", + "pos": { + "verb": { + "neuter": [ + { + "def": "To be unhappily in love." + }, + { + "def": "To be miserably happy." + } + ] + } + } + } +] \ No newline at end of file diff --git a/dist/dictionary/ne.yaml b/dist/dictionary/ne.yaml new file mode 100644 index 0000000..ea2e5e1 --- /dev/null +++ b/dist/dictionary/ne.yaml @@ -0,0 +1,10 @@ +- base: nesa + pos: + adj: + - def: 'Unhappily, miserably.' +- base: nesakafu + pos: + verb: + neuter: + - def: To be unhappily in love. + - def: To be miserably happy. diff --git a/dist/dictionary/ni.json b/dist/dictionary/ni.json new file mode 100644 index 0000000..01c5bd6 --- /dev/null +++ b/dist/dictionary/ni.json @@ -0,0 +1,60 @@ +[ + { + "base": "nibaba", + "pos": { + "noun": { + "feminine": [ + { + "def": "Breasts." + } + ] + } + } + }, + { + "base": "nibapu", + "pos": { + "noun": { + "masculine": [ + { + "def": "Liver" + } + ] + } + } + }, + { + "base": "nichiza", + "pos": { + "noun": { + "masculine": [ + { + "def": "Belly." + } + ] + } + } + }, + { + "base": "nido", + "pos": { + "noun": { + "feminine": [ + { + "def": "Neck." + } + ] + } + } + }, + { + "base": "nireigi", + "pos": { + "adj": [ + { + "def": "New, freshly made." + } + ] + } + } +] \ No newline at end of file diff --git a/dist/dictionary/ni.yaml b/dist/dictionary/ni.yaml new file mode 100644 index 0000000..fe7ee30 --- /dev/null +++ b/dist/dictionary/ni.yaml @@ -0,0 +1,24 @@ +- base: nibaba + pos: + noun: + feminine: + - def: Breasts. +- base: nibapu + pos: + noun: + masculine: + - def: Liver +- base: nichiza + pos: + noun: + masculine: + - def: Belly. +- base: nido + pos: + noun: + feminine: + - def: Neck. +- base: nireigi + pos: + adj: + - def: 'New, freshly made.' diff --git a/dist/dictionary/no.json b/dist/dictionary/no.json new file mode 100644 index 0000000..a78c52f --- /dev/null +++ b/dist/dictionary/no.json @@ -0,0 +1,26 @@ +[ + { + "base": "nonyu", + "pos": { + "noun": { + "feminine": [ + { + "def": "Discomfort." + } + ], + "masculine": [ + { + "def": "Agony, overwhelming pain." + } + ] + }, + "verb": { + "neuter": [ + { + "def": "To live with pain or agony." + } + ] + } + } + } +] \ No newline at end of file diff --git a/dist/dictionary/no.yaml b/dist/dictionary/no.yaml new file mode 100644 index 0000000..79724ac --- /dev/null +++ b/dist/dictionary/no.yaml @@ -0,0 +1,10 @@ +- base: nonyu + pos: + noun: + feminine: + - def: Discomfort. + masculine: + - def: 'Agony, overwhelming pain.' + verb: + neuter: + - def: To live with pain or agony. diff --git a/dist/dictionary/nya.json b/dist/dictionary/nya.json new file mode 100644 index 0000000..131ccdf --- /dev/null +++ b/dist/dictionary/nya.json @@ -0,0 +1,12 @@ +[ + { + "base": "nyan", + "pos": { + "adj": [ + { + "def": "Blue." + } + ] + } + } +] \ No newline at end of file diff --git a/dist/dictionary/nya.yaml b/dist/dictionary/nya.yaml new file mode 100644 index 0000000..c519102 --- /dev/null +++ b/dist/dictionary/nya.yaml @@ -0,0 +1,4 @@ +- base: nyan + pos: + adj: + - def: Blue. diff --git a/dist/dictionary/nyo.json b/dist/dictionary/nyo.json new file mode 100644 index 0000000..462e5c9 --- /dev/null +++ b/dist/dictionary/nyo.json @@ -0,0 +1,14 @@ +[ + { + "base": "nyokiru", + "pos": { + "noun": { + "masculine": [ + { + "def": "Root." + } + ] + } + } + } +] \ No newline at end of file diff --git a/dist/dictionary/nyo.yaml b/dist/dictionary/nyo.yaml new file mode 100644 index 0000000..c9ced0b --- /dev/null +++ b/dist/dictionary/nyo.yaml @@ -0,0 +1,5 @@ +- base: nyokiru + pos: + noun: + masculine: + - def: Root. diff --git a/dist/dictionary/o.json b/dist/dictionary/o.json new file mode 100644 index 0000000..81b6fc9 --- /dev/null +++ b/dist/dictionary/o.json @@ -0,0 +1,60 @@ +[ + { + "base": "ogapi", + "pos": { + "adj": [ + { + "def": "To be related to a group of children." + } + ], + "noun": { + "neuter": [ + { + "def": "A flea." + }, + { + "def": "A bedbug." + } + ] + } + } + }, + { + "base": "ogimo", + "pos": { + "noun": { + "masculine": [ + { + "def": "A camel or other hump-backed creature." + } + ] + }, + "verb": { + "feminine": [ + { + "def": "To carry a grudge or conversation for years." + } + ] + } + } + }, + { + "base": "oteza", + "pos": { + "noun": { + "neuter": [ + { + "def": "A spider or another arachnid." + } + ] + }, + "verb": { + "feminine": [ + { + "def": "To work on many projects at the same time." + } + ] + } + } + } +] \ No newline at end of file diff --git a/dist/dictionary/o.yaml b/dist/dictionary/o.yaml new file mode 100644 index 0000000..ac9530d --- /dev/null +++ b/dist/dictionary/o.yaml @@ -0,0 +1,24 @@ +- base: ogapi + pos: + adj: + - def: To be related to a group of children. + noun: + neuter: + - def: A flea. + - def: A bedbug. +- base: ogimo + pos: + noun: + masculine: + - def: A camel or other hump-backed creature. + verb: + feminine: + - def: To carry a grudge or conversation for years. +- base: oteza + pos: + noun: + neuter: + - def: A spider or another arachnid. + verb: + feminine: + - def: To work on many projects at the same time. diff --git a/dist/dictionary/pa.json b/dist/dictionary/pa.json new file mode 100644 index 0000000..a3c71d6 --- /dev/null +++ b/dist/dictionary/pa.json @@ -0,0 +1,45 @@ +[ + { + "base": "pachyun", + "pos": { + "noun": { + "neuter": [ + { + "def": "A smooth lizard." + } + ] + }, + "verb": { + "feminine": [ + { + "def": "To adapt to circumstances." + } + ] + } + } + }, + { + "base": "padu", + "pos": { + "noun": { + "masculine": [ + { + "def": "Foot." + } + ] + } + } + }, + { + "base": "parechyo", + "pos": { + "noun": { + "neuter": [ + { + "def": "Knee." + } + ] + } + } + } +] \ No newline at end of file diff --git a/dist/dictionary/pa.yaml b/dist/dictionary/pa.yaml new file mode 100644 index 0000000..66b1244 --- /dev/null +++ b/dist/dictionary/pa.yaml @@ -0,0 +1,18 @@ +- base: pachyun + pos: + noun: + neuter: + - def: A smooth lizard. + verb: + feminine: + - def: To adapt to circumstances. +- base: padu + pos: + noun: + masculine: + - def: Foot. +- base: parechyo + pos: + noun: + neuter: + - def: Knee. diff --git a/dist/dictionary/pe.json b/dist/dictionary/pe.json new file mode 100644 index 0000000..bca6faf --- /dev/null +++ b/dist/dictionary/pe.json @@ -0,0 +1,14 @@ +[ + { + "base": "peji", + "pos": { + "verb": { + "feminine": [ + { + "def": "To temporarily raise something." + } + ] + } + } + } +] \ No newline at end of file diff --git a/dist/dictionary/pe.yaml b/dist/dictionary/pe.yaml new file mode 100644 index 0000000..f41bcbb --- /dev/null +++ b/dist/dictionary/pe.yaml @@ -0,0 +1,5 @@ +- base: peji + pos: + verb: + feminine: + - def: To temporarily raise something. diff --git a/dist/dictionary/pi.json b/dist/dictionary/pi.json new file mode 100644 index 0000000..a8e8d85 --- /dev/null +++ b/dist/dictionary/pi.json @@ -0,0 +1,41 @@ +[ + { + "base": "pibafu", + "pos": { + "noun": { + "masculine": [ + { + "def": "Blood." + } + ] + } + } + }, + { + "base": "pimayazu", + "pos": { + "noun": { + "neuter": [ + { + "def": "The temperature where water freezes." + }, + { + "def": "OOW: 0 C." + } + ] + } + } + }, + { + "base": "pimiga", + "pos": { + "noun": { + "neuter": [ + { + "def": "Bone." + } + ] + } + } + } +] \ No newline at end of file diff --git a/dist/dictionary/pi.yaml b/dist/dictionary/pi.yaml new file mode 100644 index 0000000..ecbabc7 --- /dev/null +++ b/dist/dictionary/pi.yaml @@ -0,0 +1,16 @@ +- base: pibafu + pos: + noun: + masculine: + - def: Blood. +- base: pimayazu + pos: + noun: + neuter: + - def: The temperature where water freezes. + - def: 'OOW: 0 C.' +- base: pimiga + pos: + noun: + neuter: + - def: Bone. diff --git a/dist/dictionary/po.json b/dist/dictionary/po.json new file mode 100644 index 0000000..dd38d3d --- /dev/null +++ b/dist/dictionary/po.json @@ -0,0 +1,74 @@ +[ + { + "base": "pocho", + "pos": { + "noun": { + "feminine": [ + { + "def": "A discomforting fear, one that does not stop someone." + } + ], + "masculine": [ + { + "def": "An overwhelming fear or terror." + } + ] + } + } + }, + { + "base": "podi", + "pos": { + "verb": { + "masculine": [ + { + "def": "Walk." + } + ] + } + } + }, + { + "base": "poga", + "pos": { + "verb": { + "masculine": [ + { + "def": "To participate in loud or enthusiastic sex." + } + ] + } + } + }, + { + "base": "pokemon", + "pos": { + "noun": { + "feminine": [ + { + "def": "The obsessive need to collect or gather one of everything." + } + ] + }, + "verb": { + "feminine": [ + { + "def": "The process of collecting or gathering a collection." + } + ] + } + } + }, + { + "base": "poroneso", + "pos": { + "noun": { + "neuter": [ + { + "def": "Kin-killer." + } + ] + } + } + } +] \ No newline at end of file diff --git a/dist/dictionary/po.yaml b/dist/dictionary/po.yaml new file mode 100644 index 0000000..0238049 --- /dev/null +++ b/dist/dictionary/po.yaml @@ -0,0 +1,30 @@ +- base: pocho + pos: + noun: + feminine: + - def: 'A discomforting fear, one that does not stop someone.' + masculine: + - def: An overwhelming fear or terror. +- base: podi + pos: + verb: + masculine: + - def: Walk. +- base: poga + pos: + verb: + masculine: + - def: To participate in loud or enthusiastic sex. +- base: pokemon + pos: + noun: + feminine: + - def: The obsessive need to collect or gather one of everything. + verb: + feminine: + - def: The process of collecting or gathering a collection. +- base: poroneso + pos: + noun: + neuter: + - def: Kin-killer. diff --git a/dist/dictionary/pu.json b/dist/dictionary/pu.json new file mode 100644 index 0000000..8f432a9 --- /dev/null +++ b/dist/dictionary/pu.json @@ -0,0 +1,54 @@ +[ + { + "base": "pu", + "pos": { + "pro": [ + { + "def": "your clan" + } + ] + } + }, + { + "base": "pumakyoni", + "pos": { + "adv": [ + { + "def": "To perform an action that phases through solid matter.\n", + "reference": [ + { + "excerpt": "Gichyòbi jumped in front of Rutejìmo and broke the line of sight. His leap had carried him over the charging warriors. He hit hard, swinging his weapon down toward the ground.\nInstead of bouncing off the earth, the blade easily slid into the stone as if it wasn’t there. Gichyòbi’s gauntlet dipped into the ground as he swung forward. Rutejìmo followed the movement through Gichyòbi’s shoulders before the weapon came up in front of him.\n", + "identifier": "0100-02", + "title": "Sand and Bone 23", + "url": "https://fedran.com/sand-and-bone/chapter-23/" + } + ] + } + ], + "verb": { + "feminine": [ + { + "def": "To phase or walk through solid matter.\n" + } + ] + } + } + }, + { + "base": "puruna", + "pos": { + "adv": [ + { + "def": "To perform an action with flying magic.\n" + } + ], + "noun": { + "masculine": [ + { + "def": "To fly using magic.\n" + } + ] + } + } + } +] \ No newline at end of file diff --git a/dist/dictionary/pu.yaml b/dist/dictionary/pu.yaml new file mode 100644 index 0000000..8d4efad --- /dev/null +++ b/dist/dictionary/pu.yaml @@ -0,0 +1,35 @@ +- base: pu + pos: + pro: + - def: your clan +- base: pumakyoni + pos: + adv: + - def: | + To perform an action that phases through solid matter. + reference: + - excerpt: > + Gichyòbi jumped in front of Rutejìmo and broke the line of sight. + His leap had carried him over the charging warriors. He hit hard, + swinging his weapon down toward the ground. + + Instead of bouncing off the earth, the blade easily slid into the + stone as if it wasn’t there. Gichyòbi’s gauntlet dipped into the + ground as he swung forward. Rutejìmo followed the movement through + Gichyòbi’s shoulders before the weapon came up in front of him. + identifier: 0100-02 + title: Sand and Bone 23 + url: 'https://fedran.com/sand-and-bone/chapter-23/' + verb: + feminine: + - def: | + To phase or walk through solid matter. +- base: puruna + pos: + adv: + - def: | + To perform an action with flying magic. + noun: + masculine: + - def: | + To fly using magic. diff --git a/dist/dictionary/pya.json b/dist/dictionary/pya.json new file mode 100644 index 0000000..d28b8ea --- /dev/null +++ b/dist/dictionary/pya.json @@ -0,0 +1,26 @@ +[ + { + "base": "pyabi", + "pos": { + "noun": { + "neuter": [ + { + "def": "The primary currency of the [Mifúno Desert](mifúno)." + } + ] + } + } + }, + { + "base": "pyadashimu", + "pos": { + "noun": { + "masculine": [ + { + "def": "Clockwork mechanism, something is powered by winding up." + } + ] + } + } + } +] \ No newline at end of file diff --git a/dist/dictionary/pya.yaml b/dist/dictionary/pya.yaml new file mode 100644 index 0000000..cb39f52 --- /dev/null +++ b/dist/dictionary/pya.yaml @@ -0,0 +1,10 @@ +- base: pyabi + pos: + noun: + neuter: + - def: 'The primary currency of the [Mifúno Desert](mifúno).' +- base: pyadashimu + pos: + noun: + masculine: + - def: 'Clockwork mechanism, something is powered by winding up.' diff --git a/dist/dictionary/pyu.json b/dist/dictionary/pyu.json new file mode 100644 index 0000000..3db08b3 --- /dev/null +++ b/dist/dictionary/pyu.json @@ -0,0 +1,12 @@ +[ + { + "base": "pyuchyu", + "pos": { + "adj": [ + { + "def": "Stinky, has a stench." + } + ] + } + } +] \ No newline at end of file diff --git a/dist/dictionary/pyu.yaml b/dist/dictionary/pyu.yaml new file mode 100644 index 0000000..9e7d8a5 --- /dev/null +++ b/dist/dictionary/pyu.yaml @@ -0,0 +1,4 @@ +- base: pyuchyu + pos: + adj: + - def: 'Stinky, has a stench.' diff --git a/dist/dictionary/ra.json b/dist/dictionary/ra.json new file mode 100644 index 0000000..2d0fc0d --- /dev/null +++ b/dist/dictionary/ra.json @@ -0,0 +1,46 @@ +[ + { + "base": "ragofuchino", + "pos": { + "noun": { + "feminine": [ + { + "def": "Salt water." + } + ], + "masculine": [ + { + "def": "An ocean or sea." + }, + { + "def": "A massive body of water." + } + ] + } + } + }, + { + "base": "raki", + "pos": { + "noun": { + "feminine": [ + { + "def": "Skin." + } + ] + } + } + }, + { + "base": "rakiki", + "pos": { + "noun": { + "masculine": [ + { + "def": "Bark of a tree." + } + ] + } + } + } +] \ No newline at end of file diff --git a/dist/dictionary/ra.yaml b/dist/dictionary/ra.yaml new file mode 100644 index 0000000..a85bd7d --- /dev/null +++ b/dist/dictionary/ra.yaml @@ -0,0 +1,18 @@ +- base: ragofuchino + pos: + noun: + feminine: + - def: Salt water. + masculine: + - def: An ocean or sea. + - def: A massive body of water. +- base: raki + pos: + noun: + feminine: + - def: Skin. +- base: rakiki + pos: + noun: + masculine: + - def: Bark of a tree. diff --git a/dist/dictionary/re.json b/dist/dictionary/re.json new file mode 100644 index 0000000..33ad236 --- /dev/null +++ b/dist/dictionary/re.json @@ -0,0 +1,14 @@ +[ + { + "base": "remigu", + "pos": { + "noun": { + "feminine": [ + { + "def": "Grease, fat." + } + ] + } + } + } +] \ No newline at end of file diff --git a/dist/dictionary/re.yaml b/dist/dictionary/re.yaml new file mode 100644 index 0000000..0ea8385 --- /dev/null +++ b/dist/dictionary/re.yaml @@ -0,0 +1,5 @@ +- base: remigu + pos: + noun: + feminine: + - def: 'Grease, fat.' diff --git a/dist/dictionary/ri.json b/dist/dictionary/ri.json new file mode 100644 index 0000000..7ffb683 --- /dev/null +++ b/dist/dictionary/ri.json @@ -0,0 +1,73 @@ +[ + { + "base": "richi", + "pos": { + "noun": { + "feminine": [ + { + "def": "A solar cycle between 44 and 47 days." + }, + { + "def": "A solar \"month\"." + } + ] + } + } + }, + { + "base": "rimu", + "pos": { + "noun": { + "feminine": [ + { + "def": "Water." + } + ] + } + } + }, + { + "base": "rimuhi", + "pos": { + "adj": [ + { + "def": "Small and unassuming." + } + ], + "noun": { + "neuter": [ + { + "def": "A small, smooth lizard." + }, + { + "def": "A gecko." + } + ] + } + } + }, + { + "base": "rimyo", + "pos": { + "adj": [ + { + "def": "Unfocused or wandering." + } + ], + "noun": { + "neuter": [ + { + "def": "A river or stream." + } + ] + }, + "verb": { + "masculine": [ + { + "def": "To have a meandering conversation." + } + ] + } + } + } +] \ No newline at end of file diff --git a/dist/dictionary/ri.yaml b/dist/dictionary/ri.yaml new file mode 100644 index 0000000..b1adfd2 --- /dev/null +++ b/dist/dictionary/ri.yaml @@ -0,0 +1,29 @@ +- base: richi + pos: + noun: + feminine: + - def: A solar cycle between 44 and 47 days. + - def: A solar "month". +- base: rimu + pos: + noun: + feminine: + - def: Water. +- base: rimuhi + pos: + adj: + - def: Small and unassuming. + noun: + neuter: + - def: 'A small, smooth lizard.' + - def: A gecko. +- base: rimyo + pos: + adj: + - def: Unfocused or wandering. + noun: + neuter: + - def: A river or stream. + verb: + masculine: + - def: To have a meandering conversation. diff --git a/dist/dictionary/ro.json b/dist/dictionary/ro.json new file mode 100644 index 0000000..0b5d9c0 --- /dev/null +++ b/dist/dictionary/ro.json @@ -0,0 +1,92 @@ +[ + { + "base": "rocho", + "pos": { + "noun": { + "feminine": [ + { + "def": "A long-term anger." + } + ], + "masculine": [ + { + "def": "A furious rage or anger." + }, + { + "def": "A screaming fighting." + } + ] + }, + "verb": { + "feminine": [ + { + "def": "To have a passive-aggressive fight." + }, + { + "def": "To fight without revealing the purpose of the fight." + } + ], + "masculine": [ + { + "def": "To have a screaming fight." + }, + { + "def": "To fight for the sake of fighting." + } + ] + } + } + }, + { + "base": "romoga", + "pos": { + "noun": { + "neuter": [ + { + "def": "A measurement of distance." + }, + { + "def": "A surveyor's rod of 16.5 feet." + } + ] + }, + "verb": { + "feminine": [ + { + "def": "To measure out a distance that is approximately a [romōga](../ro/romōga.markdown) away." + }, + { + "def": "To measure something out in terms of [romōga](../ro/romōga.markdown)." + } + ] + } + } + }, + { + "base": "rote", + "pos": { + "noun": { + "neuter": [ + { + "def": "A solar day from sunrise to sunrise." + } + ] + } + } + }, + { + "base": "rotefuchi", + "pos": { + "noun": { + "masculine": [ + { + "def": "The period where the sun is below the horizon." + }, + { + "def": "When sun-based powers don't work." + } + ] + } + } + } +] \ No newline at end of file diff --git a/dist/dictionary/ro.yaml b/dist/dictionary/ro.yaml new file mode 100644 index 0000000..b7179e7 --- /dev/null +++ b/dist/dictionary/ro.yaml @@ -0,0 +1,40 @@ +- base: rocho + pos: + noun: + feminine: + - def: A long-term anger. + masculine: + - def: A furious rage or anger. + - def: A screaming fighting. + verb: + feminine: + - def: To have a passive-aggressive fight. + - def: To fight without revealing the purpose of the fight. + masculine: + - def: To have a screaming fight. + - def: To fight for the sake of fighting. +- base: romoga + pos: + noun: + neuter: + - def: A measurement of distance. + - def: A surveyor's rod of 16.5 feet. + verb: + feminine: + - def: >- + To measure out a distance that is approximately a + [romōga](../ro/romōga.markdown) away. + - def: >- + To measure something out in terms of + [romōga](../ro/romōga.markdown). +- base: rote + pos: + noun: + neuter: + - def: A solar day from sunrise to sunrise. +- base: rotefuchi + pos: + noun: + masculine: + - def: The period where the sun is below the horizon. + - def: When sun-based powers don't work. diff --git a/dist/dictionary/ru.json b/dist/dictionary/ru.json new file mode 100644 index 0000000..f8fbb32 --- /dev/null +++ b/dist/dictionary/ru.json @@ -0,0 +1,80 @@ +[ + { + "base": "rube", + "pos": { + "noun": { + "feminine": [ + { + "def": "A small quantity of water." + } + ], + "masculine": [ + { + "def": "A large quantity of water." + } + ] + } + } + }, + { + "base": "rukan", + "pos": { + "noun": { + "neuter": [ + { + "def": "An iguana." + }, + { + "def": "A dry lizard with large scales." + } + ] + }, + "verb": { + "feminine": [ + { + "def": "To be aware of events in multiple directions." + } + ] + } + } + }, + { + "base": "runakomin", + "pos": { + "noun": { + "neuter": [ + { + "def": "A child playing with imaginary things or people." + }, + { + "def": "Creativity in a child." + } + ] + } + } + }, + { + "base": "rurafu", + "pos": { + "noun": { + "neuter": [ + { + "def": "A manufactured or created well to provide water." + } + ] + }, + "verb": { + "feminine": [ + { + "def": "To persistently drive or hammer." + } + ], + "masculine": [ + { + "def": "To violently penetrate or impale." + } + ] + } + } + } +] \ No newline at end of file diff --git a/dist/dictionary/ru.yaml b/dist/dictionary/ru.yaml new file mode 100644 index 0000000..466d785 --- /dev/null +++ b/dist/dictionary/ru.yaml @@ -0,0 +1,32 @@ +- base: rube + pos: + noun: + feminine: + - def: A small quantity of water. + masculine: + - def: A large quantity of water. +- base: rukan + pos: + noun: + neuter: + - def: An iguana. + - def: A dry lizard with large scales. + verb: + feminine: + - def: To be aware of events in multiple directions. +- base: runakomin + pos: + noun: + neuter: + - def: A child playing with imaginary things or people. + - def: Creativity in a child. +- base: rurafu + pos: + noun: + neuter: + - def: A manufactured or created well to provide water. + verb: + feminine: + - def: To persistently drive or hammer. + masculine: + - def: To violently penetrate or impale. diff --git a/dist/dictionary/rya.json b/dist/dictionary/rya.json new file mode 100644 index 0000000..975a62f --- /dev/null +++ b/dist/dictionary/rya.json @@ -0,0 +1,37 @@ +[ + { + "base": "ryakochyani", + "pos": { + "noun": { + "neuter": [ + { + "def": "An underground cave or opening." + } + ] + } + } + }, + { + "base": "ryarena", + "pos": { + "noun": { + "feminine": [ + { + "def": "As *ryarèna* (noun 1), but female." + }, + { + "def": "As *ryarèna* (noun 2), but female." + } + ], + "masculine": [ + { + "def": "A male of a clan who has significantly more magical powers than average." + }, + { + "def": "A male warrior or defender of a clan." + } + ] + } + } + } +] \ No newline at end of file diff --git a/dist/dictionary/rya.yaml b/dist/dictionary/rya.yaml new file mode 100644 index 0000000..0dcd83e --- /dev/null +++ b/dist/dictionary/rya.yaml @@ -0,0 +1,16 @@ +- base: ryakochyani + pos: + noun: + neuter: + - def: An underground cave or opening. +- base: ryarena + pos: + noun: + feminine: + - def: 'As *ryarèna* (noun 1), but female.' + - def: 'As *ryarèna* (noun 2), but female.' + masculine: + - def: >- + A male of a clan who has significantly more magical powers than + average. + - def: A male warrior or defender of a clan. diff --git a/dist/dictionary/ryo.json b/dist/dictionary/ryo.json new file mode 100644 index 0000000..54878b1 --- /dev/null +++ b/dist/dictionary/ryo.json @@ -0,0 +1,14 @@ +[ + { + "base": "ryon", + "pos": { + "noun": { + "neuter": [ + { + "def": "The color white." + } + ] + } + } + } +] \ No newline at end of file diff --git a/dist/dictionary/ryo.yaml b/dist/dictionary/ryo.yaml new file mode 100644 index 0000000..324816e --- /dev/null +++ b/dist/dictionary/ryo.yaml @@ -0,0 +1,5 @@ +- base: ryon + pos: + noun: + neuter: + - def: The color white. diff --git a/dist/dictionary/ryu.json b/dist/dictionary/ryu.json new file mode 100644 index 0000000..5ce8c51 --- /dev/null +++ b/dist/dictionary/ryu.json @@ -0,0 +1,21 @@ +[ + { + "base": "ryuma", + "pos": { + "noun": { + "neuter": [ + { + "def": "An oasis or a place to rest." + } + ] + }, + "verb": { + "feminine": [ + { + "def": "To create a place of safety or rest." + } + ] + } + } + } +] \ No newline at end of file diff --git a/dist/dictionary/ryu.yaml b/dist/dictionary/ryu.yaml new file mode 100644 index 0000000..b16dd5a --- /dev/null +++ b/dist/dictionary/ryu.yaml @@ -0,0 +1,8 @@ +- base: ryuma + pos: + noun: + neuter: + - def: An oasis or a place to rest. + verb: + feminine: + - def: To create a place of safety or rest. diff --git a/dist/dictionary/sa.json b/dist/dictionary/sa.json new file mode 100644 index 0000000..a5a3aa7 --- /dev/null +++ b/dist/dictionary/sa.json @@ -0,0 +1,19 @@ +[ + { + "base": "sakomichi", + "pos": { + "noun": { + "feminine": [ + { + "def": "The clan leader in a battle or war." + } + ], + "masculine": [ + { + "def": "The leader of one side of a battle or war." + } + ] + } + } + } +] \ No newline at end of file diff --git a/dist/dictionary/sa.yaml b/dist/dictionary/sa.yaml new file mode 100644 index 0000000..433adf4 --- /dev/null +++ b/dist/dictionary/sa.yaml @@ -0,0 +1,7 @@ +- base: sakomichi + pos: + noun: + feminine: + - def: The clan leader in a battle or war. + masculine: + - def: The leader of one side of a battle or war. diff --git a/dist/dictionary/se.json b/dist/dictionary/se.json new file mode 100644 index 0000000..07229a0 --- /dev/null +++ b/dist/dictionary/se.json @@ -0,0 +1,34 @@ +[ + { + "base": "seku", + "pos": { + "verb": { + "masculine": [ + { + "def": "Speak." + } + ] + } + } + }, + { + "base": "semura", + "pos": { + "noun": { + "masculine": [ + { + "def": "The flare of heat and energy that forms with powerful uses of magic.\n", + "reference": [ + { + "excerpt": "Light burst from an impact, and he saw the runes of Chimípu’s blade flare with the clash against the other woman’s spike. Each letter was bright as sunlight but faded instantly. With the next attack, the runes flashed again. As Chimípu rained down blows, their attacks became a lighting storm of attack and parry.\n", + "identifier": "0100-00", + "title": "Sand and Ash 18", + "url": "https://fedran.com/sand-and-ash/chapter-18/" + } + ] + } + ] + } + } + } +] \ No newline at end of file diff --git a/dist/dictionary/se.yaml b/dist/dictionary/se.yaml new file mode 100644 index 0000000..afa8461 --- /dev/null +++ b/dist/dictionary/se.yaml @@ -0,0 +1,21 @@ +- base: seku + pos: + verb: + masculine: + - def: Speak. +- base: semura + pos: + noun: + masculine: + - def: | + The flare of heat and energy that forms with powerful uses of magic. + reference: + - excerpt: > + Light burst from an impact, and he saw the runes of Chimípu’s + blade flare with the clash against the other woman’s spike. Each + letter was bright as sunlight but faded instantly. With the next + attack, the runes flashed again. As Chimípu rained down blows, + their attacks became a lighting storm of attack and parry. + identifier: 0100-00 + title: Sand and Ash 18 + url: 'https://fedran.com/sand-and-ash/chapter-18/' diff --git a/dist/dictionary/shi.json b/dist/dictionary/shi.json new file mode 100644 index 0000000..f01620b --- /dev/null +++ b/dist/dictionary/shi.json @@ -0,0 +1,31 @@ +[ + { + "base": "shifin", + "pos": { + "noun": { + "feminine": [ + { + "def": "Mildly shamed." + } + ], + "masculine": [ + { + "def": "A deep and humiliating shame." + } + ] + } + } + }, + { + "base": "shikafu", + "pos": { + "noun": { + "neuter": [ + { + "def": "Unrequited love or a crush." + } + ] + } + } + } +] \ No newline at end of file diff --git a/dist/dictionary/shi.yaml b/dist/dictionary/shi.yaml new file mode 100644 index 0000000..26d12b2 --- /dev/null +++ b/dist/dictionary/shi.yaml @@ -0,0 +1,12 @@ +- base: shifin + pos: + noun: + feminine: + - def: Mildly shamed. + masculine: + - def: A deep and humiliating shame. +- base: shikafu + pos: + noun: + neuter: + - def: Unrequited love or a crush. diff --git a/dist/dictionary/so.json b/dist/dictionary/so.json new file mode 100644 index 0000000..bf6149e --- /dev/null +++ b/dist/dictionary/so.json @@ -0,0 +1,40 @@ +[ + { + "base": "sofuki", + "pos": { + "noun": { + "masculine": [ + { + "def": "A volume of a standard bottle of wine." + }, + { + "def": "A volume of liquid equal to 3.3 [kéka](../ke/keka.markdown)." + }, + { + "def": "OOW: A volume of liquid equal to 1,020 mL." + } + ] + } + } + }, + { + "base": "soramifu", + "pos": { + "noun": { + "masculine": [ + { + "def": "The flare of heat and energy that bursts out of powerful warriors when they experience strong emotions.\n", + "reference": [ + { + "excerpt": "But, despite Tsubàyo and the massive horse stepping into the shadows just moments before, she hit nothing.\n“Damn that bastard!” Chimípu threw back her head and screamed in rage. It was a high-pitched screech that sounded uncomfortably like that of a bird. Her body ignited with a golden flame that burned away the shadows around her. She became a blinding sun in an instant as a translucent dépa superimposed itself over her body. The image expanded to twice her height before it dissipated in swirls of golden sparks.\n", + "identifier": "0100-00", + "title": "Sand and Ash 21", + "url": "https://fedran.com/sand-and-ash/chapter-21/" + } + ] + } + ] + } + } + } +] \ No newline at end of file diff --git a/dist/dictionary/so.yaml b/dist/dictionary/so.yaml new file mode 100644 index 0000000..2c89648 --- /dev/null +++ b/dist/dictionary/so.yaml @@ -0,0 +1,29 @@ +- base: sofuki + pos: + noun: + masculine: + - def: A volume of a standard bottle of wine. + - def: 'A volume of liquid equal to 3.3 [kéka](../ke/keka.markdown).' + - def: 'OOW: A volume of liquid equal to 1,020 mL.' +- base: soramifu + pos: + noun: + masculine: + - def: > + The flare of heat and energy that bursts out of powerful warriors + when they experience strong emotions. + reference: + - excerpt: > + But, despite Tsubàyo and the massive horse stepping into the + shadows just moments before, she hit nothing. + + “Damn that bastard!” Chimípu threw back her head and screamed in + rage. It was a high-pitched screech that sounded uncomfortably + like that of a bird. Her body ignited with a golden flame that + burned away the shadows around her. She became a blinding sun in + an instant as a translucent dépa superimposed itself over her + body. The image expanded to twice her height before it + dissipated in swirls of golden sparks. + identifier: 0100-00 + title: Sand and Ash 21 + url: 'https://fedran.com/sand-and-ash/chapter-21/' diff --git a/dist/dictionary/su.json b/dist/dictionary/su.json new file mode 100644 index 0000000..08b03ca --- /dev/null +++ b/dist/dictionary/su.json @@ -0,0 +1,14 @@ +[ + { + "base": "sugo", + "pos": { + "noun": { + "feminine": [ + { + "def": "Know, knowledge." + } + ] + } + } + } +] \ No newline at end of file diff --git a/dist/dictionary/su.yaml b/dist/dictionary/su.yaml new file mode 100644 index 0000000..73dda9a --- /dev/null +++ b/dist/dictionary/su.yaml @@ -0,0 +1,5 @@ +- base: sugo + pos: + noun: + feminine: + - def: 'Know, knowledge.' diff --git a/dist/dictionary/ta.json b/dist/dictionary/ta.json new file mode 100644 index 0000000..189c362 --- /dev/null +++ b/dist/dictionary/ta.json @@ -0,0 +1,85 @@ +[ + { + "base": "ta", + "pos": { + "pro": [ + { + "def": "This. Add \"-n\" for final." + } + ] + } + }, + { + "base": "tachira", + "pos": { + "noun": { + "masculine": [ + { + "def": "The sun spirit." + } + ], + "neuter": [ + { + "def": "The sun." + } + ] + } + } + }, + { + "base": "taigona", + "pos": { + "noun": { + "feminine": [ + { + "def": "The transfer of energy from one of the great spirit, into a clan spirit, and then into an individual.\n" + } + ] + } + } + }, + { + "base": "tanifatsu", + "pos": { + "noun": { + "neuter": [ + { + "def": "A script that has vowels underneath the consonants." + }, + { + "def": "The script of the Eastern part of the Mifúno desert." + } + ] + }, + "verb": { + "feminine": [ + { + "def": "To write in a *tanifātsu* script." + } + ] + } + } + }, + { + "base": "tata", + "pos": { + "pro": [ + { + "def": "That, use \"-n\" for final." + } + ] + } + }, + { + "base": "tazagu", + "pos": { + "noun": { + "feminine": [ + { + "def": "A fighting spike." + } + ] + } + } + } +] \ No newline at end of file diff --git a/dist/dictionary/ta.yaml b/dist/dictionary/ta.yaml new file mode 100644 index 0000000..1a35707 --- /dev/null +++ b/dist/dictionary/ta.yaml @@ -0,0 +1,36 @@ +- base: ta + pos: + pro: + - def: This. Add "-n" for final. +- base: tachira + pos: + noun: + masculine: + - def: The sun spirit. + neuter: + - def: The sun. +- base: taigona + pos: + noun: + feminine: + - def: > + The transfer of energy from one of the great spirit, into a clan + spirit, and then into an individual. +- base: tanifatsu + pos: + noun: + neuter: + - def: A script that has vowels underneath the consonants. + - def: The script of the Eastern part of the Mifúno desert. + verb: + feminine: + - def: To write in a *tanifātsu* script. +- base: tata + pos: + pro: + - def: 'That, use "-n" for final.' +- base: tazagu + pos: + noun: + feminine: + - def: A fighting spike. diff --git a/dist/dictionary/te.json b/dist/dictionary/te.json new file mode 100644 index 0000000..a88752d --- /dev/null +++ b/dist/dictionary/te.json @@ -0,0 +1,39 @@ +[ + { + "base": "te", + "pos": { + "pro": [ + { + "def": "They, them, theirs." + } + ] + } + }, + { + "base": "tejoki", + "pos": { + "adj": [ + { + "def": "Blocking or obstructing." + } + ], + "noun": { + "masculine": [ + { + "def": "A boulder or large rock." + } + ] + }, + "verb": { + "neuter": [ + { + "def": "To block or obstruct the flow of water or liquid." + }, + { + "def": "To obstruct a conversation." + } + ] + } + } + } +] \ No newline at end of file diff --git a/dist/dictionary/te.yaml b/dist/dictionary/te.yaml new file mode 100644 index 0000000..c679ebb --- /dev/null +++ b/dist/dictionary/te.yaml @@ -0,0 +1,15 @@ +- base: te + pos: + pro: + - def: 'They, them, theirs.' +- base: tejoki + pos: + adj: + - def: Blocking or obstructing. + noun: + masculine: + - def: A boulder or large rock. + verb: + neuter: + - def: To block or obstruct the flow of water or liquid. + - def: To obstruct a conversation. diff --git a/dist/dictionary/to.json b/dist/dictionary/to.json new file mode 100644 index 0000000..235bce1 --- /dev/null +++ b/dist/dictionary/to.json @@ -0,0 +1,53 @@ +[ + { + "base": "toki", + "pos": { + "noun": { + "feminine": [ + { + "def": "Female." + } + ] + } + } + }, + { + "base": "tokishi", + "pos": { + "noun": { + "feminine": [ + { + "def": "People, folk." + } + ] + } + } + }, + { + "base": "tonufi", + "pos": { + "noun": { + "masculine": [ + { + "def": "\"King\", actually lord of an animal given by a spirit." + } + ] + } + } + }, + { + "base": "tora", + "pos": { + "noun": { + "masculine": [ + { + "def": "A male dog or hound." + }, + { + "def": "figaki tòra: A short-haired dog, typically feral." + } + ] + } + } + } +] \ No newline at end of file diff --git a/dist/dictionary/to.yaml b/dist/dictionary/to.yaml new file mode 100644 index 0000000..bbc53ac --- /dev/null +++ b/dist/dictionary/to.yaml @@ -0,0 +1,21 @@ +- base: toki + pos: + noun: + feminine: + - def: Female. +- base: tokishi + pos: + noun: + feminine: + - def: 'People, folk.' +- base: tonufi + pos: + noun: + masculine: + - def: '"King", actually lord of an animal given by a spirit.' +- base: tora + pos: + noun: + masculine: + - def: A male dog or hound. + - def: 'figaki tòra: A short-haired dog, typically feral.' diff --git a/dist/dictionary/tsu.json b/dist/dictionary/tsu.json new file mode 100644 index 0000000..5d38b7f --- /dev/null +++ b/dist/dictionary/tsu.json @@ -0,0 +1,92 @@ +[ + { + "base": "tsu", + "pos": { + "pro": [ + { + "def": "\"their clan\"" + } + ] + } + }, + { + "base": "tsufi", + "pos": { + "noun": { + "masculine": [ + { + "def": "Big, large." + } + ] + } + } + }, + { + "base": "tsufoni", + "pos": { + "noun": { + "feminine": [ + { + "def": "Hair on a human or creature." + } + ] + } + } + }, + { + "base": "tsukire", + "pos": { + "noun": { + "feminine": [ + { + "def": "tsukíre" + } + ] + } + } + }, + { + "base": "tsukishi", + "pos": { + "noun": { + "masculine": [ + { + "def": "Magic that waxes or wanes with the user's emotional state.\n" + } + ] + } + } + }, + { + "base": "tsukokimu", + "pos": { + "verb": { + "neuter": [ + { + "def": "To answer a spiritual call from a clan member.\n", + "reference": [ + { + "excerpt": "A screech filled the air, radiating away from the sharp cliffs that surrounded Shimusogo Valley. Even ripped from a human's throat, the sound traveled further than a mere cry could ever match. It rolled along the sand dunes and past the short ridges of rocks peppering the desert around the valley.\nRutejìmo froze when the sound slammed into him. The screech demanded action, forcing him to focus on the cliffs that framed the home valley. The sound continued past him, but he heard it repeating in his head like a memory refusing to be forgotten. He clenched his hand, and the leather ball he was about to throw slipped from his palm and landed on the ground with a muted thud.\n", + "identifier": "0100-02", + "title": "Sand and Bone 1", + "url": "https://fedran.com/sand-and-bone/chapter-01/" + } + ] + } + ] + } + } + }, + { + "base": "tsumo", + "pos": { + "noun": { + "feminine": [ + { + "def": "Small" + } + ] + } + } + } +] \ No newline at end of file diff --git a/dist/dictionary/tsu.yaml b/dist/dictionary/tsu.yaml new file mode 100644 index 0000000..56c5bed --- /dev/null +++ b/dist/dictionary/tsu.yaml @@ -0,0 +1,54 @@ +- base: tsu + pos: + pro: + - def: '"their clan"' +- base: tsufi + pos: + noun: + masculine: + - def: 'Big, large.' +- base: tsufoni + pos: + noun: + feminine: + - def: Hair on a human or creature. +- base: tsukire + pos: + noun: + feminine: + - def: tsukíre +- base: tsukishi + pos: + noun: + masculine: + - def: | + Magic that waxes or wanes with the user's emotional state. +- base: tsukokimu + pos: + verb: + neuter: + - def: | + To answer a spiritual call from a clan member. + reference: + - excerpt: > + A screech filled the air, radiating away from the sharp cliffs + that surrounded Shimusogo Valley. Even ripped from a human's + throat, the sound traveled further than a mere cry could ever + match. It rolled along the sand dunes and past the short ridges + of rocks peppering the desert around the valley. + + Rutejìmo froze when the sound slammed into him. The screech + demanded action, forcing him to focus on the cliffs that framed + the home valley. The sound continued past him, but he heard it + repeating in his head like a memory refusing to be forgotten. He + clenched his hand, and the leather ball he was about to throw + slipped from his palm and landed on the ground with a muted + thud. + identifier: 0100-02 + title: Sand and Bone 1 + url: 'https://fedran.com/sand-and-bone/chapter-01/' +- base: tsumo + pos: + noun: + feminine: + - def: Small diff --git a/dist/dictionary/u.json b/dist/dictionary/u.json new file mode 100644 index 0000000..ed87f47 --- /dev/null +++ b/dist/dictionary/u.json @@ -0,0 +1,49 @@ +[ + { + "base": "udimo", + "pos": { + "noun": { + "neuter": [ + { + "def": "The moment of pleasure when someone's associated celestial body rises above the horizon.\n", + "reference": [ + { + "excerpt": "Even in the depths of his family cave, Rutejìmo knew the moment the sun rose above the horizon. The delicate tickle of power started at the tips of his toes and fingers before quickly coursing along his veins and bones. It reached his heart and blossomed into a euphoric wave of pleasure that quickened his breath and heart.\nAcross the valley, all the adults would be waking up in the same manner. They were all part of Shimusògo’s clan, and the dépa’s power came from the sun spirit, Tachìra.\nMapábyo let out a soft coo. She made the same sound every morning, and he never tired of hearing it. Rutejìmo rolled on his side and swept his leg forward, burrowing through the blankets until his shin thudded against the hard muscles of her leg. After so many years of sprinting across the desert, both of their legs were solid as rock.\n", + "identifier": "0100-02", + "title": "Sand and Bone 4", + "url": "https://fedran.com/sand-and-ash/chapter-04/" + } + ] + } + ] + }, + "verb": { + "masculine": [ + { + "def": "Anticipating when one's celestial body rises above the horizon.\n" + } + ] + } + } + }, + { + "base": "uichifogu", + "pos": { + "noun": { + "masculine": [ + { + "def": "The moment when someone first emotionally connects to their spirit and uses magic.\n", + "reference": [ + { + "excerpt": "He caught a hint of movement again. This time, he didn’t stop but glanced over without slowing.\nIt was a bird racing him, just a few paces ahead of him and to the right. The avian glided across the sand on long legs. Its three-toed claws didn’t leave a trail behind it or disturb the sands with the breeze of its passing. It kept its short wings tight to its body as it ran. A brown-and-white speckled pattern ran from its crest down to the end of the long feathers that formed the tail. It was a shimusogo dépa, the dune-runner bird Shimusògo took his name from.\nStartled, Rutejìmo slowed down, and between one step and the next, he lost sight of the bird. Desperate, he tried to maintain his speed while looking around but the dépa was gone. He slowed down further, peering over his shoulders for the bird.\nAs he came to a stumbling halt, all the joy fled out of him. In one moment, he was experiencing a high and in the next it was gone. It wasn’t until it was missing that he realized he was experiencing it. In its wake, a longing burned inside him. He wanted to run, something he had never felt before, and the urge sang through his veins.\nRutejìmo frowned and turned in a circle. The dépa was gone and Tsubàyo and Karawàbi were quickly outpacing him. The need to run burned hotter. In the back of his mind, he knew that if he just ran fast enough, the dépa would return. The knowledge, however, frightened him since he had never had an urge to run before, nor had he ever seen a dépa while running.\n", + "identifier": "0100-00", + "title": "Sand and Blood 10", + "url": "https://fedran.com/sand-and-ash/chapter-10/" + } + ] + } + ] + } + } + } +] \ No newline at end of file diff --git a/dist/dictionary/u.yaml b/dist/dictionary/u.yaml new file mode 100644 index 0000000..112b49f --- /dev/null +++ b/dist/dictionary/u.yaml @@ -0,0 +1,75 @@ +- base: udimo + pos: + noun: + neuter: + - def: > + The moment of pleasure when someone's associated celestial body + rises above the horizon. + reference: + - excerpt: > + Even in the depths of his family cave, Rutejìmo knew the moment + the sun rose above the horizon. The delicate tickle of power + started at the tips of his toes and fingers before quickly + coursing along his veins and bones. It reached his heart and + blossomed into a euphoric wave of pleasure that quickened his + breath and heart. + + Across the valley, all the adults would be waking up in the same + manner. They were all part of Shimusògo’s clan, and the dépa’s + power came from the sun spirit, Tachìra. + + Mapábyo let out a soft coo. She made the same sound every + morning, and he never tired of hearing it. Rutejìmo rolled on + his side and swept his leg forward, burrowing through the + blankets until his shin thudded against the hard muscles of her + leg. After so many years of sprinting across the desert, both of + their legs were solid as rock. + identifier: 0100-02 + title: Sand and Bone 4 + url: 'https://fedran.com/sand-and-ash/chapter-04/' + verb: + masculine: + - def: | + Anticipating when one's celestial body rises above the horizon. +- base: uichifogu + pos: + noun: + masculine: + - def: > + The moment when someone first emotionally connects to their spirit + and uses magic. + reference: + - excerpt: > + He caught a hint of movement again. This time, he didn’t stop + but glanced over without slowing. + + It was a bird racing him, just a few paces ahead of him and to + the right. The avian glided across the sand on long legs. Its + three-toed claws didn’t leave a trail behind it or disturb the + sands with the breeze of its passing. It kept its short wings + tight to its body as it ran. A brown-and-white speckled pattern + ran from its crest down to the end of the long feathers that + formed the tail. It was a shimusogo dépa, the dune-runner bird + Shimusògo took his name from. + + Startled, Rutejìmo slowed down, and between one step and the + next, he lost sight of the bird. Desperate, he tried to maintain + his speed while looking around but the dépa was gone. He slowed + down further, peering over his shoulders for the bird. + + As he came to a stumbling halt, all the joy fled out of him. In + one moment, he was experiencing a high and in the next it was + gone. It wasn’t until it was missing that he realized he was + experiencing it. In its wake, a longing burned inside him. He + wanted to run, something he had never felt before, and the urge + sang through his veins. + + Rutejìmo frowned and turned in a circle. The dépa was gone and + Tsubàyo and Karawàbi were quickly outpacing him. The need to run + burned hotter. In the back of his mind, he knew that if he just + ran fast enough, the dépa would return. The knowledge, however, + frightened him since he had never had an urge to run before, nor + had he ever seen a dépa while running. + identifier: 0100-00 + title: Sand and Blood 10 + url: 'https://fedran.com/sand-and-ash/chapter-10/' diff --git a/dist/dictionary/wa.json b/dist/dictionary/wa.json new file mode 100644 index 0000000..8130c19 --- /dev/null +++ b/dist/dictionary/wa.json @@ -0,0 +1,74 @@ +[ + { + "base": "wabi", + "pos": { + "noun": { + "neuter": [ + { + "def": "The relative social rank between two people, such as a underling and their boss, a child to a clan elder, or a younger to an older person." + } + ] + } + } + }, + { + "base": "wabipeji", + "pos": { + "verb": { + "feminine": [ + { + "def": "To temporarily raise the subject's social rank for purposes of speaking." + } + ] + } + } + }, + { + "base": "wafu", + "pos": { + "noun": { + "neuter": [ + { + "def": "Word or words, either spoken or written." + } + ] + } + } + }, + { + "base": "wamuchiso", + "pos": { + "verb": { + "feminine": [ + { + "def": "To magically bond with an animal or creature.\n" + } + ] + } + } + }, + { + "base": "wanu", + "pos": { + "noun": { + "neuter": [ + { + "def": "Name, named." + } + ] + } + } + }, + { + "base": "watefama", + "pos": { + "verb": { + "feminine": [ + { + "def": "To magically bond with a place or natural feature.\n" + } + ] + } + } + } +] \ No newline at end of file diff --git a/dist/dictionary/wa.yaml b/dist/dictionary/wa.yaml new file mode 100644 index 0000000..6e1f27f --- /dev/null +++ b/dist/dictionary/wa.yaml @@ -0,0 +1,37 @@ +- base: wabi + pos: + noun: + neuter: + - def: >- + The relative social rank between two people, such as a underling and + their boss, a child to a clan elder, or a younger to an older + person. +- base: wabipeji + pos: + verb: + feminine: + - def: >- + To temporarily raise the subject's social rank for purposes of + speaking. +- base: wafu + pos: + noun: + neuter: + - def: 'Word or words, either spoken or written.' +- base: wamuchiso + pos: + verb: + feminine: + - def: | + To magically bond with an animal or creature. +- base: wanu + pos: + noun: + neuter: + - def: 'Name, named.' +- base: watefama + pos: + verb: + feminine: + - def: | + To magically bond with a place or natural feature. diff --git a/dist/dictionary/we.json b/dist/dictionary/we.json new file mode 100644 index 0000000..59176ec --- /dev/null +++ b/dist/dictionary/we.json @@ -0,0 +1,12 @@ +[ + { + "base": "we", + "pos": { + "part": [ + { + "def": "Indicates the beginning of a number sequence." + } + ] + } + } +] \ No newline at end of file diff --git a/dist/dictionary/we.yaml b/dist/dictionary/we.yaml new file mode 100644 index 0000000..724f627 --- /dev/null +++ b/dist/dictionary/we.yaml @@ -0,0 +1,4 @@ +- base: we + pos: + part: + - def: Indicates the beginning of a number sequence. diff --git a/dist/dictionary/wi.json b/dist/dictionary/wi.json new file mode 100644 index 0000000..43909a5 --- /dev/null +++ b/dist/dictionary/wi.json @@ -0,0 +1,17 @@ +[ + { + "base": "widahogu", + "pos": { + "verb": { + "feminine": [ + { + "def": "To lift or carry something using magic.\n" + }, + { + "def": "To move something through telekinesis.\n" + } + ] + } + } + } +] \ No newline at end of file diff --git a/dist/dictionary/wi.yaml b/dist/dictionary/wi.yaml new file mode 100644 index 0000000..77689e0 --- /dev/null +++ b/dist/dictionary/wi.yaml @@ -0,0 +1,8 @@ +- base: widahogu + pos: + verb: + feminine: + - def: | + To lift or carry something using magic. + - def: | + To move something through telekinesis. diff --git a/dist/dictionary/wo.json b/dist/dictionary/wo.json new file mode 100644 index 0000000..2e87eeb --- /dev/null +++ b/dist/dictionary/wo.json @@ -0,0 +1,21 @@ +[ + { + "base": "woi", + "pos": { + "noun": { + "neuter": [ + { + "def": "A blade or clump of grass." + } + ] + }, + "verb": { + "feminine": [ + { + "def": "To gather or group together for company." + } + ] + } + } + } +] \ No newline at end of file diff --git a/dist/dictionary/wo.yaml b/dist/dictionary/wo.yaml new file mode 100644 index 0000000..e5df44f --- /dev/null +++ b/dist/dictionary/wo.yaml @@ -0,0 +1,8 @@ +- base: woi + pos: + noun: + neuter: + - def: A blade or clump of grass. + verb: + feminine: + - def: To gather or group together for company. diff --git a/dist/dictionary/wu.json b/dist/dictionary/wu.json new file mode 100644 index 0000000..6ef14bd --- /dev/null +++ b/dist/dictionary/wu.json @@ -0,0 +1,29 @@ +[ + { + "base": "wuduna", + "pos": { + "noun": { + "neuter": [ + { + "def": "1/64th of a dātsu used for light weights." + }, + { + "def": "OOW: 15.9 g." + } + ] + } + } + }, + { + "base": "wufabi", + "pos": { + "noun": { + "neuter": [ + { + "def": "Sparrows or small birds." + } + ] + } + } + } +] \ No newline at end of file diff --git a/dist/dictionary/wu.yaml b/dist/dictionary/wu.yaml new file mode 100644 index 0000000..881d997 --- /dev/null +++ b/dist/dictionary/wu.yaml @@ -0,0 +1,11 @@ +- base: wuduna + pos: + noun: + neuter: + - def: 1/64th of a dātsu used for light weights. + - def: 'OOW: 15.9 g.' +- base: wufabi + pos: + noun: + neuter: + - def: Sparrows or small birds. diff --git a/dist/dictionary/ya.json b/dist/dictionary/ya.json new file mode 100644 index 0000000..72b02dc --- /dev/null +++ b/dist/dictionary/ya.json @@ -0,0 +1,58 @@ +[ + { + "base": "yagumama", + "pos": { + "verb": { + "feminine": [ + { + "def": "To manipulate or guide a plant or animal's growth.\n" + } + ], + "masculine": [ + { + "def": "To cause a plant or animal grow rapidly with magic.\n" + } + ] + } + } + }, + { + "base": "yaji", + "pos": { + "noun": { + "neuter": [ + { + "def": "1/64th the difference between [pimayāzu](../pi/pimayāzu.markdown) (freezing) and [komiyāza](../ko/komiyāza.markdown) (boiling)." + }, + { + "def": "OOW: 1.6 C." + } + ] + } + } + }, + { + "base": "yarimu", + "pos": { + "noun": { + "neuter": [ + { + "def": "Rain." + } + ] + } + } + }, + { + "base": "yarimufu", + "pos": { + "noun": { + "masculine": [ + { + "def": "Cloud." + } + ] + } + } + } +] \ No newline at end of file diff --git a/dist/dictionary/ya.yaml b/dist/dictionary/ya.yaml new file mode 100644 index 0000000..3f4d58f --- /dev/null +++ b/dist/dictionary/ya.yaml @@ -0,0 +1,27 @@ +- base: yagumama + pos: + verb: + feminine: + - def: | + To manipulate or guide a plant or animal's growth. + masculine: + - def: | + To cause a plant or animal grow rapidly with magic. +- base: yaji + pos: + noun: + neuter: + - def: >- + 1/64th the difference between [pimayāzu](../pi/pimayāzu.markdown) + (freezing) and [komiyāza](../ko/komiyāza.markdown) (boiling). + - def: 'OOW: 1.6 C.' +- base: yarimu + pos: + noun: + neuter: + - def: Rain. +- base: yarimufu + pos: + noun: + masculine: + - def: Cloud. diff --git a/dist/dictionary/yo.json b/dist/dictionary/yo.json new file mode 100644 index 0000000..14a4187 --- /dev/null +++ b/dist/dictionary/yo.json @@ -0,0 +1,12 @@ +[ + { + "base": "yo", + "pos": { + "part": [ + { + "def": "Suffix for not or negate." + } + ] + } + } +] \ No newline at end of file diff --git a/dist/dictionary/yo.yaml b/dist/dictionary/yo.yaml new file mode 100644 index 0000000..8f165ea --- /dev/null +++ b/dist/dictionary/yo.yaml @@ -0,0 +1,4 @@ +- base: yo + pos: + part: + - def: Suffix for not or negate. diff --git a/dist/dictionary/yu.json b/dist/dictionary/yu.json new file mode 100644 index 0000000..f80d6f0 --- /dev/null +++ b/dist/dictionary/yu.json @@ -0,0 +1,14 @@ +[ + { + "base": "yuji", + "pos": { + "noun": { + "neuter": [ + { + "def": "An egg of a bird or insect." + } + ] + } + } + } +] \ No newline at end of file diff --git a/dist/dictionary/yu.yaml b/dist/dictionary/yu.yaml new file mode 100644 index 0000000..8158ddb --- /dev/null +++ b/dist/dictionary/yu.yaml @@ -0,0 +1,5 @@ +- base: yuji + pos: + noun: + neuter: + - def: An egg of a bird or insect. diff --git a/dist/dictionary/za.json b/dist/dictionary/za.json new file mode 100644 index 0000000..7bda744 --- /dev/null +++ b/dist/dictionary/za.json @@ -0,0 +1,22 @@ +[ + { + "base": "zachyo", + "pos": { + "noun": { + "feminine": [ + { + "def": "A bowl for a single person." + }, + { + "def": "A small bowl." + } + ], + "masculine": [ + { + "def": "A serving or shared bowl." + } + ] + } + } + } +] \ No newline at end of file diff --git a/dist/dictionary/za.yaml b/dist/dictionary/za.yaml new file mode 100644 index 0000000..c08b9ff --- /dev/null +++ b/dist/dictionary/za.yaml @@ -0,0 +1,8 @@ +- base: zachyo + pos: + noun: + feminine: + - def: A bowl for a single person. + - def: A small bowl. + masculine: + - def: A serving or shared bowl. diff --git a/dist/dictionary/ze.json b/dist/dictionary/ze.json new file mode 100644 index 0000000..d9318f9 --- /dev/null +++ b/dist/dictionary/ze.json @@ -0,0 +1,14 @@ +[ + { + "base": "zeshitomi", + "pos": { + "noun": { + "masculine": [ + { + "def": "Legend." + } + ] + } + } + } +] \ No newline at end of file diff --git a/dist/dictionary/ze.yaml b/dist/dictionary/ze.yaml new file mode 100644 index 0000000..0ffaacb --- /dev/null +++ b/dist/dictionary/ze.yaml @@ -0,0 +1,5 @@ +- base: zeshitomi + pos: + noun: + masculine: + - def: Legend. diff --git a/dist/dictionary/zo.json b/dist/dictionary/zo.json new file mode 100644 index 0000000..5e621d5 --- /dev/null +++ b/dist/dictionary/zo.json @@ -0,0 +1,14 @@ +[ + { + "base": "zopaba", + "pos": { + "noun": { + "neuter": [ + { + "def": "Round, circle" + } + ] + } + } + } +] \ No newline at end of file diff --git a/dist/dictionary/zo.yaml b/dist/dictionary/zo.yaml new file mode 100644 index 0000000..4d0e601 --- /dev/null +++ b/dist/dictionary/zo.yaml @@ -0,0 +1,5 @@ +- base: zopaba + pos: + noun: + neuter: + - def: 'Round, circle' diff --git a/dist/dictionary/zu.json b/dist/dictionary/zu.json new file mode 100644 index 0000000..38a2845 --- /dev/null +++ b/dist/dictionary/zu.json @@ -0,0 +1,60 @@ +[ + { + "base": "zushi", + "pos": { + "noun": { + "feminine": [ + { + "def": "A nap." + } + ], + "masculine": [ + { + "def": "A long or a full night's sleep." + } + ] + }, + "verb": { + "feminine": [ + { + "def": "To take a nap." + } + ], + "masculine": [ + { + "def": "To sleep for a long time." + } + ] + } + } + }, + { + "base": "zushichya", + "pos": { + "adj": [ + { + "def": "Growing older." + } + ], + "noun": { + "masculine": [ + { + "def": "Amber." + } + ], + "neuter": [ + { + "def": "A resin tree." + } + ] + }, + "verb": { + "feminine": [ + { + "def": "To solidify one's opinions." + } + ] + } + } + } +] \ No newline at end of file diff --git a/dist/dictionary/zu.yaml b/dist/dictionary/zu.yaml new file mode 100644 index 0000000..2414a6a --- /dev/null +++ b/dist/dictionary/zu.yaml @@ -0,0 +1,24 @@ +- base: zushi + pos: + noun: + feminine: + - def: A nap. + masculine: + - def: A long or a full night's sleep. + verb: + feminine: + - def: To take a nap. + masculine: + - def: To sleep for a long time. +- base: zushichya + pos: + adj: + - def: Growing older. + noun: + masculine: + - def: Amber. + neuter: + - def: A resin tree. + verb: + feminine: + - def: To solidify one's opinions. diff --git a/package-lock.json b/package-lock.json index d51cd41..2ab818a 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1743,6 +1743,15 @@ "integrity": "sha1-NJptRMU6Ud6JtAgFxdXlm0F9M0A=", "dev": true }, + "json-stable-stringify": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz", + "integrity": "sha1-mnWdOcXy/1A/1TAGRu1EX4jE+a8=", + "dev": true, + "requires": { + "jsonify": "~0.0.0" + } + }, "json5": { "version": "0.5.1", "resolved": "http://registry.npmjs.org/json5/-/json5-0.5.1.tgz", @@ -1758,6 +1767,12 @@ "graceful-fs": "^4.1.6" } }, + "jsonify": { + "version": "0.0.0", + "resolved": "https://registry.npmjs.org/jsonify/-/jsonify-0.0.0.tgz", + "integrity": "sha1-LHS27kHZPKUbe1qu6PUDYx0lKnM=", + "dev": true + }, "jsonparse": { "version": "1.3.1", "resolved": "https://registry.npmjs.org/jsonparse/-/jsonparse-1.3.1.tgz", diff --git a/package.json b/package.json index ae2d551..01cc627 100644 --- a/package.json +++ b/package.json @@ -6,12 +6,16 @@ "@commitlint/config-conventional": "^7.1.2", "commitizen": "^3.0.5", "cz-conventional-changelog": "^2.1.0", + "fs-extra": "^7.0.1", "husky": "^1.2.1", "js-yaml": "^3.12.0", + "json-stable-stringify": "^1.0.1", "pajv": "^1.2.0" }, "scripts": { - "test": "pajv validate -s src/schema/entry.json -d 'src/dictionary/*/*.yaml' --errors=text > /dev/null" + "test": "pajv validate -s src/schema/entry.json -d 'src/dictionary/*/*.yaml' --errors=text > /dev/null", + "prebuild": "npm test", + "build": "bin/combine-dictionaries" }, "commitlint": { "extends": [ @@ -25,8 +29,7 @@ }, "husky": { "hooks": { - "pre-commit": "npm test", - "pre-push": "npm test", + "pre-commit": "npm build", "commit-msg": "commitlint -E HUSKY_GIT_PARAMS" } },