feat: added pre-combined dictionary files

This commit is contained in:
D. Moonfire 2018-12-26 21:46:38 -06:00
parent 3b54db3969
commit 69d6ce026c
196 changed files with 12430 additions and 206 deletions

67
bin/combine-dictionaries Executable file
View file

@ -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));
}
}
}

View file

@ -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 (<WORD>)
{
# 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";
}
}

4112
dist/dictionary.json vendored Normal file

File diff suppressed because it is too large Load diff

1965
dist/dictionary.yaml vendored Normal file

File diff suppressed because it is too large Load diff

58
dist/dictionary/a.json vendored Normal file
View file

@ -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."
}
]
}
}
}
]

25
dist/dictionary/a.yaml vendored Normal file
View file

@ -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.

36
dist/dictionary/ba.json vendored Normal file
View file

@ -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."
}
]
}
}
}
]

14
dist/dictionary/ba.yaml vendored Normal file
View file

@ -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.

32
dist/dictionary/be.json vendored Normal file
View file

@ -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."
}
]
}
}
}
]

14
dist/dictionary/be.yaml vendored Normal file
View file

@ -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.

95
dist/dictionary/bi.json vendored Normal file
View file

@ -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."
}
]
}
}
}
]

51
dist/dictionary/bi.yaml vendored Normal file
View file

@ -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.

46
dist/dictionary/bo.json vendored Normal file
View file

@ -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."
}
]
}
}
}
]

18
dist/dictionary/bo.yaml vendored Normal file
View file

@ -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.

38
dist/dictionary/bu.json vendored Normal file
View file

@ -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"
}
]
}
}
}
]

17
dist/dictionary/bu.yaml vendored Normal file
View file

@ -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.

14
dist/dictionary/bya.json vendored Normal file
View file

@ -0,0 +1,14 @@
[
{
"base": "byan",
"pos": {
"noun": {
"neuter": [
{
"def": "Green."
}
]
}
}
}
]

5
dist/dictionary/bya.yaml vendored Normal file
View file

@ -0,0 +1,5 @@
- base: byan
pos:
noun:
neuter:
- def: Green.

68
dist/dictionary/byo.json vendored Normal file
View file

@ -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."
}
]
}
}
}
]

27
dist/dictionary/byo.yaml vendored Normal file
View file

@ -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.

125
dist/dictionary/chi.json vendored Normal file
View file

@ -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."
}
]
}
}
}
]

80
dist/dictionary/chi.yaml vendored Normal file
View file

@ -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.'

75
dist/dictionary/cho.json vendored Normal file
View file

@ -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."
}
]
}
}
}
]

30
dist/dictionary/cho.yaml vendored Normal file
View file

@ -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.

44
dist/dictionary/chyo.json vendored Normal file
View file

@ -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."
}
]
}
}
}
]

19
dist/dictionary/chyo.yaml vendored Normal file
View file

@ -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.

44
dist/dictionary/chyu.json vendored Normal file
View file

@ -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."
}
]
}
}
}
]

19
dist/dictionary/chyu.yaml vendored Normal file
View file

@ -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.

80
dist/dictionary/da.json vendored Normal file
View file

@ -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."
}
]
}
}
}
]

38
dist/dictionary/da.yaml vendored Normal file
View file

@ -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.'

62
dist/dictionary/de.json vendored Normal file
View file

@ -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."
}
]
}
}
}
]

25
dist/dictionary/de.yaml vendored Normal file
View file

@ -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.

73
dist/dictionary/do.json vendored Normal file
View file

@ -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."
}
]
}
}
}
]

29
dist/dictionary/do.yaml vendored Normal file
View file

@ -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.

68
dist/dictionary/fa.json vendored Normal file
View file

@ -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."
}
]
}
}
]

27
dist/dictionary/fa.yaml vendored Normal file
View file

@ -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.'

12
dist/dictionary/fe.json vendored Normal file
View file

@ -0,0 +1,12 @@
[
{
"base": "fechi",
"pos": {
"adj": [
{
"def": "Greater or superior in social rank."
}
]
}
}
]

4
dist/dictionary/fe.yaml vendored Normal file
View file

@ -0,0 +1,4 @@
- base: fechi
pos:
adj:
- def: Greater or superior in social rank.

14
dist/dictionary/fi.json vendored Normal file
View file

@ -0,0 +1,14 @@
[
{
"base": "figi",
"pos": {
"noun": {
"feminine": [
{
"def": "Teeth, bite."
}
]
}
}
}
]

5
dist/dictionary/fi.yaml vendored Normal file
View file

@ -0,0 +1,5 @@
- base: figi
pos:
noun:
feminine:
- def: 'Teeth, bite.'

24
dist/dictionary/fo.json vendored Normal file
View file

@ -0,0 +1,24 @@
[
{
"base": "foni",
"pos": {
"noun": {
"neuter": [
{
"def": "Head."
}
]
}
}
},
{
"base": "fopu",
"pos": {
"adj": [
{
"def": "Full, stuffed."
}
]
}
}
]

9
dist/dictionary/fo.yaml vendored Normal file
View file

@ -0,0 +1,9 @@
- base: foni
pos:
noun:
neuter:
- def: Head.
- base: fopu
pos:
adj:
- def: 'Full, stuffed.'

69
dist/dictionary/fu.json vendored Normal file
View file

@ -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."
}
]
}
}
}
]

28
dist/dictionary/fu.yaml vendored Normal file
View file

@ -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.

111
dist/dictionary/ga.json vendored Normal file
View file

@ -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."
}
]
}
}
}
]

60
dist/dictionary/ga.yaml vendored Normal file
View file

@ -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.

34
dist/dictionary/ge.json vendored Normal file
View file

@ -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."
}
]
}
}
}
]

13
dist/dictionary/ge.yaml vendored Normal file
View file

@ -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.'

101
dist/dictionary/gi.json vendored Normal file
View file

@ -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."
}
]
}
}
}
]

54
dist/dictionary/gi.yaml vendored Normal file
View file

@ -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.

29
dist/dictionary/go.json vendored Normal file
View file

@ -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\"."
}
]
}
}
}
]

11
dist/dictionary/go.yaml vendored Normal file
View file

@ -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".'

26
dist/dictionary/gu.json vendored Normal file
View file

@ -0,0 +1,26 @@
[
{
"base": "gupa",
"pos": {
"verb": {
"masculine": [
{
"def": "Gulp, drink."
}
]
}
}
},
{
"base": "gupiji",
"pos": {
"noun": {
"neuter": [
{
"def": "Valley"
}
]
}
}
}
]

10
dist/dictionary/gu.yaml vendored Normal file
View file

@ -0,0 +1,10 @@
- base: gupa
pos:
verb:
masculine:
- def: 'Gulp, drink.'
- base: gupiji
pos:
noun:
neuter:
- def: Valley

20
dist/dictionary/gyu.json vendored Normal file
View file

@ -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."
}
]
}
}
}
]

7
dist/dictionary/gyu.yaml vendored Normal file
View file

@ -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.'

82
dist/dictionary/ha.json vendored Normal file
View file

@ -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."
}
]
}
}
]

35
dist/dictionary/ha.yaml vendored Normal file
View file

@ -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.'

42
dist/dictionary/he.json vendored Normal file
View file

@ -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."
}
]
}
}
}
]

16
dist/dictionary/he.yaml vendored Normal file
View file

@ -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.'

62
dist/dictionary/hi.json vendored Normal file
View file

@ -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."
}
]
}
}
}
]

31
dist/dictionary/hi.yaml vendored Normal file
View file

@ -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.

61
dist/dictionary/ho.json vendored Normal file
View file

@ -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."
}
]
}
}
}
]

31
dist/dictionary/ho.yaml vendored Normal file
View file

@ -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.

14
dist/dictionary/hu.json vendored Normal file
View file

@ -0,0 +1,14 @@
[
{
"base": "hupodi",
"pos": {
"verb": {
"feminine": [
{
"def": "Come, approach."
}
]
}
}
}
]

5
dist/dictionary/hu.yaml vendored Normal file
View file

@ -0,0 +1,5 @@
- base: hupodi
pos:
verb:
feminine:
- def: 'Come, approach.'

30
dist/dictionary/hyo.json vendored Normal file
View file

@ -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."
}
]
}
}
}
]

13
dist/dictionary/hyo.yaml vendored Normal file
View file

@ -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.

14
dist/dictionary/hyu.json vendored Normal file
View file

@ -0,0 +1,14 @@
[
{
"base": "hyukadi",
"pos": {
"verb": {
"feminine": [
{
"def": "To volunteer or give assistance."
}
]
}
}
}
]

5
dist/dictionary/hyu.yaml vendored Normal file
View file

@ -0,0 +1,5 @@
- base: hyukadi
pos:
verb:
feminine:
- def: To volunteer or give assistance.

64
dist/dictionary/i.json vendored Normal file
View file

@ -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 didnt 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"
}
]
}
}
}
]

38
dist/dictionary/i.yaml vendored Normal file
View file

@ -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 didnt 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.

21
dist/dictionary/ji.json vendored Normal file
View file

@ -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."
}
]
}
}
}
]

8
dist/dictionary/ji.yaml vendored Normal file
View file

@ -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.

51
dist/dictionary/jo.json vendored Normal file
View file

@ -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."
}
]
}
}
}
]

20
dist/dictionary/jo.yaml vendored Normal file
View file

@ -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.

52
dist/dictionary/jyo.json vendored Normal file
View file

@ -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."
}
]
}
}
]

20
dist/dictionary/jyo.yaml vendored Normal file
View file

@ -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.

51
dist/dictionary/ka.json vendored Normal file
View file

@ -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"
}
]
}
}
}
]

24
dist/dictionary/ka.yaml vendored Normal file
View file

@ -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.

29
dist/dictionary/ke.json vendored Normal file
View file

@ -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."
}
]
}
}
}
]

11
dist/dictionary/ke.yaml vendored Normal file
View file

@ -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.

101
dist/dictionary/ki.json vendored Normal file
View file

@ -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."
}
]
}
}
}
]

43
dist/dictionary/ki.yaml vendored Normal file
View file

@ -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.'

117
dist/dictionary/ko.json vendored Normal file
View file

@ -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."
}
]
}
}
]

49
dist/dictionary/ko.yaml vendored Normal file
View file

@ -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.

38
dist/dictionary/ku.json vendored Normal file
View file

@ -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."
}
]
}
}
}
]

15
dist/dictionary/ku.yaml vendored Normal file
View file

@ -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.

42
dist/dictionary/kyo.json vendored Normal file
View file

@ -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."
}
]
}
}
}
]

16
dist/dictionary/kyo.yaml vendored Normal file
View file

@ -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.

24
dist/dictionary/kyu.json vendored Normal file
View file

@ -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."
}
]
}
}
}
]

11
dist/dictionary/kyu.yaml vendored Normal file
View file

@ -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.

78
dist/dictionary/ma.json vendored Normal file
View file

@ -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"
}
]
}
}
}
]

33
dist/dictionary/ma.yaml vendored Normal file
View file

@ -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.

12
dist/dictionary/me.json vendored Normal file
View file

@ -0,0 +1,12 @@
[
{
"base": "mekoshi",
"pos": {
"adj": [
{
"def": "To perform an action humbly or without pride."
}
]
}
}
]

4
dist/dictionary/me.yaml vendored Normal file
View file

@ -0,0 +1,4 @@
- base: mekoshi
pos:
adj:
- def: To perform an action humbly or without pride.

67
dist/dictionary/mi.json vendored Normal file
View file

@ -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."
}
]
}
}
}
]

27
dist/dictionary/mi.yaml vendored Normal file
View file

@ -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.

54
dist/dictionary/mo.json vendored Normal file
View file

@ -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"
}
]
}
}
]

35
dist/dictionary/mo.yaml vendored Normal file
View file

@ -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.

Some files were not shown because too many files have changed in this diff Show more