refactor: removing old dist and scripts
This commit is contained in:
parent
f00cd81ca1
commit
5f1e76250c
195 changed files with 1 additions and 13948 deletions
|
@ -1,69 +0,0 @@
|
||||||
#!/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);
|
|
||||||
|
|
||||||
entry.firstSyllable = syllable;
|
|
||||||
|
|
||||||
// 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));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -1,47 +0,0 @@
|
||||||
#!/usr/bin/perl
|
|
||||||
|
|
||||||
#
|
|
||||||
# Setup
|
|
||||||
#
|
|
||||||
|
|
||||||
# Directives
|
|
||||||
use strict;
|
|
||||||
use warnings;
|
|
||||||
|
|
||||||
# Modules
|
|
||||||
use File::Basename;
|
|
||||||
|
|
||||||
#
|
|
||||||
# Syllables
|
|
||||||
#
|
|
||||||
|
|
||||||
my @SYLLABLES = qw@a wa ra ma pa ba ha na da ta za sa ga ka fa e we re
|
|
||||||
me pe be he ne de te ze se ge ke fe i wi ri mi pi bi hi ni chi ji shi
|
|
||||||
gi ki fi o wo ro mo po bo ho no do to jo so go ko fo u wu ru mu pu bu
|
|
||||||
hu nu tsu zu su gu ku fu ya rya mya pya bya hya nya chya jya shya gya
|
|
||||||
kya yo ryo myo pyo byo hyo nyo chyo jyo shyo gyo kyo yu ryu myu pyu
|
|
||||||
byu hyu nyu chyu jyu shyu gyu kyu n@;
|
|
||||||
|
|
||||||
#
|
|
||||||
# Figure out the directory
|
|
||||||
#
|
|
||||||
|
|
||||||
my $script_directory = dirname($0);
|
|
||||||
my $root_directory = dirname($script_directory);
|
|
||||||
my $dict_directory = "$root_directory/src/dictionary";
|
|
||||||
|
|
||||||
print "$dict_directory\n";
|
|
||||||
|
|
||||||
#
|
|
||||||
# Go through the syllable files and build up the counts.
|
|
||||||
#
|
|
||||||
|
|
||||||
foreach my $syllable (@SYLLABLES)
|
|
||||||
{
|
|
||||||
# Figure out the counts for this directory.
|
|
||||||
my @count = glob("$dict_directory/$syllable/*.yaml");
|
|
||||||
my $count = scalar(@count);
|
|
||||||
|
|
||||||
# Write it out.
|
|
||||||
printf "%3d %s\n", $count, basename($syllable);
|
|
||||||
}
|
|
4511
dist/dictionary.json
vendored
4511
dist/dictionary.json
vendored
File diff suppressed because it is too large
Load diff
2299
dist/dictionary.yaml
vendored
2299
dist/dictionary.yaml
vendored
File diff suppressed because it is too large
Load diff
61
dist/dictionary/a.json
vendored
61
dist/dictionary/a.json
vendored
|
@ -1,61 +0,0 @@
|
||||||
[
|
|
||||||
{
|
|
||||||
"base": "aeno",
|
|
||||||
"firstSyllable": "a",
|
|
||||||
"pos": {
|
|
||||||
"noun": {
|
|
||||||
"neuter": [
|
|
||||||
{
|
|
||||||
"def": "Bird eggs."
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"verb": {
|
|
||||||
"feminine": [
|
|
||||||
{
|
|
||||||
"def": "To destroy something by crushing it."
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"base": "afukijomu",
|
|
||||||
"firstSyllable": "a",
|
|
||||||
"pos": {
|
|
||||||
"verb": {
|
|
||||||
"feminine": [
|
|
||||||
{
|
|
||||||
"def": "To shape or manipulate the physical form using magic.\n"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"def": "To sculpt solid materials.\n"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"base": "ashyobyupa",
|
|
||||||
"firstSyllable": "a",
|
|
||||||
"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."
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
28
dist/dictionary/a.yaml
vendored
28
dist/dictionary/a.yaml
vendored
|
@ -1,28 +0,0 @@
|
||||||
- base: aeno
|
|
||||||
firstSyllable: a
|
|
||||||
pos:
|
|
||||||
noun:
|
|
||||||
neuter:
|
|
||||||
- def: Bird eggs.
|
|
||||||
verb:
|
|
||||||
feminine:
|
|
||||||
- def: To destroy something by crushing it.
|
|
||||||
- base: afukijomu
|
|
||||||
firstSyllable: a
|
|
||||||
pos:
|
|
||||||
verb:
|
|
||||||
feminine:
|
|
||||||
- def: |
|
|
||||||
To shape or manipulate the physical form using magic.
|
|
||||||
- def: |
|
|
||||||
To sculpt solid materials.
|
|
||||||
- base: ashyobyupa
|
|
||||||
firstSyllable: a
|
|
||||||
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.
|
|
39
dist/dictionary/ba.json
vendored
39
dist/dictionary/ba.json
vendored
|
@ -1,39 +0,0 @@
|
||||||
[
|
|
||||||
{
|
|
||||||
"base": "baba",
|
|
||||||
"firstSyllable": "ba",
|
|
||||||
"pos": {
|
|
||||||
"noun": {
|
|
||||||
"masculine": [
|
|
||||||
{
|
|
||||||
"def": "Heart."
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"base": "barichi",
|
|
||||||
"firstSyllable": "ba",
|
|
||||||
"pos": {
|
|
||||||
"adj": [
|
|
||||||
{
|
|
||||||
"def": "Mundane, non-magical."
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"base": "barichiroma",
|
|
||||||
"firstSyllable": "ba",
|
|
||||||
"pos": {
|
|
||||||
"noun": {
|
|
||||||
"neuter": [
|
|
||||||
{
|
|
||||||
"def": "Magic-less person."
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
17
dist/dictionary/ba.yaml
vendored
17
dist/dictionary/ba.yaml
vendored
|
@ -1,17 +0,0 @@
|
||||||
- base: baba
|
|
||||||
firstSyllable: ba
|
|
||||||
pos:
|
|
||||||
noun:
|
|
||||||
masculine:
|
|
||||||
- def: Heart.
|
|
||||||
- base: barichi
|
|
||||||
firstSyllable: ba
|
|
||||||
pos:
|
|
||||||
adj:
|
|
||||||
- def: "Mundane, non-magical."
|
|
||||||
- base: barichiroma
|
|
||||||
firstSyllable: ba
|
|
||||||
pos:
|
|
||||||
noun:
|
|
||||||
neuter:
|
|
||||||
- def: Magic-less person.
|
|
35
dist/dictionary/be.json
vendored
35
dist/dictionary/be.json
vendored
|
@ -1,35 +0,0 @@
|
||||||
[
|
|
||||||
{
|
|
||||||
"base": "bedano",
|
|
||||||
"firstSyllable": "be",
|
|
||||||
"pos": {
|
|
||||||
"noun": {
|
|
||||||
"feminine": [
|
|
||||||
{
|
|
||||||
"def": "A pinch of something, used for cooking."
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"def": "1/64th of a wudūna used for measuring delicate weights."
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"def": "0.2 grams.",
|
|
||||||
"oow": true
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"base": "benkidofu",
|
|
||||||
"firstSyllable": "be",
|
|
||||||
"pos": {
|
|
||||||
"noun": {
|
|
||||||
"neuter": [
|
|
||||||
{
|
|
||||||
"def": "The natural shielding of resonance damage against the weaker of two opposing magical fields."
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
17
dist/dictionary/be.yaml
vendored
17
dist/dictionary/be.yaml
vendored
|
@ -1,17 +0,0 @@
|
||||||
- base: bedano
|
|
||||||
firstSyllable: be
|
|
||||||
pos:
|
|
||||||
noun:
|
|
||||||
feminine:
|
|
||||||
- def: "A pinch of something, used for cooking."
|
|
||||||
- def: 1/64th of a wudūna used for measuring delicate weights.
|
|
||||||
- def: 0.2 grams.
|
|
||||||
oow: true
|
|
||||||
- base: benkidofu
|
|
||||||
firstSyllable: be
|
|
||||||
pos:
|
|
||||||
noun:
|
|
||||||
neuter:
|
|
||||||
- def: >-
|
|
||||||
The natural shielding of resonance damage against the weaker of two
|
|
||||||
opposing magical fields.
|
|
101
dist/dictionary/bi.json
vendored
101
dist/dictionary/bi.json
vendored
|
@ -1,101 +0,0 @@
|
||||||
[
|
|
||||||
{
|
|
||||||
"base": "bichiru",
|
|
||||||
"firstSyllable": "bi",
|
|
||||||
"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",
|
|
||||||
"firstSyllable": "bi",
|
|
||||||
"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",
|
|
||||||
"firstSyllable": "bi",
|
|
||||||
"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",
|
|
||||||
"firstSyllable": "bi",
|
|
||||||
"pos": {
|
|
||||||
"noun": {
|
|
||||||
"feminine": [
|
|
||||||
{
|
|
||||||
"def": "Flea, louse."
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"base": "bimugi",
|
|
||||||
"firstSyllable": "bi",
|
|
||||||
"pos": {
|
|
||||||
"noun": {
|
|
||||||
"masculine": [
|
|
||||||
{
|
|
||||||
"def": "Horn."
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"base": "bire",
|
|
||||||
"firstSyllable": "bi",
|
|
||||||
"pos": {
|
|
||||||
"noun": {
|
|
||||||
"masculine": [
|
|
||||||
{
|
|
||||||
"def": "Night."
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
57
dist/dictionary/bi.yaml
vendored
57
dist/dictionary/bi.yaml
vendored
|
@ -1,57 +0,0 @@
|
||||||
- base: bichiru
|
|
||||||
firstSyllable: bi
|
|
||||||
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
|
|
||||||
firstSyllable: bi
|
|
||||||
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
|
|
||||||
firstSyllable: bi
|
|
||||||
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
|
|
||||||
firstSyllable: bi
|
|
||||||
pos:
|
|
||||||
noun:
|
|
||||||
feminine:
|
|
||||||
- def: "Flea, louse."
|
|
||||||
- base: bimugi
|
|
||||||
firstSyllable: bi
|
|
||||||
pos:
|
|
||||||
noun:
|
|
||||||
masculine:
|
|
||||||
- def: Horn.
|
|
||||||
- base: bire
|
|
||||||
firstSyllable: bi
|
|
||||||
pos:
|
|
||||||
noun:
|
|
||||||
masculine:
|
|
||||||
- def: Night.
|
|
49
dist/dictionary/bo.json
vendored
49
dist/dictionary/bo.json
vendored
|
@ -1,49 +0,0 @@
|
||||||
[
|
|
||||||
{
|
|
||||||
"base": "bochigomasu",
|
|
||||||
"firstSyllable": "bo",
|
|
||||||
"pos": {
|
|
||||||
"verb": {
|
|
||||||
"neuter": [
|
|
||||||
{
|
|
||||||
"def": "Do perform something that takes a week to complete."
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"base": "bokiko",
|
|
||||||
"firstSyllable": "bo",
|
|
||||||
"pos": {
|
|
||||||
"noun": {
|
|
||||||
"feminine": [
|
|
||||||
{
|
|
||||||
"def": "Fire smoke."
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"base": "bozo",
|
|
||||||
"firstSyllable": "bo",
|
|
||||||
"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."
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
21
dist/dictionary/bo.yaml
vendored
21
dist/dictionary/bo.yaml
vendored
|
@ -1,21 +0,0 @@
|
||||||
- base: bochigomasu
|
|
||||||
firstSyllable: bo
|
|
||||||
pos:
|
|
||||||
verb:
|
|
||||||
neuter:
|
|
||||||
- def: Do perform something that takes a week to complete.
|
|
||||||
- base: bokiko
|
|
||||||
firstSyllable: bo
|
|
||||||
pos:
|
|
||||||
noun:
|
|
||||||
feminine:
|
|
||||||
- def: Fire smoke.
|
|
||||||
- base: bozo
|
|
||||||
firstSyllable: bo
|
|
||||||
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.
|
|
41
dist/dictionary/bu.json
vendored
41
dist/dictionary/bu.json
vendored
|
@ -1,41 +0,0 @@
|
||||||
[
|
|
||||||
{
|
|
||||||
"base": "bupo",
|
|
||||||
"firstSyllable": "bu",
|
|
||||||
"pos": {
|
|
||||||
"verb": {
|
|
||||||
"feminine": [
|
|
||||||
{
|
|
||||||
"def": "Swim."
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"base": "bupobo",
|
|
||||||
"firstSyllable": "bu",
|
|
||||||
"pos": {
|
|
||||||
"noun": {
|
|
||||||
"feminine": [
|
|
||||||
{
|
|
||||||
"def": "Fish."
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"base": "burukano",
|
|
||||||
"firstSyllable": "bu",
|
|
||||||
"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"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
20
dist/dictionary/bu.yaml
vendored
20
dist/dictionary/bu.yaml
vendored
|
@ -1,20 +0,0 @@
|
||||||
- base: bupo
|
|
||||||
firstSyllable: bu
|
|
||||||
pos:
|
|
||||||
verb:
|
|
||||||
feminine:
|
|
||||||
- def: Swim.
|
|
||||||
- base: bupobo
|
|
||||||
firstSyllable: bu
|
|
||||||
pos:
|
|
||||||
noun:
|
|
||||||
feminine:
|
|
||||||
- def: Fish.
|
|
||||||
- base: burukano
|
|
||||||
firstSyllable: bu
|
|
||||||
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.
|
|
15
dist/dictionary/bya.json
vendored
15
dist/dictionary/bya.json
vendored
|
@ -1,15 +0,0 @@
|
||||||
[
|
|
||||||
{
|
|
||||||
"base": "byan",
|
|
||||||
"firstSyllable": "bya",
|
|
||||||
"pos": {
|
|
||||||
"noun": {
|
|
||||||
"neuter": [
|
|
||||||
{
|
|
||||||
"def": "Green."
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
6
dist/dictionary/bya.yaml
vendored
6
dist/dictionary/bya.yaml
vendored
|
@ -1,6 +0,0 @@
|
||||||
- base: byan
|
|
||||||
firstSyllable: bya
|
|
||||||
pos:
|
|
||||||
noun:
|
|
||||||
neuter:
|
|
||||||
- def: Green.
|
|
72
dist/dictionary/byo.json
vendored
72
dist/dictionary/byo.json
vendored
|
@ -1,72 +0,0 @@
|
||||||
[
|
|
||||||
{
|
|
||||||
"base": "byobi",
|
|
||||||
"firstSyllable": "byo",
|
|
||||||
"pos": {
|
|
||||||
"noun": {
|
|
||||||
"feminine": [
|
|
||||||
{
|
|
||||||
"def": "As byòbi but female."
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"masculine": [
|
|
||||||
{
|
|
||||||
"def": "A male rabbit, hare, or other member of the leporine family."
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"neuter": [
|
|
||||||
{
|
|
||||||
"def": "As byòbi but a young bunny or kit."
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"base": "byomokishi",
|
|
||||||
"firstSyllable": "byo",
|
|
||||||
"pos": {
|
|
||||||
"noun": {
|
|
||||||
"neuter": [
|
|
||||||
{
|
|
||||||
"def": "Non-desert people."
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"base": "byomushike",
|
|
||||||
"firstSyllable": "byo",
|
|
||||||
"pos": {
|
|
||||||
"noun": {
|
|
||||||
"neuter": [
|
|
||||||
{
|
|
||||||
"def": "Outsider."
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"base": "byoni",
|
|
||||||
"firstSyllable": "byo",
|
|
||||||
"pos": {
|
|
||||||
"verb": {
|
|
||||||
"feminine": [
|
|
||||||
{
|
|
||||||
"def": "To have a little cry."
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"masculine": [
|
|
||||||
{
|
|
||||||
"def": "To bawl or cry loudly."
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"def": "To break down sobbing."
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
31
dist/dictionary/byo.yaml
vendored
31
dist/dictionary/byo.yaml
vendored
|
@ -1,31 +0,0 @@
|
||||||
- base: byobi
|
|
||||||
firstSyllable: byo
|
|
||||||
pos:
|
|
||||||
noun:
|
|
||||||
feminine:
|
|
||||||
- def: As byòbi but female.
|
|
||||||
masculine:
|
|
||||||
- def: "A male rabbit, hare, or other member of the leporine family."
|
|
||||||
neuter:
|
|
||||||
- def: As byòbi but a young bunny or kit.
|
|
||||||
- base: byomokishi
|
|
||||||
firstSyllable: byo
|
|
||||||
pos:
|
|
||||||
noun:
|
|
||||||
neuter:
|
|
||||||
- def: Non-desert people.
|
|
||||||
- base: byomushike
|
|
||||||
firstSyllable: byo
|
|
||||||
pos:
|
|
||||||
noun:
|
|
||||||
neuter:
|
|
||||||
- def: Outsider.
|
|
||||||
- base: byoni
|
|
||||||
firstSyllable: byo
|
|
||||||
pos:
|
|
||||||
verb:
|
|
||||||
feminine:
|
|
||||||
- def: To have a little cry.
|
|
||||||
masculine:
|
|
||||||
- def: To bawl or cry loudly.
|
|
||||||
- def: To break down sobbing.
|
|
133
dist/dictionary/chi.json
vendored
133
dist/dictionary/chi.json
vendored
|
@ -1,133 +0,0 @@
|
||||||
[
|
|
||||||
{
|
|
||||||
"base": "chidona",
|
|
||||||
"firstSyllable": "chi",
|
|
||||||
"pos": {
|
|
||||||
"noun": {
|
|
||||||
"neuter": [
|
|
||||||
{
|
|
||||||
"def": "Pebbles or small rocks."
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"verb": {
|
|
||||||
"masculine": [
|
|
||||||
{
|
|
||||||
"def": "To throw or cause many small problems in rapid succession."
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"base": "chifu",
|
|
||||||
"firstSyllable": "chi",
|
|
||||||
"pos": {
|
|
||||||
"adj": [
|
|
||||||
{
|
|
||||||
"def": "Long."
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"base": "chifumo",
|
|
||||||
"firstSyllable": "chi",
|
|
||||||
"pos": {
|
|
||||||
"noun": {
|
|
||||||
"masculine": [
|
|
||||||
{
|
|
||||||
"def": "Cold weather."
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"base": "chimoga",
|
|
||||||
"firstSyllable": "chi",
|
|
||||||
"pos": {
|
|
||||||
"noun": {
|
|
||||||
"neuter": [
|
|
||||||
{
|
|
||||||
"def": "A measurement of distance."
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"def": "A surveyor's chain of 66 feet or 4 romōga."
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"verb": {
|
|
||||||
"feminine": [
|
|
||||||
{
|
|
||||||
"def": "To measure or pace something out that is approximately a chimōga distance."
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"def": "To measure something out in terms of chimōga distance."
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"base": "chiruni",
|
|
||||||
"firstSyllable": "chi",
|
|
||||||
"pos": {
|
|
||||||
"noun": {
|
|
||||||
"feminine": [
|
|
||||||
{
|
|
||||||
"def": "Warm weather."
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"base": "chisogura",
|
|
||||||
"firstSyllable": "chi",
|
|
||||||
"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",
|
|
||||||
"firstSyllable": "chi",
|
|
||||||
"pos": {
|
|
||||||
"noun": {
|
|
||||||
"masculine": [
|
|
||||||
{
|
|
||||||
"def": "The amount of water a clan needs in a day."
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"def": "A volume of liquid equal to 66 kokéku."
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"def": "A volume of liquid equal to 264 liters.",
|
|
||||||
"oow": true
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
86
dist/dictionary/chi.yaml
vendored
86
dist/dictionary/chi.yaml
vendored
|
@ -1,86 +0,0 @@
|
||||||
- base: chidona
|
|
||||||
firstSyllable: chi
|
|
||||||
pos:
|
|
||||||
noun:
|
|
||||||
neuter:
|
|
||||||
- def: Pebbles or small rocks.
|
|
||||||
verb:
|
|
||||||
masculine:
|
|
||||||
- def: To throw or cause many small problems in rapid succession.
|
|
||||||
- base: chifu
|
|
||||||
firstSyllable: chi
|
|
||||||
pos:
|
|
||||||
adj:
|
|
||||||
- def: Long.
|
|
||||||
- base: chifumo
|
|
||||||
firstSyllable: chi
|
|
||||||
pos:
|
|
||||||
noun:
|
|
||||||
masculine:
|
|
||||||
- def: Cold weather.
|
|
||||||
- base: chimoga
|
|
||||||
firstSyllable: chi
|
|
||||||
pos:
|
|
||||||
noun:
|
|
||||||
neuter:
|
|
||||||
- def: A measurement of distance.
|
|
||||||
- def: A surveyor's chain of 66 feet or 4 romōga.
|
|
||||||
verb:
|
|
||||||
feminine:
|
|
||||||
- def: >-
|
|
||||||
To measure or pace something out that is approximately a chimōga
|
|
||||||
distance.
|
|
||||||
- def: To measure something out in terms of chimōga distance.
|
|
||||||
- base: chiruni
|
|
||||||
firstSyllable: chi
|
|
||||||
pos:
|
|
||||||
noun:
|
|
||||||
feminine:
|
|
||||||
- def: Warm weather.
|
|
||||||
- base: chisogura
|
|
||||||
firstSyllable: chi
|
|
||||||
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
|
|
||||||
firstSyllable: chi
|
|
||||||
pos:
|
|
||||||
noun:
|
|
||||||
masculine:
|
|
||||||
- def: The amount of water a clan needs in a day.
|
|
||||||
- def: A volume of liquid equal to 66 kokéku.
|
|
||||||
- def: A volume of liquid equal to 264 liters.
|
|
||||||
oow: true
|
|
81
dist/dictionary/cho.json
vendored
81
dist/dictionary/cho.json
vendored
|
@ -1,81 +0,0 @@
|
||||||
[
|
|
||||||
{
|
|
||||||
"base": "chobire",
|
|
||||||
"firstSyllable": "cho",
|
|
||||||
"pos": {
|
|
||||||
"noun": {
|
|
||||||
"masculine": [
|
|
||||||
{
|
|
||||||
"def": "The moon."
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"base": "chochi",
|
|
||||||
"firstSyllable": "cho",
|
|
||||||
"pos": {
|
|
||||||
"noun": {
|
|
||||||
"masculine": [
|
|
||||||
{
|
|
||||||
"def": "A lunar cycle or month."
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"base": "chon",
|
|
||||||
"firstSyllable": "cho",
|
|
||||||
"pos": {
|
|
||||||
"adj": [
|
|
||||||
{
|
|
||||||
"def": "Black."
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"base": "chonesu",
|
|
||||||
"firstSyllable": "cho",
|
|
||||||
"pos": {
|
|
||||||
"noun": {
|
|
||||||
"feminine": [
|
|
||||||
{
|
|
||||||
"def": "Stars."
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"base": "chota",
|
|
||||||
"firstSyllable": "cho",
|
|
||||||
"pos": {
|
|
||||||
"noun": {
|
|
||||||
"masculine": [
|
|
||||||
{
|
|
||||||
"def": "A lunar \"day\"."
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"base": "chotafuchi",
|
|
||||||
"firstSyllable": "cho",
|
|
||||||
"pos": {
|
|
||||||
"noun": {
|
|
||||||
"masculine": [
|
|
||||||
{
|
|
||||||
"def": "The period where the moon is below the horizon."
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"def": "When moon-based powers don't work."
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
36
dist/dictionary/cho.yaml
vendored
36
dist/dictionary/cho.yaml
vendored
|
@ -1,36 +0,0 @@
|
||||||
- base: chobire
|
|
||||||
firstSyllable: cho
|
|
||||||
pos:
|
|
||||||
noun:
|
|
||||||
masculine:
|
|
||||||
- def: The moon.
|
|
||||||
- base: chochi
|
|
||||||
firstSyllable: cho
|
|
||||||
pos:
|
|
||||||
noun:
|
|
||||||
masculine:
|
|
||||||
- def: A lunar cycle or month.
|
|
||||||
- base: chon
|
|
||||||
firstSyllable: cho
|
|
||||||
pos:
|
|
||||||
adj:
|
|
||||||
- def: Black.
|
|
||||||
- base: chonesu
|
|
||||||
firstSyllable: cho
|
|
||||||
pos:
|
|
||||||
noun:
|
|
||||||
feminine:
|
|
||||||
- def: Stars.
|
|
||||||
- base: chota
|
|
||||||
firstSyllable: cho
|
|
||||||
pos:
|
|
||||||
noun:
|
|
||||||
masculine:
|
|
||||||
- def: A lunar "day".
|
|
||||||
- base: chotafuchi
|
|
||||||
firstSyllable: cho
|
|
||||||
pos:
|
|
||||||
noun:
|
|
||||||
masculine:
|
|
||||||
- def: The period where the moon is below the horizon.
|
|
||||||
- def: When moon-based powers don't work.
|
|
61
dist/dictionary/chyo.json
vendored
61
dist/dictionary/chyo.json
vendored
|
@ -1,61 +0,0 @@
|
||||||
[
|
|
||||||
{
|
|
||||||
"base": "chyomigu",
|
|
||||||
"firstSyllable": "chyo",
|
|
||||||
"pos": {
|
|
||||||
"noun": {
|
|
||||||
"neuter": [
|
|
||||||
{
|
|
||||||
"def": "1/10th of a domīgu."
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"def": "2.01 centimeters.",
|
|
||||||
"oow": true
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"base": "chyona",
|
|
||||||
"firstSyllable": "chyo",
|
|
||||||
"pos": {
|
|
||||||
"noun": {
|
|
||||||
"neuter": [
|
|
||||||
{
|
|
||||||
"def": "An internal organ."
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"base": "chyore",
|
|
||||||
"firstSyllable": "chyo",
|
|
||||||
"pos": {
|
|
||||||
"noun": {
|
|
||||||
"masculine": [
|
|
||||||
{
|
|
||||||
"def": "Snake"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"def": "mizonekima chyòre - giant snake"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"base": "chyotemakonakifu",
|
|
||||||
"firstSyllable": "chyo",
|
|
||||||
"pos": {
|
|
||||||
"noun": {
|
|
||||||
"feminine": [
|
|
||||||
{
|
|
||||||
"def": "A short poem of two or more phrases where every phrase is the same number of syllables."
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
29
dist/dictionary/chyo.yaml
vendored
29
dist/dictionary/chyo.yaml
vendored
|
@ -1,29 +0,0 @@
|
||||||
- base: chyomigu
|
|
||||||
firstSyllable: chyo
|
|
||||||
pos:
|
|
||||||
noun:
|
|
||||||
neuter:
|
|
||||||
- def: 1/10th of a domīgu.
|
|
||||||
- def: 2.01 centimeters.
|
|
||||||
oow: true
|
|
||||||
- base: chyona
|
|
||||||
firstSyllable: chyo
|
|
||||||
pos:
|
|
||||||
noun:
|
|
||||||
neuter:
|
|
||||||
- def: An internal organ.
|
|
||||||
- base: chyore
|
|
||||||
firstSyllable: chyo
|
|
||||||
pos:
|
|
||||||
noun:
|
|
||||||
masculine:
|
|
||||||
- def: Snake
|
|
||||||
- def: mizonekima chyòre - giant snake
|
|
||||||
- base: chyotemakonakifu
|
|
||||||
firstSyllable: chyo
|
|
||||||
pos:
|
|
||||||
noun:
|
|
||||||
feminine:
|
|
||||||
- def: >-
|
|
||||||
A short poem of two or more phrases where every phrase is the same
|
|
||||||
number of syllables.
|
|
46
dist/dictionary/chyu.json
vendored
46
dist/dictionary/chyu.json
vendored
|
@ -1,46 +0,0 @@
|
||||||
[
|
|
||||||
{
|
|
||||||
"base": "chyubine",
|
|
||||||
"firstSyllable": "chyu",
|
|
||||||
"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",
|
|
||||||
"firstSyllable": "chyu",
|
|
||||||
"pos": {
|
|
||||||
"noun": {
|
|
||||||
"feminine": [
|
|
||||||
{
|
|
||||||
"def": "As `chyuréna`, but female."
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"masculine": [
|
|
||||||
{
|
|
||||||
"def": "A male of a clan which does not have significantly differing levels of magical power among its members."
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
21
dist/dictionary/chyu.yaml
vendored
21
dist/dictionary/chyu.yaml
vendored
|
@ -1,21 +0,0 @@
|
||||||
- base: chyubine
|
|
||||||
firstSyllable: chyu
|
|
||||||
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
|
|
||||||
firstSyllable: chyu
|
|
||||||
pos:
|
|
||||||
noun:
|
|
||||||
feminine:
|
|
||||||
- def: "As `chyuréna`, but female."
|
|
||||||
masculine:
|
|
||||||
- def: >-
|
|
||||||
A male of a clan which does not have significantly differing levels
|
|
||||||
of magical power among its members.
|
|
85
dist/dictionary/da.json
vendored
85
dist/dictionary/da.json
vendored
|
@ -1,85 +0,0 @@
|
||||||
[
|
|
||||||
{
|
|
||||||
"base": "dakyofu",
|
|
||||||
"firstSyllable": "da",
|
|
||||||
"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",
|
|
||||||
"firstSyllable": "da",
|
|
||||||
"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",
|
|
||||||
"firstSyllable": "da",
|
|
||||||
"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",
|
|
||||||
"firstSyllable": "da",
|
|
||||||
"pos": {
|
|
||||||
"noun": {
|
|
||||||
"neuter": [
|
|
||||||
{
|
|
||||||
"def": "The basic unit of weight equal to sofùki worth of clean water."
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"def": "1.02 kilograms.",
|
|
||||||
"oow": true
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
43
dist/dictionary/da.yaml
vendored
43
dist/dictionary/da.yaml
vendored
|
@ -1,43 +0,0 @@
|
||||||
- base: dakyofu
|
|
||||||
firstSyllable: da
|
|
||||||
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
|
|
||||||
firstSyllable: da
|
|
||||||
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
|
|
||||||
firstSyllable: da
|
|
||||||
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
|
|
||||||
firstSyllable: da
|
|
||||||
pos:
|
|
||||||
noun:
|
|
||||||
neuter:
|
|
||||||
- def: The basic unit of weight equal to sofùki worth of clean water.
|
|
||||||
- def: 1.02 kilograms.
|
|
||||||
oow: true
|
|
67
dist/dictionary/de.json
vendored
67
dist/dictionary/de.json
vendored
|
@ -1,67 +0,0 @@
|
||||||
[
|
|
||||||
{
|
|
||||||
"base": "defoni",
|
|
||||||
"firstSyllable": "de",
|
|
||||||
"pos": {
|
|
||||||
"noun": {
|
|
||||||
"masculine": [
|
|
||||||
{
|
|
||||||
"def": "Feather."
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"base": "demu",
|
|
||||||
"firstSyllable": "de",
|
|
||||||
"pos": {
|
|
||||||
"verb": {
|
|
||||||
"masculine": [
|
|
||||||
{
|
|
||||||
"def": "Fly."
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"base": "depa",
|
|
||||||
"firstSyllable": "de",
|
|
||||||
"pos": {
|
|
||||||
"noun": {
|
|
||||||
"feminine": [
|
|
||||||
{
|
|
||||||
"def": "Bird."
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"base": "detokishi",
|
|
||||||
"firstSyllable": "de",
|
|
||||||
"pos": {
|
|
||||||
"noun": {
|
|
||||||
"masculine": [
|
|
||||||
{
|
|
||||||
"def": "Desert folk."
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"base": "detomusa",
|
|
||||||
"firstSyllable": "de",
|
|
||||||
"pos": {
|
|
||||||
"noun": {
|
|
||||||
"masculine": [
|
|
||||||
{
|
|
||||||
"def": "Persistent sand storm."
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
30
dist/dictionary/de.yaml
vendored
30
dist/dictionary/de.yaml
vendored
|
@ -1,30 +0,0 @@
|
||||||
- base: defoni
|
|
||||||
firstSyllable: de
|
|
||||||
pos:
|
|
||||||
noun:
|
|
||||||
masculine:
|
|
||||||
- def: Feather.
|
|
||||||
- base: demu
|
|
||||||
firstSyllable: de
|
|
||||||
pos:
|
|
||||||
verb:
|
|
||||||
masculine:
|
|
||||||
- def: Fly.
|
|
||||||
- base: depa
|
|
||||||
firstSyllable: de
|
|
||||||
pos:
|
|
||||||
noun:
|
|
||||||
feminine:
|
|
||||||
- def: Bird.
|
|
||||||
- base: detokishi
|
|
||||||
firstSyllable: de
|
|
||||||
pos:
|
|
||||||
noun:
|
|
||||||
masculine:
|
|
||||||
- def: Desert folk.
|
|
||||||
- base: detomusa
|
|
||||||
firstSyllable: de
|
|
||||||
pos:
|
|
||||||
noun:
|
|
||||||
masculine:
|
|
||||||
- def: Persistent sand storm.
|
|
79
dist/dictionary/do.json
vendored
79
dist/dictionary/do.json
vendored
|
@ -1,79 +0,0 @@
|
||||||
[
|
|
||||||
{
|
|
||||||
"base": "do",
|
|
||||||
"firstSyllable": "do",
|
|
||||||
"pos": {
|
|
||||||
"pro": [
|
|
||||||
{
|
|
||||||
"def": "You, yours."
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"base": "dodera",
|
|
||||||
"firstSyllable": "do",
|
|
||||||
"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",
|
|
||||||
"firstSyllable": "do",
|
|
||||||
"pos": {
|
|
||||||
"noun": {
|
|
||||||
"neuter": [
|
|
||||||
{
|
|
||||||
"def": "1/100th of a romōga."
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"def": "20.12 centimeters.",
|
|
||||||
"oow": true
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"base": "doshyo",
|
|
||||||
"firstSyllable": "do",
|
|
||||||
"pos": {
|
|
||||||
"noun": {
|
|
||||||
"feminine": [
|
|
||||||
{
|
|
||||||
"def": "Soil, earth."
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"base": "dotsu",
|
|
||||||
"firstSyllable": "do",
|
|
||||||
"pos": {
|
|
||||||
"noun": {
|
|
||||||
"masculine": [
|
|
||||||
{
|
|
||||||
"def": "Home."
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
35
dist/dictionary/do.yaml
vendored
35
dist/dictionary/do.yaml
vendored
|
@ -1,35 +0,0 @@
|
||||||
- base: do
|
|
||||||
firstSyllable: do
|
|
||||||
pos:
|
|
||||||
pro:
|
|
||||||
- def: "You, yours."
|
|
||||||
- base: dodera
|
|
||||||
firstSyllable: do
|
|
||||||
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
|
|
||||||
firstSyllable: do
|
|
||||||
pos:
|
|
||||||
noun:
|
|
||||||
neuter:
|
|
||||||
- def: 1/100th of a romōga.
|
|
||||||
- def: 20.12 centimeters.
|
|
||||||
oow: true
|
|
||||||
- base: doshyo
|
|
||||||
firstSyllable: do
|
|
||||||
pos:
|
|
||||||
noun:
|
|
||||||
feminine:
|
|
||||||
- def: "Soil, earth."
|
|
||||||
- base: dotsu
|
|
||||||
firstSyllable: do
|
|
||||||
pos:
|
|
||||||
noun:
|
|
||||||
masculine:
|
|
||||||
- def: Home.
|
|
73
dist/dictionary/fa.json
vendored
73
dist/dictionary/fa.json
vendored
|
@ -1,73 +0,0 @@
|
||||||
[
|
|
||||||
{
|
|
||||||
"base": "faho",
|
|
||||||
"firstSyllable": "fa",
|
|
||||||
"pos": {
|
|
||||||
"noun": {
|
|
||||||
"feminine": [
|
|
||||||
{
|
|
||||||
"def": "ear."
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"base": "famu",
|
|
||||||
"firstSyllable": "fa",
|
|
||||||
"pos": {
|
|
||||||
"noun": {
|
|
||||||
"neuter": [
|
|
||||||
{
|
|
||||||
"def": "Eye, eyes."
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"base": "fapodi",
|
|
||||||
"firstSyllable": "fa",
|
|
||||||
"pos": {
|
|
||||||
"verb": {
|
|
||||||
"feminine": [
|
|
||||||
{
|
|
||||||
"def": "To run over long distances."
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"def": "Endurance running."
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"masculine": [
|
|
||||||
{
|
|
||||||
"def": "To sprint or run at full speed."
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"base": "faruku",
|
|
||||||
"firstSyllable": "fa",
|
|
||||||
"pos": {
|
|
||||||
"noun": {
|
|
||||||
"neuter": [
|
|
||||||
{
|
|
||||||
"def": "A toad or frog."
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"base": "fasa",
|
|
||||||
"firstSyllable": "fa",
|
|
||||||
"pos": {
|
|
||||||
"adj": [
|
|
||||||
{
|
|
||||||
"def": "Fast, speedy."
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
32
dist/dictionary/fa.yaml
vendored
32
dist/dictionary/fa.yaml
vendored
|
@ -1,32 +0,0 @@
|
||||||
- base: faho
|
|
||||||
firstSyllable: fa
|
|
||||||
pos:
|
|
||||||
noun:
|
|
||||||
feminine:
|
|
||||||
- def: ear.
|
|
||||||
- base: famu
|
|
||||||
firstSyllable: fa
|
|
||||||
pos:
|
|
||||||
noun:
|
|
||||||
neuter:
|
|
||||||
- def: "Eye, eyes."
|
|
||||||
- base: fapodi
|
|
||||||
firstSyllable: fa
|
|
||||||
pos:
|
|
||||||
verb:
|
|
||||||
feminine:
|
|
||||||
- def: To run over long distances.
|
|
||||||
- def: Endurance running.
|
|
||||||
masculine:
|
|
||||||
- def: To sprint or run at full speed.
|
|
||||||
- base: faruku
|
|
||||||
firstSyllable: fa
|
|
||||||
pos:
|
|
||||||
noun:
|
|
||||||
neuter:
|
|
||||||
- def: A toad or frog.
|
|
||||||
- base: fasa
|
|
||||||
firstSyllable: fa
|
|
||||||
pos:
|
|
||||||
adj:
|
|
||||||
- def: "Fast, speedy."
|
|
13
dist/dictionary/fe.json
vendored
13
dist/dictionary/fe.json
vendored
|
@ -1,13 +0,0 @@
|
||||||
[
|
|
||||||
{
|
|
||||||
"base": "fechi",
|
|
||||||
"firstSyllable": "fe",
|
|
||||||
"pos": {
|
|
||||||
"adj": [
|
|
||||||
{
|
|
||||||
"def": "Greater or superior in social rank."
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
5
dist/dictionary/fe.yaml
vendored
5
dist/dictionary/fe.yaml
vendored
|
@ -1,5 +0,0 @@
|
||||||
- base: fechi
|
|
||||||
firstSyllable: fe
|
|
||||||
pos:
|
|
||||||
adj:
|
|
||||||
- def: Greater or superior in social rank.
|
|
15
dist/dictionary/fi.json
vendored
15
dist/dictionary/fi.json
vendored
|
@ -1,15 +0,0 @@
|
||||||
[
|
|
||||||
{
|
|
||||||
"base": "figi",
|
|
||||||
"firstSyllable": "fi",
|
|
||||||
"pos": {
|
|
||||||
"noun": {
|
|
||||||
"feminine": [
|
|
||||||
{
|
|
||||||
"def": "Teeth, bite."
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
6
dist/dictionary/fi.yaml
vendored
6
dist/dictionary/fi.yaml
vendored
|
@ -1,6 +0,0 @@
|
||||||
- base: figi
|
|
||||||
firstSyllable: fi
|
|
||||||
pos:
|
|
||||||
noun:
|
|
||||||
feminine:
|
|
||||||
- def: "Teeth, bite."
|
|
26
dist/dictionary/fo.json
vendored
26
dist/dictionary/fo.json
vendored
|
@ -1,26 +0,0 @@
|
||||||
[
|
|
||||||
{
|
|
||||||
"base": "foni",
|
|
||||||
"firstSyllable": "fo",
|
|
||||||
"pos": {
|
|
||||||
"noun": {
|
|
||||||
"neuter": [
|
|
||||||
{
|
|
||||||
"def": "Head."
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"base": "fopu",
|
|
||||||
"firstSyllable": "fo",
|
|
||||||
"pos": {
|
|
||||||
"adj": [
|
|
||||||
{
|
|
||||||
"def": "Full, stuffed."
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
11
dist/dictionary/fo.yaml
vendored
11
dist/dictionary/fo.yaml
vendored
|
@ -1,11 +0,0 @@
|
||||||
- base: foni
|
|
||||||
firstSyllable: fo
|
|
||||||
pos:
|
|
||||||
noun:
|
|
||||||
neuter:
|
|
||||||
- def: Head.
|
|
||||||
- base: fopu
|
|
||||||
firstSyllable: fo
|
|
||||||
pos:
|
|
||||||
adj:
|
|
||||||
- def: "Full, stuffed."
|
|
74
dist/dictionary/fu.json
vendored
74
dist/dictionary/fu.json
vendored
|
@ -1,74 +0,0 @@
|
||||||
[
|
|
||||||
{
|
|
||||||
"base": "fuchi",
|
|
||||||
"firstSyllable": "fu",
|
|
||||||
"pos": {
|
|
||||||
"noun": {
|
|
||||||
"masculine": [
|
|
||||||
{
|
|
||||||
"def": "Nose."
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"base": "fugi",
|
|
||||||
"firstSyllable": "fu",
|
|
||||||
"pos": {
|
|
||||||
"verb": {
|
|
||||||
"neuter": [
|
|
||||||
{
|
|
||||||
"def": "See, sight."
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"base": "fugimo",
|
|
||||||
"firstSyllable": "fu",
|
|
||||||
"pos": {
|
|
||||||
"noun": {
|
|
||||||
"masculine": [
|
|
||||||
{
|
|
||||||
"def": "Mouth."
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"base": "fumiga",
|
|
||||||
"firstSyllable": "fu",
|
|
||||||
"pos": {
|
|
||||||
"noun": {
|
|
||||||
"feminine": [
|
|
||||||
{
|
|
||||||
"def": "Claw."
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"base": "funami",
|
|
||||||
"firstSyllable": "fu",
|
|
||||||
"pos": {
|
|
||||||
"noun": {
|
|
||||||
"neuter": [
|
|
||||||
{
|
|
||||||
"def": "Sheep or other wool-producing herd creature."
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"verb": {
|
|
||||||
"feminine": [
|
|
||||||
{
|
|
||||||
"def": "To shave or remove hair."
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
33
dist/dictionary/fu.yaml
vendored
33
dist/dictionary/fu.yaml
vendored
|
@ -1,33 +0,0 @@
|
||||||
- base: fuchi
|
|
||||||
firstSyllable: fu
|
|
||||||
pos:
|
|
||||||
noun:
|
|
||||||
masculine:
|
|
||||||
- def: Nose.
|
|
||||||
- base: fugi
|
|
||||||
firstSyllable: fu
|
|
||||||
pos:
|
|
||||||
verb:
|
|
||||||
neuter:
|
|
||||||
- def: "See, sight."
|
|
||||||
- base: fugimo
|
|
||||||
firstSyllable: fu
|
|
||||||
pos:
|
|
||||||
noun:
|
|
||||||
masculine:
|
|
||||||
- def: Mouth.
|
|
||||||
- base: fumiga
|
|
||||||
firstSyllable: fu
|
|
||||||
pos:
|
|
||||||
noun:
|
|
||||||
feminine:
|
|
||||||
- def: Claw.
|
|
||||||
- base: funami
|
|
||||||
firstSyllable: fu
|
|
||||||
pos:
|
|
||||||
noun:
|
|
||||||
neuter:
|
|
||||||
- def: Sheep or other wool-producing herd creature.
|
|
||||||
verb:
|
|
||||||
feminine:
|
|
||||||
- def: To shave or remove hair.
|
|
118
dist/dictionary/ga.json
vendored
118
dist/dictionary/ga.json
vendored
|
@ -1,118 +0,0 @@
|
||||||
[
|
|
||||||
{
|
|
||||||
"base": "gabuchigika",
|
|
||||||
"firstSyllable": "ga",
|
|
||||||
"pos": {
|
|
||||||
"noun": {
|
|
||||||
"masculine": [
|
|
||||||
{
|
|
||||||
"def": "A large area of land claimed by a clan."
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"def": "120 gachigyukōga."
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"base": "gachi",
|
|
||||||
"firstSyllable": "ga",
|
|
||||||
"pos": {
|
|
||||||
"verb": {
|
|
||||||
"masculine": [
|
|
||||||
{
|
|
||||||
"def": "Eat."
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"base": "gachigyukoga",
|
|
||||||
"firstSyllable": "ga",
|
|
||||||
"pos": {
|
|
||||||
"noun": {
|
|
||||||
"neuter": [
|
|
||||||
{
|
|
||||||
"def": "A \"plot\" of land one chimōga by one gyukōga."
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"def": "1 acre.",
|
|
||||||
"oow": true
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"base": "gamekoji",
|
|
||||||
"firstSyllable": "ga",
|
|
||||||
"pos": {
|
|
||||||
"noun": {
|
|
||||||
"neuter": [
|
|
||||||
{
|
|
||||||
"def": "A miscarriage."
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"base": "gamibita",
|
|
||||||
"firstSyllable": "ga",
|
|
||||||
"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",
|
|
||||||
"firstSyllable": "ga",
|
|
||||||
"pos": {
|
|
||||||
"noun": {
|
|
||||||
"neuter": [
|
|
||||||
{
|
|
||||||
"def": "A wild dog-like creature."
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"def": "A coyote."
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"verb": {
|
|
||||||
"masculine": [
|
|
||||||
{
|
|
||||||
"def": "To rummage around scraps for food."
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
67
dist/dictionary/ga.yaml
vendored
67
dist/dictionary/ga.yaml
vendored
|
@ -1,67 +0,0 @@
|
||||||
- base: gabuchigika
|
|
||||||
firstSyllable: ga
|
|
||||||
pos:
|
|
||||||
noun:
|
|
||||||
masculine:
|
|
||||||
- def: A large area of land claimed by a clan.
|
|
||||||
- def: 120 gachigyukōga.
|
|
||||||
- base: gachi
|
|
||||||
firstSyllable: ga
|
|
||||||
pos:
|
|
||||||
verb:
|
|
||||||
masculine:
|
|
||||||
- def: Eat.
|
|
||||||
- base: gachigyukoga
|
|
||||||
firstSyllable: ga
|
|
||||||
pos:
|
|
||||||
noun:
|
|
||||||
neuter:
|
|
||||||
- def: A "plot" of land one chimōga by one gyukōga.
|
|
||||||
- def: 1 acre.
|
|
||||||
oow: true
|
|
||||||
- base: gamekoji
|
|
||||||
firstSyllable: ga
|
|
||||||
pos:
|
|
||||||
noun:
|
|
||||||
neuter:
|
|
||||||
- def: A miscarriage.
|
|
||||||
- base: gamibita
|
|
||||||
firstSyllable: ga
|
|
||||||
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
|
|
||||||
firstSyllable: ga
|
|
||||||
pos:
|
|
||||||
noun:
|
|
||||||
neuter:
|
|
||||||
- def: A wild dog-like creature.
|
|
||||||
- def: A coyote.
|
|
||||||
verb:
|
|
||||||
masculine:
|
|
||||||
- def: To rummage around scraps for food.
|
|
36
dist/dictionary/ge.json
vendored
36
dist/dictionary/ge.json
vendored
|
@ -1,36 +0,0 @@
|
||||||
[
|
|
||||||
{
|
|
||||||
"base": "ge",
|
|
||||||
"firstSyllable": "ge",
|
|
||||||
"pos": {
|
|
||||||
"adj": [
|
|
||||||
{
|
|
||||||
"def": "My clan."
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"base": "gen",
|
|
||||||
"firstSyllable": "ge",
|
|
||||||
"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."
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
15
dist/dictionary/ge.yaml
vendored
15
dist/dictionary/ge.yaml
vendored
|
@ -1,15 +0,0 @@
|
||||||
- base: ge
|
|
||||||
firstSyllable: ge
|
|
||||||
pos:
|
|
||||||
adj:
|
|
||||||
- def: My clan.
|
|
||||||
- base: gen
|
|
||||||
firstSyllable: ge
|
|
||||||
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."
|
|
106
dist/dictionary/gi.json
vendored
106
dist/dictionary/gi.json
vendored
|
@ -1,106 +0,0 @@
|
||||||
[
|
|
||||||
{
|
|
||||||
"base": "gichyoku",
|
|
||||||
"firstSyllable": "gi",
|
|
||||||
"pos": {
|
|
||||||
"noun": {
|
|
||||||
"feminine": [
|
|
||||||
{
|
|
||||||
"def": "A cutting or slicing force or energy.\n"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"base": "gidajimo",
|
|
||||||
"firstSyllable": "gi",
|
|
||||||
"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",
|
|
||||||
"firstSyllable": "gi",
|
|
||||||
"pos": {
|
|
||||||
"verb": {
|
|
||||||
"masculine": [
|
|
||||||
{
|
|
||||||
"def": "To give birth to a living child."
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"neuter": [
|
|
||||||
{
|
|
||||||
"def": "To lay eggs or other non-live birth."
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"base": "gitamafu",
|
|
||||||
"firstSyllable": "gi",
|
|
||||||
"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",
|
|
||||||
"firstSyllable": "gi",
|
|
||||||
"pos": {
|
|
||||||
"verb": {
|
|
||||||
"masculine": [
|
|
||||||
{
|
|
||||||
"def": "To have unenthusiastic sex solely for purposes of reproduction."
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
59
dist/dictionary/gi.yaml
vendored
59
dist/dictionary/gi.yaml
vendored
|
@ -1,59 +0,0 @@
|
||||||
- base: gichyoku
|
|
||||||
firstSyllable: gi
|
|
||||||
pos:
|
|
||||||
noun:
|
|
||||||
feminine:
|
|
||||||
- def: |
|
|
||||||
A cutting or slicing force or energy.
|
|
||||||
- base: gidajimo
|
|
||||||
firstSyllable: gi
|
|
||||||
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
|
|
||||||
firstSyllable: gi
|
|
||||||
pos:
|
|
||||||
verb:
|
|
||||||
masculine:
|
|
||||||
- def: To give birth to a living child.
|
|
||||||
neuter:
|
|
||||||
- def: To lay eggs or other non-live birth.
|
|
||||||
- base: gitamafu
|
|
||||||
firstSyllable: gi
|
|
||||||
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
|
|
||||||
firstSyllable: gi
|
|
||||||
pos:
|
|
||||||
verb:
|
|
||||||
masculine:
|
|
||||||
- def: To have unenthusiastic sex solely for purposes of reproduction.
|
|
32
dist/dictionary/go.json
vendored
32
dist/dictionary/go.json
vendored
|
@ -1,32 +0,0 @@
|
||||||
[
|
|
||||||
{
|
|
||||||
"base": "gokote",
|
|
||||||
"firstSyllable": "go",
|
|
||||||
"pos": {
|
|
||||||
"noun": {
|
|
||||||
"neuter": [
|
|
||||||
{
|
|
||||||
"def": "A solar week consisting of eight rōte."
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"base": "gomata",
|
|
||||||
"firstSyllable": "go",
|
|
||||||
"pos": {
|
|
||||||
"noun": {
|
|
||||||
"neuter": [
|
|
||||||
{
|
|
||||||
"def": "1/128 of a māsa."
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"def": "About a minute.",
|
|
||||||
"oow": true
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
14
dist/dictionary/go.yaml
vendored
14
dist/dictionary/go.yaml
vendored
|
@ -1,14 +0,0 @@
|
||||||
- base: gokote
|
|
||||||
firstSyllable: go
|
|
||||||
pos:
|
|
||||||
noun:
|
|
||||||
neuter:
|
|
||||||
- def: A solar week consisting of eight rōte.
|
|
||||||
- base: gomata
|
|
||||||
firstSyllable: go
|
|
||||||
pos:
|
|
||||||
noun:
|
|
||||||
neuter:
|
|
||||||
- def: 1/128 of a māsa.
|
|
||||||
- def: About a minute.
|
|
||||||
oow: true
|
|
28
dist/dictionary/gu.json
vendored
28
dist/dictionary/gu.json
vendored
|
@ -1,28 +0,0 @@
|
||||||
[
|
|
||||||
{
|
|
||||||
"base": "gupa",
|
|
||||||
"firstSyllable": "gu",
|
|
||||||
"pos": {
|
|
||||||
"verb": {
|
|
||||||
"masculine": [
|
|
||||||
{
|
|
||||||
"def": "Gulp, drink."
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"base": "gupiji",
|
|
||||||
"firstSyllable": "gu",
|
|
||||||
"pos": {
|
|
||||||
"noun": {
|
|
||||||
"neuter": [
|
|
||||||
{
|
|
||||||
"def": "Valley"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
12
dist/dictionary/gu.yaml
vendored
12
dist/dictionary/gu.yaml
vendored
|
@ -1,12 +0,0 @@
|
||||||
- base: gupa
|
|
||||||
firstSyllable: gu
|
|
||||||
pos:
|
|
||||||
verb:
|
|
||||||
masculine:
|
|
||||||
- def: "Gulp, drink."
|
|
||||||
- base: gupiji
|
|
||||||
firstSyllable: gu
|
|
||||||
pos:
|
|
||||||
noun:
|
|
||||||
neuter:
|
|
||||||
- def: Valley
|
|
22
dist/dictionary/gyu.json
vendored
22
dist/dictionary/gyu.json
vendored
|
@ -1,22 +0,0 @@
|
||||||
[
|
|
||||||
{
|
|
||||||
"base": "gyukoga",
|
|
||||||
"firstSyllable": "gyu",
|
|
||||||
"pos": {
|
|
||||||
"noun": {
|
|
||||||
"neuter": [
|
|
||||||
{
|
|
||||||
"def": "80 chimōga."
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"def": "1/9th the distance an average person can walk in a māsa."
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"def": "A mile.",
|
|
||||||
"oow": true
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
9
dist/dictionary/gyu.yaml
vendored
9
dist/dictionary/gyu.yaml
vendored
|
@ -1,9 +0,0 @@
|
||||||
- base: gyukoga
|
|
||||||
firstSyllable: gyu
|
|
||||||
pos:
|
|
||||||
noun:
|
|
||||||
neuter:
|
|
||||||
- def: 80 chimōga.
|
|
||||||
- def: 1/9th the distance an average person can walk in a māsa.
|
|
||||||
- def: A mile.
|
|
||||||
oow: true
|
|
87
dist/dictionary/ha.json
vendored
87
dist/dictionary/ha.json
vendored
|
@ -1,87 +0,0 @@
|
||||||
[
|
|
||||||
{
|
|
||||||
"base": "hachifobu",
|
|
||||||
"firstSyllable": "ha",
|
|
||||||
"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",
|
|
||||||
"firstSyllable": "ha",
|
|
||||||
"pos": {
|
|
||||||
"noun": {
|
|
||||||
"neuter": [
|
|
||||||
{
|
|
||||||
"def": "Path, road, trail."
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"base": "hamani",
|
|
||||||
"firstSyllable": "ha",
|
|
||||||
"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",
|
|
||||||
"firstSyllable": "ha",
|
|
||||||
"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",
|
|
||||||
"firstSyllable": "ha",
|
|
||||||
"pos": {
|
|
||||||
"adj": [
|
|
||||||
{
|
|
||||||
"def": "Good, favorable."
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
40
dist/dictionary/ha.yaml
vendored
40
dist/dictionary/ha.yaml
vendored
|
@ -1,40 +0,0 @@
|
||||||
- base: hachifobu
|
|
||||||
firstSyllable: ha
|
|
||||||
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
|
|
||||||
firstSyllable: ha
|
|
||||||
pos:
|
|
||||||
noun:
|
|
||||||
neuter:
|
|
||||||
- def: "Path, road, trail."
|
|
||||||
- base: hamani
|
|
||||||
firstSyllable: ha
|
|
||||||
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
|
|
||||||
firstSyllable: ha
|
|
||||||
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
|
|
||||||
firstSyllable: ha
|
|
||||||
pos:
|
|
||||||
adj:
|
|
||||||
- def: "Good, favorable."
|
|
45
dist/dictionary/he.json
vendored
45
dist/dictionary/he.json
vendored
|
@ -1,45 +0,0 @@
|
||||||
[
|
|
||||||
{
|
|
||||||
"base": "heru",
|
|
||||||
"firstSyllable": "he",
|
|
||||||
"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",
|
|
||||||
"firstSyllable": "he",
|
|
||||||
"pos": {
|
|
||||||
"noun": {
|
|
||||||
"neuter": [
|
|
||||||
{
|
|
||||||
"def": "The weight of a horse."
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"def": "30 madèku."
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"def": "489.6 kilograms.",
|
|
||||||
"oow": true
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
19
dist/dictionary/he.yaml
vendored
19
dist/dictionary/he.yaml
vendored
|
@ -1,19 +0,0 @@
|
||||||
- base: heru
|
|
||||||
firstSyllable: he
|
|
||||||
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
|
|
||||||
firstSyllable: he
|
|
||||||
pos:
|
|
||||||
noun:
|
|
||||||
neuter:
|
|
||||||
- def: The weight of a horse.
|
|
||||||
- def: 30 madèku.
|
|
||||||
- def: 489.6 kilograms.
|
|
||||||
oow: true
|
|
66
dist/dictionary/hi.json
vendored
66
dist/dictionary/hi.json
vendored
|
@ -1,66 +0,0 @@
|
||||||
[
|
|
||||||
{
|
|
||||||
"base": "hichifuma",
|
|
||||||
"firstSyllable": "hi",
|
|
||||||
"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",
|
|
||||||
"firstSyllable": "hi",
|
|
||||||
"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",
|
|
||||||
"firstSyllable": "hi",
|
|
||||||
"pos": {
|
|
||||||
"noun": {
|
|
||||||
"feminine": [
|
|
||||||
{
|
|
||||||
"def": "Tail."
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"base": "hiropadu",
|
|
||||||
"firstSyllable": "hi",
|
|
||||||
"pos": {
|
|
||||||
"noun": {
|
|
||||||
"neuter": [
|
|
||||||
{
|
|
||||||
"def": "Marks left behind by hooved creatures."
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"verb": {
|
|
||||||
"masculine": [
|
|
||||||
{
|
|
||||||
"def": "To kick something with great force."
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
35
dist/dictionary/hi.yaml
vendored
35
dist/dictionary/hi.yaml
vendored
|
@ -1,35 +0,0 @@
|
||||||
- base: hichifuma
|
|
||||||
firstSyllable: hi
|
|
||||||
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
|
|
||||||
firstSyllable: hi
|
|
||||||
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
|
|
||||||
firstSyllable: hi
|
|
||||||
pos:
|
|
||||||
noun:
|
|
||||||
feminine:
|
|
||||||
- def: Tail.
|
|
||||||
- base: hiropadu
|
|
||||||
firstSyllable: hi
|
|
||||||
pos:
|
|
||||||
noun:
|
|
||||||
neuter:
|
|
||||||
- def: Marks left behind by hooved creatures.
|
|
||||||
verb:
|
|
||||||
masculine:
|
|
||||||
- def: To kick something with great force.
|
|
64
dist/dictionary/ho.json
vendored
64
dist/dictionary/ho.json
vendored
|
@ -1,64 +0,0 @@
|
||||||
[
|
|
||||||
{
|
|
||||||
"base": "hofuma",
|
|
||||||
"firstSyllable": "ho",
|
|
||||||
"pos": {
|
|
||||||
"noun": {
|
|
||||||
"masculine": [
|
|
||||||
{
|
|
||||||
"def": "A hawk or raptor."
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"def": "A large hunting bird."
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"base": "hogano",
|
|
||||||
"firstSyllable": "ho",
|
|
||||||
"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",
|
|
||||||
"firstSyllable": "ho",
|
|
||||||
"pos": {
|
|
||||||
"verb": {
|
|
||||||
"feminine": [
|
|
||||||
{
|
|
||||||
"def": "To see solace away from others."
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"def": "To sequester oneself for contemplation."
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
34
dist/dictionary/ho.yaml
vendored
34
dist/dictionary/ho.yaml
vendored
|
@ -1,34 +0,0 @@
|
||||||
- base: hofuma
|
|
||||||
firstSyllable: ho
|
|
||||||
pos:
|
|
||||||
noun:
|
|
||||||
masculine:
|
|
||||||
- def: A hawk or raptor.
|
|
||||||
- def: A large hunting bird.
|
|
||||||
- base: hogano
|
|
||||||
firstSyllable: ho
|
|
||||||
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
|
|
||||||
firstSyllable: ho
|
|
||||||
pos:
|
|
||||||
verb:
|
|
||||||
feminine:
|
|
||||||
- def: To see solace away from others.
|
|
||||||
- def: To sequester oneself for contemplation.
|
|
15
dist/dictionary/hu.json
vendored
15
dist/dictionary/hu.json
vendored
|
@ -1,15 +0,0 @@
|
||||||
[
|
|
||||||
{
|
|
||||||
"base": "hupodi",
|
|
||||||
"firstSyllable": "hu",
|
|
||||||
"pos": {
|
|
||||||
"verb": {
|
|
||||||
"feminine": [
|
|
||||||
{
|
|
||||||
"def": "Come, approach."
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
6
dist/dictionary/hu.yaml
vendored
6
dist/dictionary/hu.yaml
vendored
|
@ -1,6 +0,0 @@
|
||||||
- base: hupodi
|
|
||||||
firstSyllable: hu
|
|
||||||
pos:
|
|
||||||
verb:
|
|
||||||
feminine:
|
|
||||||
- def: "Come, approach."
|
|
31
dist/dictionary/hyo.json
vendored
31
dist/dictionary/hyo.json
vendored
|
@ -1,31 +0,0 @@
|
||||||
[
|
|
||||||
{
|
|
||||||
"base": "hyobechimo",
|
|
||||||
"firstSyllable": "hyo",
|
|
||||||
"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/hyo.yaml
vendored
14
dist/dictionary/hyo.yaml
vendored
|
@ -1,14 +0,0 @@
|
||||||
- base: hyobechimo
|
|
||||||
firstSyllable: hyo
|
|
||||||
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.
|
|
15
dist/dictionary/hyu.json
vendored
15
dist/dictionary/hyu.json
vendored
|
@ -1,15 +0,0 @@
|
||||||
[
|
|
||||||
{
|
|
||||||
"base": "hyukadi",
|
|
||||||
"firstSyllable": "hyu",
|
|
||||||
"pos": {
|
|
||||||
"verb": {
|
|
||||||
"feminine": [
|
|
||||||
{
|
|
||||||
"def": "To volunteer or give assistance."
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
6
dist/dictionary/hyu.yaml
vendored
6
dist/dictionary/hyu.yaml
vendored
|
@ -1,6 +0,0 @@
|
||||||
- base: hyukadi
|
|
||||||
firstSyllable: hyu
|
|
||||||
pos:
|
|
||||||
verb:
|
|
||||||
feminine:
|
|
||||||
- def: To volunteer or give assistance.
|
|
67
dist/dictionary/i.json
vendored
67
dist/dictionary/i.json
vendored
|
@ -1,67 +0,0 @@
|
||||||
[
|
|
||||||
{
|
|
||||||
"base": "ikugafu",
|
|
||||||
"firstSyllable": "i",
|
|
||||||
"pos": {
|
|
||||||
"adj": [
|
|
||||||
{
|
|
||||||
"def": "To be unkillable."
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"def": "To be impossible to get rid of."
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"noun": {
|
|
||||||
"neuter": [
|
|
||||||
{
|
|
||||||
"def": "A cockroach."
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"base": "iryoga",
|
|
||||||
"firstSyllable": "i",
|
|
||||||
"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",
|
|
||||||
"firstSyllable": "i",
|
|
||||||
"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"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
41
dist/dictionary/i.yaml
vendored
41
dist/dictionary/i.yaml
vendored
|
@ -1,41 +0,0 @@
|
||||||
- base: ikugafu
|
|
||||||
firstSyllable: i
|
|
||||||
pos:
|
|
||||||
adj:
|
|
||||||
- def: To be unkillable.
|
|
||||||
- def: To be impossible to get rid of.
|
|
||||||
noun:
|
|
||||||
neuter:
|
|
||||||
- def: A cockroach.
|
|
||||||
- base: iryoga
|
|
||||||
firstSyllable: i
|
|
||||||
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
|
|
||||||
firstSyllable: i
|
|
||||||
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.
|
|
22
dist/dictionary/ji.json
vendored
22
dist/dictionary/ji.json
vendored
|
@ -1,22 +0,0 @@
|
||||||
[
|
|
||||||
{
|
|
||||||
"base": "jimo",
|
|
||||||
"firstSyllable": "ji",
|
|
||||||
"pos": {
|
|
||||||
"noun": {
|
|
||||||
"neuter": [
|
|
||||||
{
|
|
||||||
"def": "Cloth, fabric, or textile."
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"verb": {
|
|
||||||
"feminine": [
|
|
||||||
{
|
|
||||||
"def": "To wrap or bind in cloth or fabrics."
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
9
dist/dictionary/ji.yaml
vendored
9
dist/dictionary/ji.yaml
vendored
|
@ -1,9 +0,0 @@
|
||||||
- base: jimo
|
|
||||||
firstSyllable: ji
|
|
||||||
pos:
|
|
||||||
noun:
|
|
||||||
neuter:
|
|
||||||
- def: "Cloth, fabric, or textile."
|
|
||||||
verb:
|
|
||||||
feminine:
|
|
||||||
- def: To wrap or bind in cloth or fabrics.
|
|
53
dist/dictionary/jo.json
vendored
53
dist/dictionary/jo.json
vendored
|
@ -1,53 +0,0 @@
|
||||||
[
|
|
||||||
{
|
|
||||||
"base": "jokidofu",
|
|
||||||
"firstSyllable": "jo",
|
|
||||||
"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",
|
|
||||||
"firstSyllable": "jo",
|
|
||||||
"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."
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
22
dist/dictionary/jo.yaml
vendored
22
dist/dictionary/jo.yaml
vendored
|
@ -1,22 +0,0 @@
|
||||||
- base: jokidofu
|
|
||||||
firstSyllable: jo
|
|
||||||
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
|
|
||||||
firstSyllable: jo
|
|
||||||
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.
|
|
57
dist/dictionary/jyo.json
vendored
57
dist/dictionary/jyo.json
vendored
|
@ -1,57 +0,0 @@
|
||||||
[
|
|
||||||
{
|
|
||||||
"base": "jyomyo",
|
|
||||||
"firstSyllable": "jyo",
|
|
||||||
"pos": {
|
|
||||||
"pro": [
|
|
||||||
{
|
|
||||||
"def": "Many."
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"base": "jyon",
|
|
||||||
"firstSyllable": "jyo",
|
|
||||||
"pos": {
|
|
||||||
"adj": [
|
|
||||||
{
|
|
||||||
"def": "Yellow."
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"base": "jyopa",
|
|
||||||
"firstSyllable": "jyo",
|
|
||||||
"pos": {
|
|
||||||
"num": [
|
|
||||||
{
|
|
||||||
"def": "One."
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"base": "jyore",
|
|
||||||
"firstSyllable": "jyo",
|
|
||||||
"pos": {
|
|
||||||
"num": [
|
|
||||||
{
|
|
||||||
"def": "Two."
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"base": "jyoshya",
|
|
||||||
"firstSyllable": "jyo",
|
|
||||||
"pos": {
|
|
||||||
"adj": [
|
|
||||||
{
|
|
||||||
"def": "All."
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
25
dist/dictionary/jyo.yaml
vendored
25
dist/dictionary/jyo.yaml
vendored
|
@ -1,25 +0,0 @@
|
||||||
- base: jyomyo
|
|
||||||
firstSyllable: jyo
|
|
||||||
pos:
|
|
||||||
pro:
|
|
||||||
- def: Many.
|
|
||||||
- base: jyon
|
|
||||||
firstSyllable: jyo
|
|
||||||
pos:
|
|
||||||
adj:
|
|
||||||
- def: Yellow.
|
|
||||||
- base: jyopa
|
|
||||||
firstSyllable: jyo
|
|
||||||
pos:
|
|
||||||
num:
|
|
||||||
- def: One.
|
|
||||||
- base: jyore
|
|
||||||
firstSyllable: jyo
|
|
||||||
pos:
|
|
||||||
num:
|
|
||||||
- def: Two.
|
|
||||||
- base: jyoshya
|
|
||||||
firstSyllable: jyo
|
|
||||||
pos:
|
|
||||||
adj:
|
|
||||||
- def: All.
|
|
54
dist/dictionary/ka.json
vendored
54
dist/dictionary/ka.json
vendored
|
@ -1,54 +0,0 @@
|
||||||
[
|
|
||||||
{
|
|
||||||
"base": "kadu",
|
|
||||||
"firstSyllable": "ka",
|
|
||||||
"pos": {
|
|
||||||
"noun": {
|
|
||||||
"feminine": [
|
|
||||||
{
|
|
||||||
"def": "Hand."
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"base": "kafu",
|
|
||||||
"firstSyllable": "ka",
|
|
||||||
"pos": {
|
|
||||||
"verb": {
|
|
||||||
"feminine": [
|
|
||||||
{
|
|
||||||
"def": "Love, affection."
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"masculine": [
|
|
||||||
{
|
|
||||||
"def": "Passion."
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"base": "kafuchi",
|
|
||||||
"firstSyllable": "ka",
|
|
||||||
"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"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
27
dist/dictionary/ka.yaml
vendored
27
dist/dictionary/ka.yaml
vendored
|
@ -1,27 +0,0 @@
|
||||||
- base: kadu
|
|
||||||
firstSyllable: ka
|
|
||||||
pos:
|
|
||||||
noun:
|
|
||||||
feminine:
|
|
||||||
- def: Hand.
|
|
||||||
- base: kafu
|
|
||||||
firstSyllable: ka
|
|
||||||
pos:
|
|
||||||
verb:
|
|
||||||
feminine:
|
|
||||||
- def: "Love, affection."
|
|
||||||
masculine:
|
|
||||||
- def: Passion.
|
|
||||||
- base: kafuchi
|
|
||||||
firstSyllable: ka
|
|
||||||
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.
|
|
32
dist/dictionary/ke.json
vendored
32
dist/dictionary/ke.json
vendored
|
@ -1,32 +0,0 @@
|
||||||
[
|
|
||||||
{
|
|
||||||
"base": "keka",
|
|
||||||
"firstSyllable": "ke",
|
|
||||||
"pos": {
|
|
||||||
"noun": {
|
|
||||||
"feminine": [
|
|
||||||
{
|
|
||||||
"def": "The amount of displacement of an adult woman's fist."
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"def": "A volume of liquid equal to 305 milliliters.",
|
|
||||||
"oow": true
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"base": "keri",
|
|
||||||
"firstSyllable": "ke",
|
|
||||||
"pos": {
|
|
||||||
"verb": {
|
|
||||||
"masculine": [
|
|
||||||
{
|
|
||||||
"def": "Stand."
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
14
dist/dictionary/ke.yaml
vendored
14
dist/dictionary/ke.yaml
vendored
|
@ -1,14 +0,0 @@
|
||||||
- base: keka
|
|
||||||
firstSyllable: ke
|
|
||||||
pos:
|
|
||||||
noun:
|
|
||||||
feminine:
|
|
||||||
- def: The amount of displacement of an adult woman's fist.
|
|
||||||
- def: A volume of liquid equal to 305 milliliters.
|
|
||||||
oow: true
|
|
||||||
- base: keri
|
|
||||||
firstSyllable: ke
|
|
||||||
pos:
|
|
||||||
verb:
|
|
||||||
masculine:
|
|
||||||
- def: Stand.
|
|
110
dist/dictionary/ki.json
vendored
110
dist/dictionary/ki.json
vendored
|
@ -1,110 +0,0 @@
|
||||||
[
|
|
||||||
{
|
|
||||||
"base": "kifi",
|
|
||||||
"firstSyllable": "ki",
|
|
||||||
"pos": {
|
|
||||||
"verb": {
|
|
||||||
"feminine": [
|
|
||||||
{
|
|
||||||
"def": "Give, hand over."
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"base": "kifomakoji",
|
|
||||||
"firstSyllable": "ki",
|
|
||||||
"pos": {
|
|
||||||
"verb": {
|
|
||||||
"feminine": [
|
|
||||||
{
|
|
||||||
"def": "To lose a loved one to death."
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"base": "kiko",
|
|
||||||
"firstSyllable": "ki",
|
|
||||||
"pos": {
|
|
||||||
"noun": {
|
|
||||||
"masculine": [
|
|
||||||
{
|
|
||||||
"def": "Fire, burn."
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"base": "kikochyo",
|
|
||||||
"firstSyllable": "ki",
|
|
||||||
"pos": {
|
|
||||||
"noun": {
|
|
||||||
"neuter": [
|
|
||||||
{
|
|
||||||
"def": "Ashes of a fire."
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"base": "kikofuna",
|
|
||||||
"firstSyllable": "ki",
|
|
||||||
"pos": {
|
|
||||||
"noun": {
|
|
||||||
"neuter": [
|
|
||||||
{
|
|
||||||
"def": "The minimum area of ash produced from a funeral fire to be considered holy."
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"def": "80 square meters.",
|
|
||||||
"oow": true
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"base": "kimu",
|
|
||||||
"firstSyllable": "ki",
|
|
||||||
"pos": {
|
|
||||||
"verb": {
|
|
||||||
"feminine": [
|
|
||||||
{
|
|
||||||
"def": "Sit."
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"base": "kireki",
|
|
||||||
"firstSyllable": "ki",
|
|
||||||
"pos": {
|
|
||||||
"noun": {
|
|
||||||
"masculine": [
|
|
||||||
{
|
|
||||||
"def": "Tree."
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"base": "kishi",
|
|
||||||
"firstSyllable": "ki",
|
|
||||||
"pos": {
|
|
||||||
"noun": {
|
|
||||||
"masculine": [
|
|
||||||
{
|
|
||||||
"def": "Male, masculine."
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
52
dist/dictionary/ki.yaml
vendored
52
dist/dictionary/ki.yaml
vendored
|
@ -1,52 +0,0 @@
|
||||||
- base: kifi
|
|
||||||
firstSyllable: ki
|
|
||||||
pos:
|
|
||||||
verb:
|
|
||||||
feminine:
|
|
||||||
- def: "Give, hand over."
|
|
||||||
- base: kifomakoji
|
|
||||||
firstSyllable: ki
|
|
||||||
pos:
|
|
||||||
verb:
|
|
||||||
feminine:
|
|
||||||
- def: To lose a loved one to death.
|
|
||||||
- base: kiko
|
|
||||||
firstSyllable: ki
|
|
||||||
pos:
|
|
||||||
noun:
|
|
||||||
masculine:
|
|
||||||
- def: "Fire, burn."
|
|
||||||
- base: kikochyo
|
|
||||||
firstSyllable: ki
|
|
||||||
pos:
|
|
||||||
noun:
|
|
||||||
neuter:
|
|
||||||
- def: Ashes of a fire.
|
|
||||||
- base: kikofuna
|
|
||||||
firstSyllable: ki
|
|
||||||
pos:
|
|
||||||
noun:
|
|
||||||
neuter:
|
|
||||||
- def: >-
|
|
||||||
The minimum area of ash produced from a funeral fire to be
|
|
||||||
considered holy.
|
|
||||||
- def: 80 square meters.
|
|
||||||
oow: true
|
|
||||||
- base: kimu
|
|
||||||
firstSyllable: ki
|
|
||||||
pos:
|
|
||||||
verb:
|
|
||||||
feminine:
|
|
||||||
- def: Sit.
|
|
||||||
- base: kireki
|
|
||||||
firstSyllable: ki
|
|
||||||
pos:
|
|
||||||
noun:
|
|
||||||
masculine:
|
|
||||||
- def: Tree.
|
|
||||||
- base: kishi
|
|
||||||
firstSyllable: ki
|
|
||||||
pos:
|
|
||||||
noun:
|
|
||||||
masculine:
|
|
||||||
- def: "Male, masculine."
|
|
144
dist/dictionary/ko.json
vendored
144
dist/dictionary/ko.json
vendored
|
@ -1,144 +0,0 @@
|
||||||
[
|
|
||||||
{
|
|
||||||
"base": "kochozo",
|
|
||||||
"firstSyllable": "ko",
|
|
||||||
"pos": {
|
|
||||||
"verb": {
|
|
||||||
"neuter": [
|
|
||||||
{
|
|
||||||
"def": "Sleep."
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"base": "kodi",
|
|
||||||
"firstSyllable": "ko",
|
|
||||||
"pos": {
|
|
||||||
"verb": {
|
|
||||||
"neuter": [
|
|
||||||
{
|
|
||||||
"def": "Lie down."
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"base": "kodo",
|
|
||||||
"firstSyllable": "ko",
|
|
||||||
"pos": {
|
|
||||||
"noun": {
|
|
||||||
"feminine": [
|
|
||||||
{
|
|
||||||
"def": "Stone."
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"base": "kodoshyo",
|
|
||||||
"firstSyllable": "ko",
|
|
||||||
"pos": {
|
|
||||||
"noun": {
|
|
||||||
"masculine": [
|
|
||||||
{
|
|
||||||
"def": "Mountain."
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"base": "koji",
|
|
||||||
"firstSyllable": "ko",
|
|
||||||
"pos": {
|
|
||||||
"verb": {
|
|
||||||
"neuter": [
|
|
||||||
{
|
|
||||||
"def": "Die, death, kill."
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"base": "kojifu",
|
|
||||||
"firstSyllable": "ko",
|
|
||||||
"pos": {
|
|
||||||
"verb": {
|
|
||||||
"neuter": [
|
|
||||||
{
|
|
||||||
"def": "Die."
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"base": "kojinomi",
|
|
||||||
"firstSyllable": "ko",
|
|
||||||
"pos": {
|
|
||||||
"noun": {
|
|
||||||
"neuter": [
|
|
||||||
{
|
|
||||||
"def": "A keeper of the dead."
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"def": "Someone who tends to the dying, recording stories and confessions."
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"base": "kokeku",
|
|
||||||
"firstSyllable": "ko",
|
|
||||||
"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."
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"def": "A volume of liquid equal to 4 liters.",
|
|
||||||
"oow": true
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"base": "komiyaza",
|
|
||||||
"firstSyllable": "ko",
|
|
||||||
"pos": {
|
|
||||||
"noun": {
|
|
||||||
"neuter": [
|
|
||||||
{
|
|
||||||
"def": "The temperature where water boils."
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"def": "100 degrees Celsius.",
|
|
||||||
"oow": true
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"base": "koroma",
|
|
||||||
"firstSyllable": "ko",
|
|
||||||
"pos": {
|
|
||||||
"adj": [
|
|
||||||
{
|
|
||||||
"def": "Cursed."
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
67
dist/dictionary/ko.yaml
vendored
67
dist/dictionary/ko.yaml
vendored
|
@ -1,67 +0,0 @@
|
||||||
- base: kochozo
|
|
||||||
firstSyllable: ko
|
|
||||||
pos:
|
|
||||||
verb:
|
|
||||||
neuter:
|
|
||||||
- def: Sleep.
|
|
||||||
- base: kodi
|
|
||||||
firstSyllable: ko
|
|
||||||
pos:
|
|
||||||
verb:
|
|
||||||
neuter:
|
|
||||||
- def: Lie down.
|
|
||||||
- base: kodo
|
|
||||||
firstSyllable: ko
|
|
||||||
pos:
|
|
||||||
noun:
|
|
||||||
feminine:
|
|
||||||
- def: Stone.
|
|
||||||
- base: kodoshyo
|
|
||||||
firstSyllable: ko
|
|
||||||
pos:
|
|
||||||
noun:
|
|
||||||
masculine:
|
|
||||||
- def: Mountain.
|
|
||||||
- base: koji
|
|
||||||
firstSyllable: ko
|
|
||||||
pos:
|
|
||||||
verb:
|
|
||||||
neuter:
|
|
||||||
- def: "Die, death, kill."
|
|
||||||
- base: kojifu
|
|
||||||
firstSyllable: ko
|
|
||||||
pos:
|
|
||||||
verb:
|
|
||||||
neuter:
|
|
||||||
- def: Die.
|
|
||||||
- base: kojinomi
|
|
||||||
firstSyllable: ko
|
|
||||||
pos:
|
|
||||||
noun:
|
|
||||||
neuter:
|
|
||||||
- def: A keeper of the dead.
|
|
||||||
- def: "Someone who tends to the dying, recording stories and confessions."
|
|
||||||
- base: kokeku
|
|
||||||
firstSyllable: ko
|
|
||||||
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.
|
|
||||||
- def: A volume of liquid equal to 4 liters.
|
|
||||||
oow: true
|
|
||||||
- base: komiyaza
|
|
||||||
firstSyllable: ko
|
|
||||||
pos:
|
|
||||||
noun:
|
|
||||||
neuter:
|
|
||||||
- def: The temperature where water boils.
|
|
||||||
- def: 100 degrees Celsius.
|
|
||||||
oow: true
|
|
||||||
- base: koroma
|
|
||||||
firstSyllable: ko
|
|
||||||
pos:
|
|
||||||
adj:
|
|
||||||
- def: Cursed.
|
|
40
dist/dictionary/ku.json
vendored
40
dist/dictionary/ku.json
vendored
|
@ -1,40 +0,0 @@
|
||||||
[
|
|
||||||
{
|
|
||||||
"base": "kufo",
|
|
||||||
"firstSyllable": "ku",
|
|
||||||
"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",
|
|
||||||
"firstSyllable": "ku",
|
|
||||||
"pos": {
|
|
||||||
"verb": {
|
|
||||||
"neuter": [
|
|
||||||
{
|
|
||||||
"def": "Hear."
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
17
dist/dictionary/ku.yaml
vendored
17
dist/dictionary/ku.yaml
vendored
|
@ -1,17 +0,0 @@
|
||||||
- base: kufo
|
|
||||||
firstSyllable: ku
|
|
||||||
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
|
|
||||||
firstSyllable: ku
|
|
||||||
pos:
|
|
||||||
verb:
|
|
||||||
neuter:
|
|
||||||
- def: Hear.
|
|
44
dist/dictionary/kyo.json
vendored
44
dist/dictionary/kyo.json
vendored
|
@ -1,44 +0,0 @@
|
||||||
[
|
|
||||||
{
|
|
||||||
"base": "kyoda",
|
|
||||||
"firstSyllable": "kyo",
|
|
||||||
"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",
|
|
||||||
"firstSyllable": "kyo",
|
|
||||||
"pos": {
|
|
||||||
"noun": {
|
|
||||||
"neuter": [
|
|
||||||
{
|
|
||||||
"def": "Red."
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
18
dist/dictionary/kyo.yaml
vendored
18
dist/dictionary/kyo.yaml
vendored
|
@ -1,18 +0,0 @@
|
||||||
- base: kyoda
|
|
||||||
firstSyllable: kyo
|
|
||||||
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
|
|
||||||
firstSyllable: kyo
|
|
||||||
pos:
|
|
||||||
noun:
|
|
||||||
neuter:
|
|
||||||
- def: Red.
|
|
25
dist/dictionary/kyu.json
vendored
25
dist/dictionary/kyu.json
vendored
|
@ -1,25 +0,0 @@
|
||||||
[
|
|
||||||
{
|
|
||||||
"base": "kyumogo",
|
|
||||||
"firstSyllable": "kyu",
|
|
||||||
"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."
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
12
dist/dictionary/kyu.yaml
vendored
12
dist/dictionary/kyu.yaml
vendored
|
@ -1,12 +0,0 @@
|
||||||
- base: kyumogo
|
|
||||||
firstSyllable: kyu
|
|
||||||
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.
|
|
100
dist/dictionary/ma.json
vendored
100
dist/dictionary/ma.json
vendored
|
@ -1,100 +0,0 @@
|
||||||
[
|
|
||||||
{
|
|
||||||
"base": "ma",
|
|
||||||
"firstSyllable": "ma",
|
|
||||||
"pos": {
|
|
||||||
"adj": [
|
|
||||||
{
|
|
||||||
"def": "Me, I, mine."
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"base": "madeku",
|
|
||||||
"firstSyllable": "ma",
|
|
||||||
"pos": {
|
|
||||||
"noun": {
|
|
||||||
"masculine": [
|
|
||||||
{
|
|
||||||
"def": "A weight of 16 dātsu used for measuring heavy items and people."
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"def": "16.32 kilograms.",
|
|
||||||
"oow": true
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"base": "man",
|
|
||||||
"firstSyllable": "ma",
|
|
||||||
"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",
|
|
||||||
"firstSyllable": "ma",
|
|
||||||
"pos": {
|
|
||||||
"noun": {
|
|
||||||
"neuter": [
|
|
||||||
{
|
|
||||||
"def": "1/8th of a rōte or solar day."
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"base": "mashiokajudufa",
|
|
||||||
"firstSyllable": "ma",
|
|
||||||
"pos": {
|
|
||||||
"noun": {
|
|
||||||
"neuter": [
|
|
||||||
{
|
|
||||||
"def": "Felony resonance."
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"def": "The crime of destroying things using magical interference."
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"base": "masotoru",
|
|
||||||
"firstSyllable": "ma",
|
|
||||||
"pos": {
|
|
||||||
"adj": [
|
|
||||||
{
|
|
||||||
"def": "Concerning or using electrical-based magic.\n"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"noun": {
|
|
||||||
"masculine": [
|
|
||||||
{
|
|
||||||
"def": "Lightning formed from a dust storm.\n"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
46
dist/dictionary/ma.yaml
vendored
46
dist/dictionary/ma.yaml
vendored
|
@ -1,46 +0,0 @@
|
||||||
- base: ma
|
|
||||||
firstSyllable: ma
|
|
||||||
pos:
|
|
||||||
adj:
|
|
||||||
- def: "Me, I, mine."
|
|
||||||
- base: madeku
|
|
||||||
firstSyllable: ma
|
|
||||||
pos:
|
|
||||||
noun:
|
|
||||||
masculine:
|
|
||||||
- def: A weight of 16 dātsu used for measuring heavy items and people.
|
|
||||||
- def: 16.32 kilograms.
|
|
||||||
oow: true
|
|
||||||
- base: man
|
|
||||||
firstSyllable: ma
|
|
||||||
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
|
|
||||||
firstSyllable: ma
|
|
||||||
pos:
|
|
||||||
noun:
|
|
||||||
neuter:
|
|
||||||
- def: 1/8th of a rōte or solar day.
|
|
||||||
- base: mashiokajudufa
|
|
||||||
firstSyllable: ma
|
|
||||||
pos:
|
|
||||||
noun:
|
|
||||||
neuter:
|
|
||||||
- def: Felony resonance.
|
|
||||||
- def: The crime of destroying things using magical interference.
|
|
||||||
- base: masotoru
|
|
||||||
firstSyllable: ma
|
|
||||||
pos:
|
|
||||||
adj:
|
|
||||||
- def: |
|
|
||||||
Concerning or using electrical-based magic.
|
|
||||||
noun:
|
|
||||||
masculine:
|
|
||||||
- def: |
|
|
||||||
Lightning formed from a dust storm.
|
|
13
dist/dictionary/me.json
vendored
13
dist/dictionary/me.json
vendored
|
@ -1,13 +0,0 @@
|
||||||
[
|
|
||||||
{
|
|
||||||
"base": "mekoshi",
|
|
||||||
"firstSyllable": "me",
|
|
||||||
"pos": {
|
|
||||||
"adj": [
|
|
||||||
{
|
|
||||||
"def": "To perform an action humbly or without pride."
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
5
dist/dictionary/me.yaml
vendored
5
dist/dictionary/me.yaml
vendored
|
@ -1,5 +0,0 @@
|
||||||
- base: mekoshi
|
|
||||||
firstSyllable: me
|
|
||||||
pos:
|
|
||||||
adj:
|
|
||||||
- def: To perform an action humbly or without pride.
|
|
72
dist/dictionary/mi.json
vendored
72
dist/dictionary/mi.json
vendored
|
@ -1,72 +0,0 @@
|
||||||
[
|
|
||||||
{
|
|
||||||
"base": "michi",
|
|
||||||
"firstSyllable": "mi",
|
|
||||||
"pos": {
|
|
||||||
"verb": {
|
|
||||||
"masculine": [
|
|
||||||
{
|
|
||||||
"def": "Smile."
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"base": "mifuno",
|
|
||||||
"firstSyllable": "mi",
|
|
||||||
"pos": {
|
|
||||||
"noun": {
|
|
||||||
"feminine": [
|
|
||||||
{
|
|
||||||
"def": "The desert spirit."
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"neuter": [
|
|
||||||
{
|
|
||||||
"def": "The desrt."
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"base": "miga",
|
|
||||||
"firstSyllable": "mi",
|
|
||||||
"pos": {
|
|
||||||
"noun": {
|
|
||||||
"feminine": [
|
|
||||||
{
|
|
||||||
"def": "Meat, flesh."
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"base": "minafatsu",
|
|
||||||
"firstSyllable": "mi",
|
|
||||||
"pos": {
|
|
||||||
"noun": {
|
|
||||||
"neuter": [
|
|
||||||
{
|
|
||||||
"def": "Written words or letters of the desert tongue."
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"base": "miwafu",
|
|
||||||
"firstSyllable": "mi",
|
|
||||||
"pos": {
|
|
||||||
"noun": {
|
|
||||||
"neuter": [
|
|
||||||
{
|
|
||||||
"def": "Words of the desert."
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
32
dist/dictionary/mi.yaml
vendored
32
dist/dictionary/mi.yaml
vendored
|
@ -1,32 +0,0 @@
|
||||||
- base: michi
|
|
||||||
firstSyllable: mi
|
|
||||||
pos:
|
|
||||||
verb:
|
|
||||||
masculine:
|
|
||||||
- def: Smile.
|
|
||||||
- base: mifuno
|
|
||||||
firstSyllable: mi
|
|
||||||
pos:
|
|
||||||
noun:
|
|
||||||
feminine:
|
|
||||||
- def: The desert spirit.
|
|
||||||
neuter:
|
|
||||||
- def: The desrt.
|
|
||||||
- base: miga
|
|
||||||
firstSyllable: mi
|
|
||||||
pos:
|
|
||||||
noun:
|
|
||||||
feminine:
|
|
||||||
- def: "Meat, flesh."
|
|
||||||
- base: minafatsu
|
|
||||||
firstSyllable: mi
|
|
||||||
pos:
|
|
||||||
noun:
|
|
||||||
neuter:
|
|
||||||
- def: Written words or letters of the desert tongue.
|
|
||||||
- base: miwafu
|
|
||||||
firstSyllable: mi
|
|
||||||
pos:
|
|
||||||
noun:
|
|
||||||
neuter:
|
|
||||||
- def: Words of the desert.
|
|
57
dist/dictionary/mo.json
vendored
57
dist/dictionary/mo.json
vendored
|
@ -1,57 +0,0 @@
|
||||||
[
|
|
||||||
{
|
|
||||||
"base": "mo",
|
|
||||||
"firstSyllable": "mo",
|
|
||||||
"pos": {
|
|
||||||
"pro": [
|
|
||||||
{
|
|
||||||
"def": "What, who, whom, question placeholder."
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"base": "mobipo",
|
|
||||||
"firstSyllable": "mo",
|
|
||||||
"pos": {
|
|
||||||
"noun": {
|
|
||||||
"masculine": [
|
|
||||||
{
|
|
||||||
"def": "A crow or blackbird."
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"verb": {
|
|
||||||
"neuter": [
|
|
||||||
{
|
|
||||||
"def": "To make loud, persistent noises."
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"base": "monika",
|
|
||||||
"firstSyllable": "mo",
|
|
||||||
"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"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
38
dist/dictionary/mo.yaml
vendored
38
dist/dictionary/mo.yaml
vendored
|
@ -1,38 +0,0 @@
|
||||||
- base: mo
|
|
||||||
firstSyllable: mo
|
|
||||||
pos:
|
|
||||||
pro:
|
|
||||||
- def: "What, who, whom, question placeholder."
|
|
||||||
- base: mobipo
|
|
||||||
firstSyllable: mo
|
|
||||||
pos:
|
|
||||||
noun:
|
|
||||||
masculine:
|
|
||||||
- def: A crow or blackbird.
|
|
||||||
verb:
|
|
||||||
neuter:
|
|
||||||
- def: "To make loud, persistent noises."
|
|
||||||
- base: monika
|
|
||||||
firstSyllable: mo
|
|
||||||
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
Loading…
Reference in a new issue