Compare commits
86 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| e200b5f7b0 | |||
| d75b6cb945 | |||
| 779b4c60f5 | |||
| 84608ffbf7 | |||
| 2fbcfa52aa | |||
| 9e9d2c4f3e | |||
| abe35cb537 | |||
| f72230dd39 | |||
|
|
36a66d3eac | ||
|
|
317411ce60 | ||
|
|
3c6529bc99 | ||
|
|
061390df80 | ||
|
|
b4fd1c738f | ||
|
|
c7d6c6c5e5 | ||
|
|
31f094818e | ||
|
|
40afa53337 | ||
|
|
cb98d721c5 | ||
|
|
6ba5137ea1 | ||
|
|
5377674a30 | ||
|
|
f6ed462bce | ||
|
|
890223021a | ||
|
|
b1f874b3c8 | ||
|
|
2dd9ee19e9 | ||
|
|
aa203c546c | ||
|
|
8f31031244 | ||
|
|
84e367b79f | ||
|
|
0854e25a66 | ||
|
|
0c299db26f | ||
|
|
f267d06536 | ||
|
|
494b027513 | ||
|
|
35c58ff631 | ||
|
|
e87cd6d73e | ||
|
|
05b7a1181c | ||
|
|
2e91fe7ae4 | ||
|
|
9c3de358b3 | ||
|
|
b1e73f0761 | ||
|
|
222aa75a1d | ||
|
|
caa78d7c45 | ||
|
|
5edcaa373c | ||
|
|
08e412b32f | ||
|
|
4269946c30 | ||
|
|
607817302b | ||
|
|
dd39fa6113 | ||
|
|
d035b963de | ||
|
|
a14c26d168 | ||
|
|
b25a25a94f | ||
|
|
98ffb27db7 | ||
|
|
a6e0f60665 | ||
|
|
8488ed1bd1 | ||
|
|
dda47c51a8 | ||
|
|
a2285931b3 | ||
|
|
37b8956048 | ||
|
|
e54a105222 | ||
|
|
bee911df5e | ||
|
|
e2e533d481 | ||
|
|
2518ded84f | ||
|
|
fab88401ea | ||
|
|
7fed2f0a98 | ||
|
|
7c3ef81dec | ||
|
|
cbb52bf3aa | ||
|
|
86f73a96d0 | ||
|
|
dbba39373b | ||
|
|
30455759e8 | ||
|
|
eb675f24ea | ||
|
|
1357ec9b6d | ||
|
|
396986fefd | ||
|
|
c591cee153 | ||
|
|
54ae4fdb63 | ||
|
|
e846a0a30c | ||
|
|
54aafefcf4 | ||
|
|
c138b52c30 | ||
|
|
8b77966287 | ||
|
|
30e8da25a2 | ||
|
|
0d71accfd5 | ||
|
|
02db7b6fe2 | ||
|
|
3e75b54958 | ||
|
|
80b9703318 | ||
|
|
6a8d25f140 | ||
|
|
e9b7b5b42f | ||
|
|
1bc01d0741 | ||
|
|
a9748bdf03 | ||
|
|
1649c2b032 | ||
|
|
897ccefd71 | ||
|
|
95fa36d7a8 | ||
|
|
9d8c1431be | ||
|
|
2c883d2be3 |
91
.gitea/workflows/release.yaml
Normal file
@@ -0,0 +1,91 @@
|
||||
name: Release Creation
|
||||
|
||||
on:
|
||||
release:
|
||||
types: [published]
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- run: echo "💡 The ${{ gitea.repository }} repository will be cloned to the runner."
|
||||
|
||||
- uses: https://github.com/RouxAntoine/checkout@v3.5.4
|
||||
|
||||
# get part of the tag after the `v`
|
||||
- name: Extract tag version number
|
||||
id: get_version
|
||||
uses: https://github.com/battila7/get-version-action@v2
|
||||
|
||||
# Compile SCSS → CSS before packaging
|
||||
- name: Setup Node.js
|
||||
uses: https://github.com/actions/setup-node@v3
|
||||
with:
|
||||
node-version: '18'
|
||||
|
||||
- name: Install dependencies and compile styles
|
||||
run: npm ci && npm run compile
|
||||
|
||||
# Substitute the Manifest and Download URLs in system.json
|
||||
- name: Substitute Manifest and Download Links For Versioned Ones
|
||||
id: sub_manifest_link_version
|
||||
uses: https://github.com/microsoft/variable-substitution@v1
|
||||
with:
|
||||
files: "system/system.json"
|
||||
env:
|
||||
version: ${{steps.get_version.outputs.version-without-v}}
|
||||
url: https://www.uberwald.me/gitea/uberwald/l5rx-chiaroscuro
|
||||
manifest: https://www.uberwald.me/gitea/uberwald/l5rx-chiaroscuro/releases/download/latest/system.json
|
||||
download: https://www.uberwald.me/gitea/uberwald/l5rx-chiaroscuro/releases/download/${{github.event.release.tag_name}}/l5rx-chiaroscuro.zip
|
||||
|
||||
# Copy versioned system.json to root so it can be uploaded as-is
|
||||
- name: Copy system.json to root
|
||||
run: cp system/system.json system.json
|
||||
|
||||
# Create a zip file with all files required by the system
|
||||
- run: |
|
||||
apt update -y
|
||||
apt install -y zip
|
||||
|
||||
- run: |
|
||||
cd system
|
||||
zip -r ../l5rx-chiaroscuro.zip \
|
||||
assets/ \
|
||||
babele/ \
|
||||
fonts/ \
|
||||
lang/ \
|
||||
lib/ \
|
||||
macros/ \
|
||||
packs/ \
|
||||
scripts/ \
|
||||
styles/ \
|
||||
templates/ \
|
||||
system.json \
|
||||
template.json
|
||||
cd ..
|
||||
zip -j ./l5rx-chiaroscuro.zip README.md CHANGELOG.md LICENSE.md
|
||||
|
||||
- name: Setup Go
|
||||
uses: https://github.com/actions/setup-go@v4
|
||||
with:
|
||||
go-version: ">=1.20.1"
|
||||
|
||||
- name: Upload release assets to Gitea
|
||||
id: use-go-action
|
||||
uses: https://gitea.com/actions/release-action@main
|
||||
with:
|
||||
files: |-
|
||||
./l5rx-chiaroscuro.zip
|
||||
system.json
|
||||
api_key: "${{secrets.ALLOW_PUSH_RELEASE}}"
|
||||
|
||||
- name: Publish to Foundry server
|
||||
uses: https://github.com/djlechuck/foundryvtt-publish-package-action@v1
|
||||
with:
|
||||
token: ${{ secrets.FOUNDRYVTT_RELEASE_TOKEN }}
|
||||
id: 'l5rx-chiaroscuro'
|
||||
version: ${{github.event.release.tag_name}}
|
||||
manifest: 'https://www.uberwald.me/gitea/uberwald/l5rx-chiaroscuro/releases/download/latest/system.json'
|
||||
notes: 'https://www.uberwald.me/gitea/uberwald/l5rx-chiaroscuro/releases/tag/${{github.event.release.tag_name}}'
|
||||
compatibility-minimum: '13'
|
||||
compatibility-verified: '14'
|
||||
2
.gitignore
vendored
@@ -13,3 +13,5 @@ system/l5r5e.lock
|
||||
|
||||
# v11 db files (will be added later)
|
||||
system/packs/*/**
|
||||
.github/
|
||||
.history/
|
||||
|
||||
57
CHANGELOG.md
@@ -6,6 +6,55 @@ Date format : day/month/year
|
||||
> - `foundry-version`: Stick to the major version of FoundryVTT.
|
||||
> - `system-version`: System functionalities and Fixes.
|
||||
|
||||
## 1.13.4 - 01/03/2026 - UI Polish, Compendium Upgrades
|
||||
Welcoming Litasa as a maintainer for the system!
|
||||
|
||||
- Fixing type in Courts of Stone title, thanks to SagaTympana (!51).
|
||||
- Update to the [development wiki](https://gitlab.com/teaml5r/l5r5e/-/wikis/home), thanks to Norman Briggs (!52)
|
||||
- Updating the sidebar icons to show L5r5e specific ones (#72)(!53) (Litasa)
|
||||
- Adding incremental buttons for honor, glory, and status (#69)(!54) (Litasa)
|
||||
- New rank is now shown directly when completing a school rank (#64)(!57) (Litasa)
|
||||
- Adding Starting items to Compendiums that was missing. Split Poison and Omamori into individual items(!58) (Litasa)
|
||||
- Some combinations of light and dark theme made the GM Toolbox and GM Monitor hard/impossible to use. Fixed now (#75)(!59) (Litasa)
|
||||
- Conditions now show in the top of dice-picker and roll-n-keep (related to #74)(!60) (Litasa)
|
||||
- Compendium filter is now a lot "snappier". New search box and now able to multi select elements/ranks/rarity. (!61) (Litasa)
|
||||
- Adding selection circle to Combat encounter (!62) (Litasa)
|
||||
|
||||
## 1.13.3 - 01/02/2026 - Tactical Grid & Fixes
|
||||
- Updated demeanors from books up to Imperfect Land (included), thanks to Olivier Brencklé (!48).
|
||||
- Added Tactical Grid Range Band, thanks to Litasa (!49).
|
||||
- Fix Title advancement auto-name/icon, thanks to SagaTympana (!50).
|
||||
|
||||
## 1.13.2 - 18/10/2025 - Conditions Icons & Fixes
|
||||
- Fix Actor Sheet for pressing key `Enter` in input trigger `no active Encounter...` message.
|
||||
- Fix Compendium `Astrolab` is duplicate with `Mantis Clan` and `Children of the Five Winds`. Renamed the `cotfw` version to `Astrolabe (Unicorn)`.
|
||||
- Fix 20Q autocomplete and menu css.
|
||||
- Added handmade conditions icons by Nikotka (thx to rex35game for the share).
|
||||
- Spanish language updated thanks to Alejabarr.
|
||||
|
||||
## 1.13.1 - 21/09/2025 - Conditions & Fixes
|
||||
- Fix for Clicking on items doesn't show item window (#65 Thx to Litasa).
|
||||
- Fix for fade configuration (#66).
|
||||
- Added some Tooltips loading optimizations (#62 Thanks to KitCat).
|
||||
- Added some Properties loading optimizations (#63 Thanks to KitCat).
|
||||
- Conditions changes :
|
||||
- Added basic token conditions (Thanks to Putty)
|
||||
- Added compromised condition when strife goes beyond max (Thanks to Putty).
|
||||
- Added apply incapacitated if character's fatigue goes beyond endurance (Thanks to Putty).
|
||||
- Added ability to remove condition from actor sheet and show core journal on click.
|
||||
- Added option to show all conditions (StatusEffect), default to false (show only l5R conditions).
|
||||
|
||||
## 1.13.0 - 24/08/2025 - Foundry v13 Compatibility (Thx to Litasa)
|
||||
__! Be certain to carefully back up any critical user data before installing this update !__
|
||||
- Updated the System to FoundryVTT v13.
|
||||
- Compendiums
|
||||
- Added English compendium for `Children of the Five Winds`.
|
||||
- Added French translation for `Writ of the Wild`.
|
||||
- Fix Compendium Typo: "Beseech Hida's MIght" -> "Beseech Hida's Might" (#59).
|
||||
- Actor sheets: Technique types are now hidden when they are not checked in locked mode.
|
||||
- Fix 20Q: Technique message fixed (unallowed tech for School).
|
||||
- Switched wysiwyg editor engine to `prosemirror` for text editor (`tinymce` will be removed in Foundry v14).
|
||||
|
||||
## 1.12.3 - 13/03/2025 - Fixes and Compendiums Filters (Thx to Litasa)
|
||||
- Added Compendiums Filters (#41)
|
||||
- Separated the reference and the page number from book reference for filtering purpose.
|
||||
@@ -43,12 +92,12 @@ __! Be certain to carefully back up any critical user data before installing thi
|
||||
## 1.11.0 - 13/12/2023 - Little fixes
|
||||
- 20Q :
|
||||
- Starting techniques now have a limit of 6 techniques instead of 5 (see Celestial Realms : `Moshi Sun Sentinel School`).
|
||||
- Enable dropping on the 'drop here' label for 20Q (thk to Litasa !34).
|
||||
- Enable dropping on the 'drop here' label for 20Q (thk to Litasa #34).
|
||||
- Compendiums : Added masteries and abilities from Deathly Turns.
|
||||
|
||||
## 1.10.1 - 22/08/2023 - Litasa's fixes
|
||||
All these changes are thanks to Litasa.
|
||||
- Roll-n-Keep dialog now waits for the DiceSoNice animation to finish before displaying the result when re-rolling or exploding dice (!28).
|
||||
- Roll-n-Keep dialog now waits for the DiceSoNice animation to finish before displaying the result when re-rolling or exploding dice (#28).
|
||||
- Adding the ability to have a different name for the custom-compendium (needed to disable the system embedded ones).
|
||||
- Fixes some CSS issues when the font size is not the default (#50, #51 and #52).
|
||||
|
||||
@@ -64,8 +113,8 @@ __! Be certain to carefully back up any critical user data before installing thi
|
||||
|
||||
## 1.9.6 - 14/05/2023 - Bragma's QoL
|
||||
All these changes are thanks to Bragma.
|
||||
- Added effects panel to both pc and npc (!26).
|
||||
- Added a underline on rings to show current stance (!25).
|
||||
- Added effects panel to both pc and npc (#26).
|
||||
- Added an underline on rings to show current stance (#25).
|
||||
- Fix Lists not showing correctly in journal (#44).
|
||||
|
||||
## 1.9.5 - 11/01/2023 - Adding Modifiers
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||

|
||||
|
||||
[](https://ko-fi.com/vlyan)
|
||||
[](https://foundryvtt.com/)
|
||||
[](https://foundryvtt.com/)
|
||||
[](https://forge-vtt.com/bazaar#package=l5r5e)
|
||||
[](https://www.foundryvtt-hub.com/package/l5r5e/)
|
||||
[](https://www.foundryvtt-hub.com/package/l5r5e/)
|
||||
@@ -18,13 +18,14 @@ See the [Wiki page - Installation](https://gitlab.com/teaml5r/l5r5e/-/wikis/user
|
||||
|
||||
|
||||
## Current L5R team (alphabetical order)
|
||||
- Carter (compendiums, adventure adaptation)
|
||||
- Litasa (development)
|
||||
- Vlyan (development)
|
||||
|
||||
|
||||
## Historical L5R team (alphabetical order)
|
||||
- Carter (compendiums, adventure adaptation)
|
||||
- Hrunh (compendiums, pre-gen characters adaptation)
|
||||
- Litasa (development)
|
||||
- Mandar (development)
|
||||
- Sasmira (contributor)
|
||||
- Vlyan (development)
|
||||
|
||||
BIN
modif/L5RxChiaroscuro _ Dev Foundry VTT.docx
Normal file
4
package-lock.json
generated
@@ -1,11 +1,11 @@
|
||||
{
|
||||
"name": "l5r5e",
|
||||
"name": "l5rx-chiaroscuro",
|
||||
"version": "1.0.0",
|
||||
"lockfileVersion": 2,
|
||||
"requires": true,
|
||||
"packages": {
|
||||
"": {
|
||||
"name": "l5r5e",
|
||||
"name": "l5rx-chiaroscuro",
|
||||
"version": "1.0.0",
|
||||
"license": "ISC",
|
||||
"devDependencies": {
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"name": "l5r5e",
|
||||
"name": "l5rx-chiaroscuro",
|
||||
"version": "1.0.0",
|
||||
"description": "This is a game system for Legend of the Five Rings (5th edition) by Edge Studio",
|
||||
"main": "index.js",
|
||||
|
||||
393
system/.history/system_20260423143038.json
Normal file
@@ -0,0 +1,393 @@
|
||||
{
|
||||
"id": "l5rx-chiaroscuro",
|
||||
"title": "Legend of the Five Rings (5th Edition)",
|
||||
"description": "This is an authorised multilingual game system En|Fr|Es, for Legend of the Five Rings (5th Edition) by <a href='https://edge-studio.net/'>Edge Studio</a> <p> - Join the official Discord server: <a href='https://discord.gg/foundryvtt'> Official Discord</a></p><p> - Rejoignez la communauté Francophone: <a href='https://discord.gg/pPSDNJk'>Francophone Discord</a></p>",
|
||||
"url": "https://gitlab.com/teaml5r/l5r5e",
|
||||
"readme": "https://gitlab.com/teaml5r/l5r5e/-/blob/master/README.md",
|
||||
"changelog": "https://gitlab.com/teaml5r/l5r5e/-/blob/master/CHANGELOG.md",
|
||||
"license": "https://gitlab.com/teaml5r/l5r5e/-/blob/master/LICENSE.md",
|
||||
"manifest": "https://gitlab.com/teaml5r/l5r5e/-/raw/master/system/system.json",
|
||||
"download": "https://gitlab.com/teaml5r/l5r5e/-/jobs/artifacts/v1.13.4/raw/l5r5e.zip?job=build",
|
||||
"version": "1.13.4",
|
||||
"compatibility": {
|
||||
"minimum": "13",
|
||||
"verified": "14"
|
||||
},
|
||||
"socket": true,
|
||||
"authors": [
|
||||
{
|
||||
"name": "Vlyan",
|
||||
"discord": "Vlyan#6771",
|
||||
"url": "https://ko-fi.com/vlyan"
|
||||
},
|
||||
{
|
||||
"name": "Mandar",
|
||||
"discord": "Mandar#3440"
|
||||
},
|
||||
{
|
||||
"name": "Carter",
|
||||
"discord": "Carter#2703",
|
||||
"url": "https://fr.tipeee.com/carter-foundryvtt"
|
||||
},
|
||||
{
|
||||
"name": "Litasa",
|
||||
"discord": "Litasa#3139"
|
||||
}
|
||||
],
|
||||
"background": "systems/l5r5e/assets/l5r-header.webp",
|
||||
"scripts": [],
|
||||
"esmodules": [
|
||||
"./scripts/main-l5r5e.js"
|
||||
],
|
||||
"styles": [
|
||||
"./styles/l5r5e.css"
|
||||
],
|
||||
"packFolders": [
|
||||
{
|
||||
"name": "L5R5e System",
|
||||
"color": "#9a0909",
|
||||
"sorting": "m",
|
||||
"folders": [
|
||||
{
|
||||
"name": "Character related",
|
||||
"color": "#019806",
|
||||
"sorting": "m",
|
||||
"packs": [
|
||||
"core-peculiarities-distinctions",
|
||||
"core-peculiarities-passions",
|
||||
"core-peculiarities-adversities",
|
||||
"core-peculiarities-anxieties",
|
||||
"core-bonds",
|
||||
"core-titles",
|
||||
"core-journal-school-curriculum",
|
||||
"core-journal-great-clans-presentation"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "Techniques",
|
||||
"color": "#4b1eb3",
|
||||
"sorting": "m",
|
||||
"packs": [
|
||||
"core-techniques-kata",
|
||||
"core-techniques-kiho",
|
||||
"core-techniques-inversions",
|
||||
"core-techniques-invocations",
|
||||
"core-techniques-rituals",
|
||||
"core-techniques-shuji",
|
||||
"core-techniques-maho",
|
||||
"core-techniques-ninjutsu",
|
||||
"core-techniques-mantra",
|
||||
"core-techniques-school",
|
||||
"core-techniques-mastery"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "Objects related",
|
||||
"color": "#0985ae",
|
||||
"sorting": "m",
|
||||
"packs": [
|
||||
"core-properties",
|
||||
"core-item-patterns",
|
||||
"core-items",
|
||||
"core-armors",
|
||||
"core-weapons",
|
||||
"core-signature-scrolls",
|
||||
"core-celestial-implement-boons"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "Helpers",
|
||||
"color": "#6b3d1f",
|
||||
"sorting": "m",
|
||||
"packs": [
|
||||
"core-journal-conditions",
|
||||
"core-journal-terrain-qualities",
|
||||
"core-journal-opportunities"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "Tools",
|
||||
"color": "#834949",
|
||||
"sorting": "m",
|
||||
"packs": [
|
||||
"core-name-tables",
|
||||
"core-macros"
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
"packs": [
|
||||
{
|
||||
"name": "core-properties",
|
||||
"label": "Properties",
|
||||
"path": "packs/core-properties.db",
|
||||
"type": "Item",
|
||||
"system": "l5r5e"
|
||||
},
|
||||
{
|
||||
"name": "core-techniques-kata",
|
||||
"label": "Techniques Kata",
|
||||
"path": "packs/core-techniques-kata.db",
|
||||
"type": "Item",
|
||||
"system": "l5r5e"
|
||||
},
|
||||
{
|
||||
"name": "core-techniques-kiho",
|
||||
"label": "Techniques Kihõ",
|
||||
"path": "packs/core-techniques-kiho.db",
|
||||
"type": "Item",
|
||||
"system": "l5r5e"
|
||||
},
|
||||
{
|
||||
"name": "core-techniques-inversions",
|
||||
"label": "Techniques Inversions",
|
||||
"path": "packs/core-techniques-inversions.db",
|
||||
"type": "Item",
|
||||
"system": "l5r5e"
|
||||
},
|
||||
{
|
||||
"name": "core-techniques-invocations",
|
||||
"label": "Techniques Invocations",
|
||||
"path": "packs/core-techniques-invocations.db",
|
||||
"type": "Item",
|
||||
"system": "l5r5e"
|
||||
},
|
||||
{
|
||||
"name": "core-techniques-rituals",
|
||||
"label": "Techniques Rituals",
|
||||
"path": "packs/core-techniques-rituals.db",
|
||||
"type": "Item",
|
||||
"system": "l5r5e"
|
||||
},
|
||||
{
|
||||
"name": "core-techniques-shuji",
|
||||
"label": "Techniques Shuji",
|
||||
"path": "packs/core-techniques-shuji.db",
|
||||
"type": "Item",
|
||||
"system": "l5r5e"
|
||||
},
|
||||
{
|
||||
"name": "core-techniques-maho",
|
||||
"label": "Techniques Mahõ",
|
||||
"path": "packs/core-techniques-maho.db",
|
||||
"type": "Item",
|
||||
"system": "l5r5e"
|
||||
},
|
||||
{
|
||||
"name": "core-techniques-ninjutsu",
|
||||
"label": "Techniques Ninjutsu",
|
||||
"path": "packs/core-techniques-ninjutsu.db",
|
||||
"type": "Item",
|
||||
"system": "l5r5e"
|
||||
},
|
||||
{
|
||||
"name": "core-techniques-mantra",
|
||||
"label": "Techniques Mantra",
|
||||
"path": "packs/core-techniques-mantra.db",
|
||||
"type": "Item",
|
||||
"system": "l5r5e"
|
||||
},
|
||||
{
|
||||
"name": "core-techniques-school",
|
||||
"label": "School Abilities",
|
||||
"path": "packs/core-techniques-school.db",
|
||||
"type": "Item",
|
||||
"system": "l5r5e"
|
||||
},
|
||||
{
|
||||
"name": "core-techniques-mastery",
|
||||
"label": "Mastery Abilities",
|
||||
"path": "packs/core-techniques-mastery.db",
|
||||
"type": "Item",
|
||||
"system": "l5r5e"
|
||||
},
|
||||
{
|
||||
"name": "core-items",
|
||||
"label": "Items",
|
||||
"path": "packs/core-items.db",
|
||||
"type": "Item",
|
||||
"system": "l5r5e"
|
||||
},
|
||||
{
|
||||
"name": "core-armors",
|
||||
"label": "Armors",
|
||||
"path": "packs/core-armors.db",
|
||||
"type": "Item",
|
||||
"system": "l5r5e"
|
||||
},
|
||||
{
|
||||
"name": "core-weapons",
|
||||
"label": "Weapons",
|
||||
"path": "packs/core-weapons.db",
|
||||
"type": "Item",
|
||||
"system": "l5r5e"
|
||||
},
|
||||
{
|
||||
"name": "core-peculiarities-distinctions",
|
||||
"label": "Distinctions",
|
||||
"path": "packs/core-peculiarities-distinctions.db",
|
||||
"type": "Item",
|
||||
"system": "l5r5e"
|
||||
},
|
||||
{
|
||||
"name": "core-peculiarities-passions",
|
||||
"label": "Passions",
|
||||
"path": "packs/core-peculiarities-passions.db",
|
||||
"type": "Item",
|
||||
"system": "l5r5e"
|
||||
},
|
||||
{
|
||||
"name": "core-peculiarities-adversities",
|
||||
"label": "Adversities",
|
||||
"path": "packs/core-peculiarities-adversities.db",
|
||||
"type": "Item",
|
||||
"system": "l5r5e"
|
||||
},
|
||||
{
|
||||
"name": "core-peculiarities-anxieties",
|
||||
"label": "Anxieties",
|
||||
"path": "packs/core-peculiarities-anxieties.db",
|
||||
"type": "Item",
|
||||
"system": "l5r5e"
|
||||
},
|
||||
{
|
||||
"name": "core-bonds",
|
||||
"label": "Bonds",
|
||||
"path": "packs/core-bonds.db",
|
||||
"type": "Item",
|
||||
"system": "l5r5e"
|
||||
},
|
||||
{
|
||||
"name": "core-titles",
|
||||
"label": "Titles",
|
||||
"path": "packs/core-titles.db",
|
||||
"type": "Item",
|
||||
"system": "l5r5e"
|
||||
},
|
||||
{
|
||||
"name": "core-item-patterns",
|
||||
"label": "Item Patterns",
|
||||
"path": "packs/core-item-patterns.db",
|
||||
"type": "Item",
|
||||
"system": "l5r5e"
|
||||
},
|
||||
{
|
||||
"name": "core-signature-scrolls",
|
||||
"label": "Signature Scrolls",
|
||||
"path": "packs/core-signature-scrolls.db",
|
||||
"type": "Item",
|
||||
"system": "l5r5e"
|
||||
},
|
||||
{
|
||||
"name": "core-celestial-implement-boons",
|
||||
"label": "Celestial Implement Boons",
|
||||
"path": "packs/core-celestial-implement-boons.db",
|
||||
"type": "Item",
|
||||
"system": "l5r5e"
|
||||
},
|
||||
{
|
||||
"name": "core-journal-school-curriculum",
|
||||
"label": "School Curriculum",
|
||||
"path": "packs/core-journal-school-curriculum.db",
|
||||
"type": "JournalEntry",
|
||||
"system": "l5r5e"
|
||||
},
|
||||
{
|
||||
"name": "core-journal-conditions",
|
||||
"label": "Conditions",
|
||||
"path": "packs/core-journal-conditions.db",
|
||||
"type": "JournalEntry",
|
||||
"system": "l5r5e"
|
||||
},
|
||||
{
|
||||
"name": "core-journal-terrain-qualities",
|
||||
"label": "Terrain Qualities",
|
||||
"path": "packs/core-journal-terrain-qualities.db",
|
||||
"type": "JournalEntry",
|
||||
"system": "l5r5e"
|
||||
},
|
||||
{
|
||||
"name": "core-journal-great-clans-presentation",
|
||||
"label": "Great Clans Presentation",
|
||||
"path": "packs/core-journal-great-clans-presentation.db",
|
||||
"type": "JournalEntry",
|
||||
"system": "l5r5e"
|
||||
},
|
||||
{
|
||||
"name": "core-journal-opportunities",
|
||||
"label": "Opportunities",
|
||||
"path": "packs/core-journal-opportunities.db",
|
||||
"type": "JournalEntry",
|
||||
"system": "l5r5e"
|
||||
},
|
||||
{
|
||||
"name": "core-name-tables",
|
||||
"label": "Name Tables",
|
||||
"path": "packs/core-name-tables.db",
|
||||
"type": "RollTable",
|
||||
"system": "l5r5e"
|
||||
},
|
||||
{
|
||||
"name": "core-macros",
|
||||
"label": "L5R5E Macros",
|
||||
"path": "packs/core-macros.db",
|
||||
"type": "Macro",
|
||||
"system": "l5r5e"
|
||||
}
|
||||
],
|
||||
"languages": [
|
||||
{
|
||||
"lang": "en",
|
||||
"name": "English",
|
||||
"path": "lang/en-en.json"
|
||||
},
|
||||
{
|
||||
"lang": "fr",
|
||||
"name": "French (France)",
|
||||
"path": "lang/fr-fr.json"
|
||||
},
|
||||
{
|
||||
"lang": "es",
|
||||
"name": "Spanish (Spain)",
|
||||
"path": "lang/es-es.json"
|
||||
},
|
||||
{
|
||||
"lang": "it",
|
||||
"name": "Italian (Italy)",
|
||||
"path": "lang/it-it.json"
|
||||
}
|
||||
],
|
||||
"media": [
|
||||
{
|
||||
"type": "screenshot",
|
||||
"url": "https://gitlab.com/teaml5r/l5r5e/-/raw/master/screenshoots/login.jpg?raw=true",
|
||||
"caption": "Login screen"
|
||||
},
|
||||
{
|
||||
"type": "screenshot",
|
||||
"url": "https://gitlab.com/teaml5r/l5r5e/-/raw/master/screenshoots/roll.jpg?raw=true",
|
||||
"caption": "DicePicker and Roll and Keep"
|
||||
},
|
||||
{
|
||||
"type": "screenshot",
|
||||
"url": "https://gitlab.com/teaml5r/l5r5e/-/raw/master/screenshoots/school.jpg?raw=true",
|
||||
"caption": "Experience and School"
|
||||
},
|
||||
{
|
||||
"type": "screenshot",
|
||||
"url": "https://gitlab.com/teaml5r/l5r5e/-/raw/master/screenshoots/sheet_pc.jpg?raw=true",
|
||||
"caption": "PC sheet"
|
||||
},
|
||||
{
|
||||
"type": "screenshot",
|
||||
"url": "https://gitlab.com/teaml5r/l5r5e/-/raw/master/screenshoots/sheet_npc_army.jpg?raw=true",
|
||||
"caption": "NPC and Army sheets"
|
||||
},
|
||||
{
|
||||
"type": "screenshot",
|
||||
"url": "https://gitlab.com/teaml5r/l5r5e/-/raw/master/screenshoots/compendiums.jpg?raw=true",
|
||||
"caption": "Compendiums"
|
||||
}
|
||||
]
|
||||
}
|
||||
393
system/.history/system_20260423143040.json
Normal file
@@ -0,0 +1,393 @@
|
||||
{
|
||||
"id": "l5rx-chiaroscuro",
|
||||
"title": "Legend of the Five Rings (5th Edition)",
|
||||
"description": "This is an authorised multilingual game system En|Fr|Es, for Legend of the Five Rings (5th Edition) by <a href='https://edge-studio.net/'>Edge Studio</a> <p> - Join the official Discord server: <a href='https://discord.gg/foundryvtt'> Official Discord</a></p><p> - Rejoignez la communauté Francophone: <a href='https://discord.gg/pPSDNJk'>Francophone Discord</a></p>",
|
||||
"url": "https://gitlab.com/teaml5r/l5r5e",
|
||||
"readme": "https://gitlab.com/teaml5r/l5r5e/-/blob/master/README.md",
|
||||
"changelog": "https://gitlab.com/teaml5r/l5r5e/-/blob/master/CHANGELOG.md",
|
||||
"license": "https://gitlab.com/teaml5r/l5r5e/-/blob/master/LICENSE.md",
|
||||
"manifest": "https://gitlab.com/teaml5r/l5r5e/-/raw/master/system/system.json",
|
||||
"download": "https://gitlab.com/teaml5r/l5r5e/-/jobs/artifacts/v1.13.4/raw/l5r5e.zip?job=build",
|
||||
"version": "1.13.4",
|
||||
"compatibility": {
|
||||
"minimum": "13",
|
||||
"verified": "14"
|
||||
},
|
||||
"socket": true,
|
||||
"authors": [
|
||||
{
|
||||
"name": "Vlyan",
|
||||
"discord": "Vlyan#6771",
|
||||
"url": "https://ko-fi.com/vlyan"
|
||||
},
|
||||
{
|
||||
"name": "Mandar",
|
||||
"discord": "Mandar#3440"
|
||||
},
|
||||
{
|
||||
"name": "Carter",
|
||||
"discord": "Carter#2703",
|
||||
"url": "https://fr.tipeee.com/carter-foundryvtt"
|
||||
},
|
||||
{
|
||||
"name": "Litasa",
|
||||
"discord": "Litasa#3139"
|
||||
}
|
||||
],
|
||||
"background": "systems/l5r5e/assets/l5r-header.webp",
|
||||
"scripts": [],
|
||||
"esmodules": [
|
||||
"./scripts/main-l5r5e.js"
|
||||
],
|
||||
"styles": [
|
||||
"./styles/l5r5e.css"
|
||||
],
|
||||
"packFolders": [
|
||||
{
|
||||
"name": "L5R5e System",
|
||||
"color": "#9a0909",
|
||||
"sorting": "m",
|
||||
"folders": [
|
||||
{
|
||||
"name": "Character related",
|
||||
"color": "#019806",
|
||||
"sorting": "m",
|
||||
"packs": [
|
||||
"core-peculiarities-distinctions",
|
||||
"core-peculiarities-passions",
|
||||
"core-peculiarities-adversities",
|
||||
"core-peculiarities-anxieties",
|
||||
"core-bonds",
|
||||
"core-titles",
|
||||
"core-journal-school-curriculum",
|
||||
"core-journal-great-clans-presentation"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "Techniques",
|
||||
"color": "#4b1eb3",
|
||||
"sorting": "m",
|
||||
"packs": [
|
||||
"core-techniques-kata",
|
||||
"core-techniques-kiho",
|
||||
"core-techniques-inversions",
|
||||
"core-techniques-invocations",
|
||||
"core-techniques-rituals",
|
||||
"core-techniques-shuji",
|
||||
"core-techniques-maho",
|
||||
"core-techniques-ninjutsu",
|
||||
"core-techniques-mantra",
|
||||
"core-techniques-school",
|
||||
"core-techniques-mastery"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "Objects related",
|
||||
"color": "#0985ae",
|
||||
"sorting": "m",
|
||||
"packs": [
|
||||
"core-properties",
|
||||
"core-item-patterns",
|
||||
"core-items",
|
||||
"core-armors",
|
||||
"core-weapons",
|
||||
"core-signature-scrolls",
|
||||
"core-celestial-implement-boons"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "Helpers",
|
||||
"color": "#6b3d1f",
|
||||
"sorting": "m",
|
||||
"packs": [
|
||||
"core-journal-conditions",
|
||||
"core-journal-terrain-qualities",
|
||||
"core-journal-opportunities"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "Tools",
|
||||
"color": "#834949",
|
||||
"sorting": "m",
|
||||
"packs": [
|
||||
"core-name-tables",
|
||||
"core-macros"
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
"packs": [
|
||||
{
|
||||
"name": "core-properties",
|
||||
"label": "Properties",
|
||||
"path": "packs/core-properties.db",
|
||||
"type": "Item",
|
||||
"system": "l5r5e"
|
||||
},
|
||||
{
|
||||
"name": "core-techniques-kata",
|
||||
"label": "Techniques Kata",
|
||||
"path": "packs/core-techniques-kata.db",
|
||||
"type": "Item",
|
||||
"system": "l5r5e"
|
||||
},
|
||||
{
|
||||
"name": "core-techniques-kiho",
|
||||
"label": "Techniques Kihõ",
|
||||
"path": "packs/core-techniques-kiho.db",
|
||||
"type": "Item",
|
||||
"system": "l5r5e"
|
||||
},
|
||||
{
|
||||
"name": "core-techniques-inversions",
|
||||
"label": "Techniques Inversions",
|
||||
"path": "packs/core-techniques-inversions.db",
|
||||
"type": "Item",
|
||||
"system": "l5r5e"
|
||||
},
|
||||
{
|
||||
"name": "core-techniques-invocations",
|
||||
"label": "Techniques Invocations",
|
||||
"path": "packs/core-techniques-invocations.db",
|
||||
"type": "Item",
|
||||
"system": "l5r5e"
|
||||
},
|
||||
{
|
||||
"name": "core-techniques-rituals",
|
||||
"label": "Techniques Rituals",
|
||||
"path": "packs/core-techniques-rituals.db",
|
||||
"type": "Item",
|
||||
"system": "l5r5e"
|
||||
},
|
||||
{
|
||||
"name": "core-techniques-shuji",
|
||||
"label": "Techniques Shuji",
|
||||
"path": "packs/core-techniques-shuji.db",
|
||||
"type": "Item",
|
||||
"system": "l5r5e"
|
||||
},
|
||||
{
|
||||
"name": "core-techniques-maho",
|
||||
"label": "Techniques Mahõ",
|
||||
"path": "packs/core-techniques-maho.db",
|
||||
"type": "Item",
|
||||
"system": "l5r5e"
|
||||
},
|
||||
{
|
||||
"name": "core-techniques-ninjutsu",
|
||||
"label": "Techniques Ninjutsu",
|
||||
"path": "packs/core-techniques-ninjutsu.db",
|
||||
"type": "Item",
|
||||
"system": "l5r5e"
|
||||
},
|
||||
{
|
||||
"name": "core-techniques-mantra",
|
||||
"label": "Techniques Mantra",
|
||||
"path": "packs/core-techniques-mantra.db",
|
||||
"type": "Item",
|
||||
"system": "l5r5e"
|
||||
},
|
||||
{
|
||||
"name": "core-techniques-school",
|
||||
"label": "School Abilities",
|
||||
"path": "packs/core-techniques-school.db",
|
||||
"type": "Item",
|
||||
"system": "l5r5e"
|
||||
},
|
||||
{
|
||||
"name": "core-techniques-mastery",
|
||||
"label": "Mastery Abilities",
|
||||
"path": "packs/core-techniques-mastery.db",
|
||||
"type": "Item",
|
||||
"system": "l5r5e"
|
||||
},
|
||||
{
|
||||
"name": "core-items",
|
||||
"label": "Items",
|
||||
"path": "packs/core-items.db",
|
||||
"type": "Item",
|
||||
"system": "l5r5e"
|
||||
},
|
||||
{
|
||||
"name": "core-armors",
|
||||
"label": "Armors",
|
||||
"path": "packs/core-armors.db",
|
||||
"type": "Item",
|
||||
"system": "l5r5e"
|
||||
},
|
||||
{
|
||||
"name": "core-weapons",
|
||||
"label": "Weapons",
|
||||
"path": "packs/core-weapons.db",
|
||||
"type": "Item",
|
||||
"system": "l5r5e"
|
||||
},
|
||||
{
|
||||
"name": "core-peculiarities-distinctions",
|
||||
"label": "Distinctions",
|
||||
"path": "packs/core-peculiarities-distinctions.db",
|
||||
"type": "Item",
|
||||
"system": "l5r5e"
|
||||
},
|
||||
{
|
||||
"name": "core-peculiarities-passions",
|
||||
"label": "Passions",
|
||||
"path": "packs/core-peculiarities-passions.db",
|
||||
"type": "Item",
|
||||
"system": "l5r5e"
|
||||
},
|
||||
{
|
||||
"name": "core-peculiarities-adversities",
|
||||
"label": "Adversities",
|
||||
"path": "packs/core-peculiarities-adversities.db",
|
||||
"type": "Item",
|
||||
"system": "l5r5e"
|
||||
},
|
||||
{
|
||||
"name": "core-peculiarities-anxieties",
|
||||
"label": "Anxieties",
|
||||
"path": "packs/core-peculiarities-anxieties.db",
|
||||
"type": "Item",
|
||||
"system": "l5r5e"
|
||||
},
|
||||
{
|
||||
"name": "core-bonds",
|
||||
"label": "Bonds",
|
||||
"path": "packs/core-bonds.db",
|
||||
"type": "Item",
|
||||
"system": "l5r5e"
|
||||
},
|
||||
{
|
||||
"name": "core-titles",
|
||||
"label": "Titles",
|
||||
"path": "packs/core-titles.db",
|
||||
"type": "Item",
|
||||
"system": "l5r5e"
|
||||
},
|
||||
{
|
||||
"name": "core-item-patterns",
|
||||
"label": "Item Patterns",
|
||||
"path": "packs/core-item-patterns.db",
|
||||
"type": "Item",
|
||||
"system": "l5r5e"
|
||||
},
|
||||
{
|
||||
"name": "core-signature-scrolls",
|
||||
"label": "Signature Scrolls",
|
||||
"path": "packs/core-signature-scrolls.db",
|
||||
"type": "Item",
|
||||
"system": "l5r5e"
|
||||
},
|
||||
{
|
||||
"name": "core-celestial-implement-boons",
|
||||
"label": "Celestial Implement Boons",
|
||||
"path": "packs/core-celestial-implement-boons.db",
|
||||
"type": "Item",
|
||||
"system": "l5r5e"
|
||||
},
|
||||
{
|
||||
"name": "core-journal-school-curriculum",
|
||||
"label": "School Curriculum",
|
||||
"path": "packs/core-journal-school-curriculum.db",
|
||||
"type": "JournalEntry",
|
||||
"system": "l5r5e"
|
||||
},
|
||||
{
|
||||
"name": "core-journal-conditions",
|
||||
"label": "Conditions",
|
||||
"path": "packs/core-journal-conditions.db",
|
||||
"type": "JournalEntry",
|
||||
"system": "l5r5e"
|
||||
},
|
||||
{
|
||||
"name": "core-journal-terrain-qualities",
|
||||
"label": "Terrain Qualities",
|
||||
"path": "packs/core-journal-terrain-qualities.db",
|
||||
"type": "JournalEntry",
|
||||
"system": "l5r5e"
|
||||
},
|
||||
{
|
||||
"name": "core-journal-great-clans-presentation",
|
||||
"label": "Great Clans Presentation",
|
||||
"path": "packs/core-journal-great-clans-presentation.db",
|
||||
"type": "JournalEntry",
|
||||
"system": "l5r5e"
|
||||
},
|
||||
{
|
||||
"name": "core-journal-opportunities",
|
||||
"label": "Opportunities",
|
||||
"path": "packs/core-journal-opportunities.db",
|
||||
"type": "JournalEntry",
|
||||
"system": "l5r5e"
|
||||
},
|
||||
{
|
||||
"name": "core-name-tables",
|
||||
"label": "Name Tables",
|
||||
"path": "packs/core-name-tables.db",
|
||||
"type": "RollTable",
|
||||
"system": "l5r5e"
|
||||
},
|
||||
{
|
||||
"name": "core-macros",
|
||||
"label": "L5R5E Macros",
|
||||
"path": "packs/core-macros.db",
|
||||
"type": "Macro",
|
||||
"system": "l5r5e"
|
||||
}
|
||||
],
|
||||
"languages": [
|
||||
{
|
||||
"lang": "en",
|
||||
"name": "English",
|
||||
"path": "lang/en-en.json"
|
||||
},
|
||||
{
|
||||
"lang": "fr",
|
||||
"name": "French (France)",
|
||||
"path": "lang/fr-fr.json"
|
||||
},
|
||||
{
|
||||
"lang": "es",
|
||||
"name": "Spanish (Spain)",
|
||||
"path": "lang/es-es.json"
|
||||
},
|
||||
{
|
||||
"lang": "it",
|
||||
"name": "Italian (Italy)",
|
||||
"path": "lang/it-it.json"
|
||||
}
|
||||
],
|
||||
"media": [
|
||||
{
|
||||
"type": "screenshot",
|
||||
"url": "https://gitlab.com/teaml5r/l5r5e/-/raw/master/screenshoots/login.jpg?raw=true",
|
||||
"caption": "Login screen"
|
||||
},
|
||||
{
|
||||
"type": "screenshot",
|
||||
"url": "https://gitlab.com/teaml5r/l5r5e/-/raw/master/screenshoots/roll.jpg?raw=true",
|
||||
"caption": "DicePicker and Roll and Keep"
|
||||
},
|
||||
{
|
||||
"type": "screenshot",
|
||||
"url": "https://gitlab.com/teaml5r/l5r5e/-/raw/master/screenshoots/school.jpg?raw=true",
|
||||
"caption": "Experience and School"
|
||||
},
|
||||
{
|
||||
"type": "screenshot",
|
||||
"url": "https://gitlab.com/teaml5r/l5r5e/-/raw/master/screenshoots/sheet_pc.jpg?raw=true",
|
||||
"caption": "PC sheet"
|
||||
},
|
||||
{
|
||||
"type": "screenshot",
|
||||
"url": "https://gitlab.com/teaml5r/l5r5e/-/raw/master/screenshoots/sheet_npc_army.jpg?raw=true",
|
||||
"caption": "NPC and Army sheets"
|
||||
},
|
||||
{
|
||||
"type": "screenshot",
|
||||
"url": "https://gitlab.com/teaml5r/l5r5e/-/raw/master/screenshoots/compendiums.jpg?raw=true",
|
||||
"caption": "Compendiums"
|
||||
}
|
||||
]
|
||||
}
|
||||
393
system/.history/system_20260423143043.json
Normal file
@@ -0,0 +1,393 @@
|
||||
{
|
||||
"id": "l5rx-chiaroscuro",
|
||||
"title": "Legend of the Five Rings (5th Edition)",
|
||||
"description": "This is an authorised multilingual game system En|Fr|Es, for Legend of the Five Rings (5th Edition) by <a href='https://edge-studio.net/'>Edge Studio</a> <p> - Join the official Discord server: <a href='https://discord.gg/foundryvtt'> Official Discord</a></p><p> - Rejoignez la communauté Francophone: <a href='https://discord.gg/pPSDNJk'>Francophone Discord</a></p>",
|
||||
"url": "https://gitlab.com/teaml5r/l5r5e",
|
||||
"readme": "https://gitlab.com/teaml5r/l5r5e/-/blob/master/README.md",
|
||||
"changelog": "https://gitlab.com/teaml5r/l5r5e/-/blob/master/CHANGELOG.md",
|
||||
"license": "https://gitlab.com/teaml5r/l5r5e/-/blob/master/LICENSE.md",
|
||||
"manifest": "https://gitlab.com/teaml5r/l5r5e/-/raw/master/system/system.json",
|
||||
"download": "https://gitlab.com/teaml5r/l5r5e/-/jobs/artifacts/v1.13.4/raw/l5r5e.zip?job=build",
|
||||
"version": "14.0.0",
|
||||
"compatibility": {
|
||||
"minimum": "13",
|
||||
"verified": "14"
|
||||
},
|
||||
"socket": true,
|
||||
"authors": [
|
||||
{
|
||||
"name": "Vlyan",
|
||||
"discord": "Vlyan#6771",
|
||||
"url": "https://ko-fi.com/vlyan"
|
||||
},
|
||||
{
|
||||
"name": "Mandar",
|
||||
"discord": "Mandar#3440"
|
||||
},
|
||||
{
|
||||
"name": "Carter",
|
||||
"discord": "Carter#2703",
|
||||
"url": "https://fr.tipeee.com/carter-foundryvtt"
|
||||
},
|
||||
{
|
||||
"name": "Litasa",
|
||||
"discord": "Litasa#3139"
|
||||
}
|
||||
],
|
||||
"background": "systems/l5r5e/assets/l5r-header.webp",
|
||||
"scripts": [],
|
||||
"esmodules": [
|
||||
"./scripts/main-l5r5e.js"
|
||||
],
|
||||
"styles": [
|
||||
"./styles/l5r5e.css"
|
||||
],
|
||||
"packFolders": [
|
||||
{
|
||||
"name": "L5R5e System",
|
||||
"color": "#9a0909",
|
||||
"sorting": "m",
|
||||
"folders": [
|
||||
{
|
||||
"name": "Character related",
|
||||
"color": "#019806",
|
||||
"sorting": "m",
|
||||
"packs": [
|
||||
"core-peculiarities-distinctions",
|
||||
"core-peculiarities-passions",
|
||||
"core-peculiarities-adversities",
|
||||
"core-peculiarities-anxieties",
|
||||
"core-bonds",
|
||||
"core-titles",
|
||||
"core-journal-school-curriculum",
|
||||
"core-journal-great-clans-presentation"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "Techniques",
|
||||
"color": "#4b1eb3",
|
||||
"sorting": "m",
|
||||
"packs": [
|
||||
"core-techniques-kata",
|
||||
"core-techniques-kiho",
|
||||
"core-techniques-inversions",
|
||||
"core-techniques-invocations",
|
||||
"core-techniques-rituals",
|
||||
"core-techniques-shuji",
|
||||
"core-techniques-maho",
|
||||
"core-techniques-ninjutsu",
|
||||
"core-techniques-mantra",
|
||||
"core-techniques-school",
|
||||
"core-techniques-mastery"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "Objects related",
|
||||
"color": "#0985ae",
|
||||
"sorting": "m",
|
||||
"packs": [
|
||||
"core-properties",
|
||||
"core-item-patterns",
|
||||
"core-items",
|
||||
"core-armors",
|
||||
"core-weapons",
|
||||
"core-signature-scrolls",
|
||||
"core-celestial-implement-boons"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "Helpers",
|
||||
"color": "#6b3d1f",
|
||||
"sorting": "m",
|
||||
"packs": [
|
||||
"core-journal-conditions",
|
||||
"core-journal-terrain-qualities",
|
||||
"core-journal-opportunities"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "Tools",
|
||||
"color": "#834949",
|
||||
"sorting": "m",
|
||||
"packs": [
|
||||
"core-name-tables",
|
||||
"core-macros"
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
"packs": [
|
||||
{
|
||||
"name": "core-properties",
|
||||
"label": "Properties",
|
||||
"path": "packs/core-properties.db",
|
||||
"type": "Item",
|
||||
"system": "l5r5e"
|
||||
},
|
||||
{
|
||||
"name": "core-techniques-kata",
|
||||
"label": "Techniques Kata",
|
||||
"path": "packs/core-techniques-kata.db",
|
||||
"type": "Item",
|
||||
"system": "l5r5e"
|
||||
},
|
||||
{
|
||||
"name": "core-techniques-kiho",
|
||||
"label": "Techniques Kihõ",
|
||||
"path": "packs/core-techniques-kiho.db",
|
||||
"type": "Item",
|
||||
"system": "l5r5e"
|
||||
},
|
||||
{
|
||||
"name": "core-techniques-inversions",
|
||||
"label": "Techniques Inversions",
|
||||
"path": "packs/core-techniques-inversions.db",
|
||||
"type": "Item",
|
||||
"system": "l5r5e"
|
||||
},
|
||||
{
|
||||
"name": "core-techniques-invocations",
|
||||
"label": "Techniques Invocations",
|
||||
"path": "packs/core-techniques-invocations.db",
|
||||
"type": "Item",
|
||||
"system": "l5r5e"
|
||||
},
|
||||
{
|
||||
"name": "core-techniques-rituals",
|
||||
"label": "Techniques Rituals",
|
||||
"path": "packs/core-techniques-rituals.db",
|
||||
"type": "Item",
|
||||
"system": "l5r5e"
|
||||
},
|
||||
{
|
||||
"name": "core-techniques-shuji",
|
||||
"label": "Techniques Shuji",
|
||||
"path": "packs/core-techniques-shuji.db",
|
||||
"type": "Item",
|
||||
"system": "l5r5e"
|
||||
},
|
||||
{
|
||||
"name": "core-techniques-maho",
|
||||
"label": "Techniques Mahõ",
|
||||
"path": "packs/core-techniques-maho.db",
|
||||
"type": "Item",
|
||||
"system": "l5r5e"
|
||||
},
|
||||
{
|
||||
"name": "core-techniques-ninjutsu",
|
||||
"label": "Techniques Ninjutsu",
|
||||
"path": "packs/core-techniques-ninjutsu.db",
|
||||
"type": "Item",
|
||||
"system": "l5r5e"
|
||||
},
|
||||
{
|
||||
"name": "core-techniques-mantra",
|
||||
"label": "Techniques Mantra",
|
||||
"path": "packs/core-techniques-mantra.db",
|
||||
"type": "Item",
|
||||
"system": "l5r5e"
|
||||
},
|
||||
{
|
||||
"name": "core-techniques-school",
|
||||
"label": "School Abilities",
|
||||
"path": "packs/core-techniques-school.db",
|
||||
"type": "Item",
|
||||
"system": "l5r5e"
|
||||
},
|
||||
{
|
||||
"name": "core-techniques-mastery",
|
||||
"label": "Mastery Abilities",
|
||||
"path": "packs/core-techniques-mastery.db",
|
||||
"type": "Item",
|
||||
"system": "l5r5e"
|
||||
},
|
||||
{
|
||||
"name": "core-items",
|
||||
"label": "Items",
|
||||
"path": "packs/core-items.db",
|
||||
"type": "Item",
|
||||
"system": "l5r5e"
|
||||
},
|
||||
{
|
||||
"name": "core-armors",
|
||||
"label": "Armors",
|
||||
"path": "packs/core-armors.db",
|
||||
"type": "Item",
|
||||
"system": "l5r5e"
|
||||
},
|
||||
{
|
||||
"name": "core-weapons",
|
||||
"label": "Weapons",
|
||||
"path": "packs/core-weapons.db",
|
||||
"type": "Item",
|
||||
"system": "l5r5e"
|
||||
},
|
||||
{
|
||||
"name": "core-peculiarities-distinctions",
|
||||
"label": "Distinctions",
|
||||
"path": "packs/core-peculiarities-distinctions.db",
|
||||
"type": "Item",
|
||||
"system": "l5r5e"
|
||||
},
|
||||
{
|
||||
"name": "core-peculiarities-passions",
|
||||
"label": "Passions",
|
||||
"path": "packs/core-peculiarities-passions.db",
|
||||
"type": "Item",
|
||||
"system": "l5r5e"
|
||||
},
|
||||
{
|
||||
"name": "core-peculiarities-adversities",
|
||||
"label": "Adversities",
|
||||
"path": "packs/core-peculiarities-adversities.db",
|
||||
"type": "Item",
|
||||
"system": "l5r5e"
|
||||
},
|
||||
{
|
||||
"name": "core-peculiarities-anxieties",
|
||||
"label": "Anxieties",
|
||||
"path": "packs/core-peculiarities-anxieties.db",
|
||||
"type": "Item",
|
||||
"system": "l5r5e"
|
||||
},
|
||||
{
|
||||
"name": "core-bonds",
|
||||
"label": "Bonds",
|
||||
"path": "packs/core-bonds.db",
|
||||
"type": "Item",
|
||||
"system": "l5r5e"
|
||||
},
|
||||
{
|
||||
"name": "core-titles",
|
||||
"label": "Titles",
|
||||
"path": "packs/core-titles.db",
|
||||
"type": "Item",
|
||||
"system": "l5r5e"
|
||||
},
|
||||
{
|
||||
"name": "core-item-patterns",
|
||||
"label": "Item Patterns",
|
||||
"path": "packs/core-item-patterns.db",
|
||||
"type": "Item",
|
||||
"system": "l5r5e"
|
||||
},
|
||||
{
|
||||
"name": "core-signature-scrolls",
|
||||
"label": "Signature Scrolls",
|
||||
"path": "packs/core-signature-scrolls.db",
|
||||
"type": "Item",
|
||||
"system": "l5r5e"
|
||||
},
|
||||
{
|
||||
"name": "core-celestial-implement-boons",
|
||||
"label": "Celestial Implement Boons",
|
||||
"path": "packs/core-celestial-implement-boons.db",
|
||||
"type": "Item",
|
||||
"system": "l5r5e"
|
||||
},
|
||||
{
|
||||
"name": "core-journal-school-curriculum",
|
||||
"label": "School Curriculum",
|
||||
"path": "packs/core-journal-school-curriculum.db",
|
||||
"type": "JournalEntry",
|
||||
"system": "l5r5e"
|
||||
},
|
||||
{
|
||||
"name": "core-journal-conditions",
|
||||
"label": "Conditions",
|
||||
"path": "packs/core-journal-conditions.db",
|
||||
"type": "JournalEntry",
|
||||
"system": "l5r5e"
|
||||
},
|
||||
{
|
||||
"name": "core-journal-terrain-qualities",
|
||||
"label": "Terrain Qualities",
|
||||
"path": "packs/core-journal-terrain-qualities.db",
|
||||
"type": "JournalEntry",
|
||||
"system": "l5r5e"
|
||||
},
|
||||
{
|
||||
"name": "core-journal-great-clans-presentation",
|
||||
"label": "Great Clans Presentation",
|
||||
"path": "packs/core-journal-great-clans-presentation.db",
|
||||
"type": "JournalEntry",
|
||||
"system": "l5r5e"
|
||||
},
|
||||
{
|
||||
"name": "core-journal-opportunities",
|
||||
"label": "Opportunities",
|
||||
"path": "packs/core-journal-opportunities.db",
|
||||
"type": "JournalEntry",
|
||||
"system": "l5r5e"
|
||||
},
|
||||
{
|
||||
"name": "core-name-tables",
|
||||
"label": "Name Tables",
|
||||
"path": "packs/core-name-tables.db",
|
||||
"type": "RollTable",
|
||||
"system": "l5r5e"
|
||||
},
|
||||
{
|
||||
"name": "core-macros",
|
||||
"label": "L5R5E Macros",
|
||||
"path": "packs/core-macros.db",
|
||||
"type": "Macro",
|
||||
"system": "l5r5e"
|
||||
}
|
||||
],
|
||||
"languages": [
|
||||
{
|
||||
"lang": "en",
|
||||
"name": "English",
|
||||
"path": "lang/en-en.json"
|
||||
},
|
||||
{
|
||||
"lang": "fr",
|
||||
"name": "French (France)",
|
||||
"path": "lang/fr-fr.json"
|
||||
},
|
||||
{
|
||||
"lang": "es",
|
||||
"name": "Spanish (Spain)",
|
||||
"path": "lang/es-es.json"
|
||||
},
|
||||
{
|
||||
"lang": "it",
|
||||
"name": "Italian (Italy)",
|
||||
"path": "lang/it-it.json"
|
||||
}
|
||||
],
|
||||
"media": [
|
||||
{
|
||||
"type": "screenshot",
|
||||
"url": "https://gitlab.com/teaml5r/l5r5e/-/raw/master/screenshoots/login.jpg?raw=true",
|
||||
"caption": "Login screen"
|
||||
},
|
||||
{
|
||||
"type": "screenshot",
|
||||
"url": "https://gitlab.com/teaml5r/l5r5e/-/raw/master/screenshoots/roll.jpg?raw=true",
|
||||
"caption": "DicePicker and Roll and Keep"
|
||||
},
|
||||
{
|
||||
"type": "screenshot",
|
||||
"url": "https://gitlab.com/teaml5r/l5r5e/-/raw/master/screenshoots/school.jpg?raw=true",
|
||||
"caption": "Experience and School"
|
||||
},
|
||||
{
|
||||
"type": "screenshot",
|
||||
"url": "https://gitlab.com/teaml5r/l5r5e/-/raw/master/screenshoots/sheet_pc.jpg?raw=true",
|
||||
"caption": "PC sheet"
|
||||
},
|
||||
{
|
||||
"type": "screenshot",
|
||||
"url": "https://gitlab.com/teaml5r/l5r5e/-/raw/master/screenshoots/sheet_npc_army.jpg?raw=true",
|
||||
"caption": "NPC and Army sheets"
|
||||
},
|
||||
{
|
||||
"type": "screenshot",
|
||||
"url": "https://gitlab.com/teaml5r/l5r5e/-/raw/master/screenshoots/compendiums.jpg?raw=true",
|
||||
"caption": "Compendiums"
|
||||
}
|
||||
]
|
||||
}
|
||||
393
system/.history/system_20260423143048.json
Normal file
@@ -0,0 +1,393 @@
|
||||
{
|
||||
"id": "l5rx-chiaroscuro",
|
||||
"title": "chiaroscuro - Legend of the Five Rings (5th Edition)",
|
||||
"description": "This is an authorised multilingual game system En|Fr|Es, for Legend of the Five Rings (5th Edition) by <a href='https://edge-studio.net/'>Edge Studio</a> <p> - Join the official Discord server: <a href='https://discord.gg/foundryvtt'> Official Discord</a></p><p> - Rejoignez la communauté Francophone: <a href='https://discord.gg/pPSDNJk'>Francophone Discord</a></p>",
|
||||
"url": "https://gitlab.com/teaml5r/l5r5e",
|
||||
"readme": "https://gitlab.com/teaml5r/l5r5e/-/blob/master/README.md",
|
||||
"changelog": "https://gitlab.com/teaml5r/l5r5e/-/blob/master/CHANGELOG.md",
|
||||
"license": "https://gitlab.com/teaml5r/l5r5e/-/blob/master/LICENSE.md",
|
||||
"manifest": "https://gitlab.com/teaml5r/l5r5e/-/raw/master/system/system.json",
|
||||
"download": "https://gitlab.com/teaml5r/l5r5e/-/jobs/artifacts/v1.13.4/raw/l5r5e.zip?job=build",
|
||||
"version": "14.0.0",
|
||||
"compatibility": {
|
||||
"minimum": "13",
|
||||
"verified": "14"
|
||||
},
|
||||
"socket": true,
|
||||
"authors": [
|
||||
{
|
||||
"name": "Vlyan",
|
||||
"discord": "Vlyan#6771",
|
||||
"url": "https://ko-fi.com/vlyan"
|
||||
},
|
||||
{
|
||||
"name": "Mandar",
|
||||
"discord": "Mandar#3440"
|
||||
},
|
||||
{
|
||||
"name": "Carter",
|
||||
"discord": "Carter#2703",
|
||||
"url": "https://fr.tipeee.com/carter-foundryvtt"
|
||||
},
|
||||
{
|
||||
"name": "Litasa",
|
||||
"discord": "Litasa#3139"
|
||||
}
|
||||
],
|
||||
"background": "systems/l5r5e/assets/l5r-header.webp",
|
||||
"scripts": [],
|
||||
"esmodules": [
|
||||
"./scripts/main-l5r5e.js"
|
||||
],
|
||||
"styles": [
|
||||
"./styles/l5r5e.css"
|
||||
],
|
||||
"packFolders": [
|
||||
{
|
||||
"name": "L5R5e System",
|
||||
"color": "#9a0909",
|
||||
"sorting": "m",
|
||||
"folders": [
|
||||
{
|
||||
"name": "Character related",
|
||||
"color": "#019806",
|
||||
"sorting": "m",
|
||||
"packs": [
|
||||
"core-peculiarities-distinctions",
|
||||
"core-peculiarities-passions",
|
||||
"core-peculiarities-adversities",
|
||||
"core-peculiarities-anxieties",
|
||||
"core-bonds",
|
||||
"core-titles",
|
||||
"core-journal-school-curriculum",
|
||||
"core-journal-great-clans-presentation"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "Techniques",
|
||||
"color": "#4b1eb3",
|
||||
"sorting": "m",
|
||||
"packs": [
|
||||
"core-techniques-kata",
|
||||
"core-techniques-kiho",
|
||||
"core-techniques-inversions",
|
||||
"core-techniques-invocations",
|
||||
"core-techniques-rituals",
|
||||
"core-techniques-shuji",
|
||||
"core-techniques-maho",
|
||||
"core-techniques-ninjutsu",
|
||||
"core-techniques-mantra",
|
||||
"core-techniques-school",
|
||||
"core-techniques-mastery"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "Objects related",
|
||||
"color": "#0985ae",
|
||||
"sorting": "m",
|
||||
"packs": [
|
||||
"core-properties",
|
||||
"core-item-patterns",
|
||||
"core-items",
|
||||
"core-armors",
|
||||
"core-weapons",
|
||||
"core-signature-scrolls",
|
||||
"core-celestial-implement-boons"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "Helpers",
|
||||
"color": "#6b3d1f",
|
||||
"sorting": "m",
|
||||
"packs": [
|
||||
"core-journal-conditions",
|
||||
"core-journal-terrain-qualities",
|
||||
"core-journal-opportunities"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "Tools",
|
||||
"color": "#834949",
|
||||
"sorting": "m",
|
||||
"packs": [
|
||||
"core-name-tables",
|
||||
"core-macros"
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
"packs": [
|
||||
{
|
||||
"name": "core-properties",
|
||||
"label": "Properties",
|
||||
"path": "packs/core-properties.db",
|
||||
"type": "Item",
|
||||
"system": "l5r5e"
|
||||
},
|
||||
{
|
||||
"name": "core-techniques-kata",
|
||||
"label": "Techniques Kata",
|
||||
"path": "packs/core-techniques-kata.db",
|
||||
"type": "Item",
|
||||
"system": "l5r5e"
|
||||
},
|
||||
{
|
||||
"name": "core-techniques-kiho",
|
||||
"label": "Techniques Kihõ",
|
||||
"path": "packs/core-techniques-kiho.db",
|
||||
"type": "Item",
|
||||
"system": "l5r5e"
|
||||
},
|
||||
{
|
||||
"name": "core-techniques-inversions",
|
||||
"label": "Techniques Inversions",
|
||||
"path": "packs/core-techniques-inversions.db",
|
||||
"type": "Item",
|
||||
"system": "l5r5e"
|
||||
},
|
||||
{
|
||||
"name": "core-techniques-invocations",
|
||||
"label": "Techniques Invocations",
|
||||
"path": "packs/core-techniques-invocations.db",
|
||||
"type": "Item",
|
||||
"system": "l5r5e"
|
||||
},
|
||||
{
|
||||
"name": "core-techniques-rituals",
|
||||
"label": "Techniques Rituals",
|
||||
"path": "packs/core-techniques-rituals.db",
|
||||
"type": "Item",
|
||||
"system": "l5r5e"
|
||||
},
|
||||
{
|
||||
"name": "core-techniques-shuji",
|
||||
"label": "Techniques Shuji",
|
||||
"path": "packs/core-techniques-shuji.db",
|
||||
"type": "Item",
|
||||
"system": "l5r5e"
|
||||
},
|
||||
{
|
||||
"name": "core-techniques-maho",
|
||||
"label": "Techniques Mahõ",
|
||||
"path": "packs/core-techniques-maho.db",
|
||||
"type": "Item",
|
||||
"system": "l5r5e"
|
||||
},
|
||||
{
|
||||
"name": "core-techniques-ninjutsu",
|
||||
"label": "Techniques Ninjutsu",
|
||||
"path": "packs/core-techniques-ninjutsu.db",
|
||||
"type": "Item",
|
||||
"system": "l5r5e"
|
||||
},
|
||||
{
|
||||
"name": "core-techniques-mantra",
|
||||
"label": "Techniques Mantra",
|
||||
"path": "packs/core-techniques-mantra.db",
|
||||
"type": "Item",
|
||||
"system": "l5r5e"
|
||||
},
|
||||
{
|
||||
"name": "core-techniques-school",
|
||||
"label": "School Abilities",
|
||||
"path": "packs/core-techniques-school.db",
|
||||
"type": "Item",
|
||||
"system": "l5r5e"
|
||||
},
|
||||
{
|
||||
"name": "core-techniques-mastery",
|
||||
"label": "Mastery Abilities",
|
||||
"path": "packs/core-techniques-mastery.db",
|
||||
"type": "Item",
|
||||
"system": "l5r5e"
|
||||
},
|
||||
{
|
||||
"name": "core-items",
|
||||
"label": "Items",
|
||||
"path": "packs/core-items.db",
|
||||
"type": "Item",
|
||||
"system": "l5r5e"
|
||||
},
|
||||
{
|
||||
"name": "core-armors",
|
||||
"label": "Armors",
|
||||
"path": "packs/core-armors.db",
|
||||
"type": "Item",
|
||||
"system": "l5r5e"
|
||||
},
|
||||
{
|
||||
"name": "core-weapons",
|
||||
"label": "Weapons",
|
||||
"path": "packs/core-weapons.db",
|
||||
"type": "Item",
|
||||
"system": "l5r5e"
|
||||
},
|
||||
{
|
||||
"name": "core-peculiarities-distinctions",
|
||||
"label": "Distinctions",
|
||||
"path": "packs/core-peculiarities-distinctions.db",
|
||||
"type": "Item",
|
||||
"system": "l5r5e"
|
||||
},
|
||||
{
|
||||
"name": "core-peculiarities-passions",
|
||||
"label": "Passions",
|
||||
"path": "packs/core-peculiarities-passions.db",
|
||||
"type": "Item",
|
||||
"system": "l5r5e"
|
||||
},
|
||||
{
|
||||
"name": "core-peculiarities-adversities",
|
||||
"label": "Adversities",
|
||||
"path": "packs/core-peculiarities-adversities.db",
|
||||
"type": "Item",
|
||||
"system": "l5r5e"
|
||||
},
|
||||
{
|
||||
"name": "core-peculiarities-anxieties",
|
||||
"label": "Anxieties",
|
||||
"path": "packs/core-peculiarities-anxieties.db",
|
||||
"type": "Item",
|
||||
"system": "l5r5e"
|
||||
},
|
||||
{
|
||||
"name": "core-bonds",
|
||||
"label": "Bonds",
|
||||
"path": "packs/core-bonds.db",
|
||||
"type": "Item",
|
||||
"system": "l5r5e"
|
||||
},
|
||||
{
|
||||
"name": "core-titles",
|
||||
"label": "Titles",
|
||||
"path": "packs/core-titles.db",
|
||||
"type": "Item",
|
||||
"system": "l5r5e"
|
||||
},
|
||||
{
|
||||
"name": "core-item-patterns",
|
||||
"label": "Item Patterns",
|
||||
"path": "packs/core-item-patterns.db",
|
||||
"type": "Item",
|
||||
"system": "l5r5e"
|
||||
},
|
||||
{
|
||||
"name": "core-signature-scrolls",
|
||||
"label": "Signature Scrolls",
|
||||
"path": "packs/core-signature-scrolls.db",
|
||||
"type": "Item",
|
||||
"system": "l5r5e"
|
||||
},
|
||||
{
|
||||
"name": "core-celestial-implement-boons",
|
||||
"label": "Celestial Implement Boons",
|
||||
"path": "packs/core-celestial-implement-boons.db",
|
||||
"type": "Item",
|
||||
"system": "l5r5e"
|
||||
},
|
||||
{
|
||||
"name": "core-journal-school-curriculum",
|
||||
"label": "School Curriculum",
|
||||
"path": "packs/core-journal-school-curriculum.db",
|
||||
"type": "JournalEntry",
|
||||
"system": "l5r5e"
|
||||
},
|
||||
{
|
||||
"name": "core-journal-conditions",
|
||||
"label": "Conditions",
|
||||
"path": "packs/core-journal-conditions.db",
|
||||
"type": "JournalEntry",
|
||||
"system": "l5r5e"
|
||||
},
|
||||
{
|
||||
"name": "core-journal-terrain-qualities",
|
||||
"label": "Terrain Qualities",
|
||||
"path": "packs/core-journal-terrain-qualities.db",
|
||||
"type": "JournalEntry",
|
||||
"system": "l5r5e"
|
||||
},
|
||||
{
|
||||
"name": "core-journal-great-clans-presentation",
|
||||
"label": "Great Clans Presentation",
|
||||
"path": "packs/core-journal-great-clans-presentation.db",
|
||||
"type": "JournalEntry",
|
||||
"system": "l5r5e"
|
||||
},
|
||||
{
|
||||
"name": "core-journal-opportunities",
|
||||
"label": "Opportunities",
|
||||
"path": "packs/core-journal-opportunities.db",
|
||||
"type": "JournalEntry",
|
||||
"system": "l5r5e"
|
||||
},
|
||||
{
|
||||
"name": "core-name-tables",
|
||||
"label": "Name Tables",
|
||||
"path": "packs/core-name-tables.db",
|
||||
"type": "RollTable",
|
||||
"system": "l5r5e"
|
||||
},
|
||||
{
|
||||
"name": "core-macros",
|
||||
"label": "L5R5E Macros",
|
||||
"path": "packs/core-macros.db",
|
||||
"type": "Macro",
|
||||
"system": "l5r5e"
|
||||
}
|
||||
],
|
||||
"languages": [
|
||||
{
|
||||
"lang": "en",
|
||||
"name": "English",
|
||||
"path": "lang/en-en.json"
|
||||
},
|
||||
{
|
||||
"lang": "fr",
|
||||
"name": "French (France)",
|
||||
"path": "lang/fr-fr.json"
|
||||
},
|
||||
{
|
||||
"lang": "es",
|
||||
"name": "Spanish (Spain)",
|
||||
"path": "lang/es-es.json"
|
||||
},
|
||||
{
|
||||
"lang": "it",
|
||||
"name": "Italian (Italy)",
|
||||
"path": "lang/it-it.json"
|
||||
}
|
||||
],
|
||||
"media": [
|
||||
{
|
||||
"type": "screenshot",
|
||||
"url": "https://gitlab.com/teaml5r/l5r5e/-/raw/master/screenshoots/login.jpg?raw=true",
|
||||
"caption": "Login screen"
|
||||
},
|
||||
{
|
||||
"type": "screenshot",
|
||||
"url": "https://gitlab.com/teaml5r/l5r5e/-/raw/master/screenshoots/roll.jpg?raw=true",
|
||||
"caption": "DicePicker and Roll and Keep"
|
||||
},
|
||||
{
|
||||
"type": "screenshot",
|
||||
"url": "https://gitlab.com/teaml5r/l5r5e/-/raw/master/screenshoots/school.jpg?raw=true",
|
||||
"caption": "Experience and School"
|
||||
},
|
||||
{
|
||||
"type": "screenshot",
|
||||
"url": "https://gitlab.com/teaml5r/l5r5e/-/raw/master/screenshoots/sheet_pc.jpg?raw=true",
|
||||
"caption": "PC sheet"
|
||||
},
|
||||
{
|
||||
"type": "screenshot",
|
||||
"url": "https://gitlab.com/teaml5r/l5r5e/-/raw/master/screenshoots/sheet_npc_army.jpg?raw=true",
|
||||
"caption": "NPC and Army sheets"
|
||||
},
|
||||
{
|
||||
"type": "screenshot",
|
||||
"url": "https://gitlab.com/teaml5r/l5r5e/-/raw/master/screenshoots/compendiums.jpg?raw=true",
|
||||
"caption": "Compendiums"
|
||||
}
|
||||
]
|
||||
}
|
||||
393
system/.history/system_20260423143050.json
Normal file
@@ -0,0 +1,393 @@
|
||||
{
|
||||
"id": "l5rx-chiaroscuro",
|
||||
"title": "Chiaroscuro - Legend of the Five Rings (5th Edition)",
|
||||
"description": "This is an authorised multilingual game system En|Fr|Es, for Legend of the Five Rings (5th Edition) by <a href='https://edge-studio.net/'>Edge Studio</a> <p> - Join the official Discord server: <a href='https://discord.gg/foundryvtt'> Official Discord</a></p><p> - Rejoignez la communauté Francophone: <a href='https://discord.gg/pPSDNJk'>Francophone Discord</a></p>",
|
||||
"url": "https://gitlab.com/teaml5r/l5r5e",
|
||||
"readme": "https://gitlab.com/teaml5r/l5r5e/-/blob/master/README.md",
|
||||
"changelog": "https://gitlab.com/teaml5r/l5r5e/-/blob/master/CHANGELOG.md",
|
||||
"license": "https://gitlab.com/teaml5r/l5r5e/-/blob/master/LICENSE.md",
|
||||
"manifest": "https://gitlab.com/teaml5r/l5r5e/-/raw/master/system/system.json",
|
||||
"download": "https://gitlab.com/teaml5r/l5r5e/-/jobs/artifacts/v1.13.4/raw/l5r5e.zip?job=build",
|
||||
"version": "14.0.0",
|
||||
"compatibility": {
|
||||
"minimum": "13",
|
||||
"verified": "14"
|
||||
},
|
||||
"socket": true,
|
||||
"authors": [
|
||||
{
|
||||
"name": "Vlyan",
|
||||
"discord": "Vlyan#6771",
|
||||
"url": "https://ko-fi.com/vlyan"
|
||||
},
|
||||
{
|
||||
"name": "Mandar",
|
||||
"discord": "Mandar#3440"
|
||||
},
|
||||
{
|
||||
"name": "Carter",
|
||||
"discord": "Carter#2703",
|
||||
"url": "https://fr.tipeee.com/carter-foundryvtt"
|
||||
},
|
||||
{
|
||||
"name": "Litasa",
|
||||
"discord": "Litasa#3139"
|
||||
}
|
||||
],
|
||||
"background": "systems/l5r5e/assets/l5r-header.webp",
|
||||
"scripts": [],
|
||||
"esmodules": [
|
||||
"./scripts/main-l5r5e.js"
|
||||
],
|
||||
"styles": [
|
||||
"./styles/l5r5e.css"
|
||||
],
|
||||
"packFolders": [
|
||||
{
|
||||
"name": "L5R5e System",
|
||||
"color": "#9a0909",
|
||||
"sorting": "m",
|
||||
"folders": [
|
||||
{
|
||||
"name": "Character related",
|
||||
"color": "#019806",
|
||||
"sorting": "m",
|
||||
"packs": [
|
||||
"core-peculiarities-distinctions",
|
||||
"core-peculiarities-passions",
|
||||
"core-peculiarities-adversities",
|
||||
"core-peculiarities-anxieties",
|
||||
"core-bonds",
|
||||
"core-titles",
|
||||
"core-journal-school-curriculum",
|
||||
"core-journal-great-clans-presentation"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "Techniques",
|
||||
"color": "#4b1eb3",
|
||||
"sorting": "m",
|
||||
"packs": [
|
||||
"core-techniques-kata",
|
||||
"core-techniques-kiho",
|
||||
"core-techniques-inversions",
|
||||
"core-techniques-invocations",
|
||||
"core-techniques-rituals",
|
||||
"core-techniques-shuji",
|
||||
"core-techniques-maho",
|
||||
"core-techniques-ninjutsu",
|
||||
"core-techniques-mantra",
|
||||
"core-techniques-school",
|
||||
"core-techniques-mastery"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "Objects related",
|
||||
"color": "#0985ae",
|
||||
"sorting": "m",
|
||||
"packs": [
|
||||
"core-properties",
|
||||
"core-item-patterns",
|
||||
"core-items",
|
||||
"core-armors",
|
||||
"core-weapons",
|
||||
"core-signature-scrolls",
|
||||
"core-celestial-implement-boons"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "Helpers",
|
||||
"color": "#6b3d1f",
|
||||
"sorting": "m",
|
||||
"packs": [
|
||||
"core-journal-conditions",
|
||||
"core-journal-terrain-qualities",
|
||||
"core-journal-opportunities"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "Tools",
|
||||
"color": "#834949",
|
||||
"sorting": "m",
|
||||
"packs": [
|
||||
"core-name-tables",
|
||||
"core-macros"
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
"packs": [
|
||||
{
|
||||
"name": "core-properties",
|
||||
"label": "Properties",
|
||||
"path": "packs/core-properties.db",
|
||||
"type": "Item",
|
||||
"system": "l5r5e"
|
||||
},
|
||||
{
|
||||
"name": "core-techniques-kata",
|
||||
"label": "Techniques Kata",
|
||||
"path": "packs/core-techniques-kata.db",
|
||||
"type": "Item",
|
||||
"system": "l5r5e"
|
||||
},
|
||||
{
|
||||
"name": "core-techniques-kiho",
|
||||
"label": "Techniques Kihõ",
|
||||
"path": "packs/core-techniques-kiho.db",
|
||||
"type": "Item",
|
||||
"system": "l5r5e"
|
||||
},
|
||||
{
|
||||
"name": "core-techniques-inversions",
|
||||
"label": "Techniques Inversions",
|
||||
"path": "packs/core-techniques-inversions.db",
|
||||
"type": "Item",
|
||||
"system": "l5r5e"
|
||||
},
|
||||
{
|
||||
"name": "core-techniques-invocations",
|
||||
"label": "Techniques Invocations",
|
||||
"path": "packs/core-techniques-invocations.db",
|
||||
"type": "Item",
|
||||
"system": "l5r5e"
|
||||
},
|
||||
{
|
||||
"name": "core-techniques-rituals",
|
||||
"label": "Techniques Rituals",
|
||||
"path": "packs/core-techniques-rituals.db",
|
||||
"type": "Item",
|
||||
"system": "l5r5e"
|
||||
},
|
||||
{
|
||||
"name": "core-techniques-shuji",
|
||||
"label": "Techniques Shuji",
|
||||
"path": "packs/core-techniques-shuji.db",
|
||||
"type": "Item",
|
||||
"system": "l5r5e"
|
||||
},
|
||||
{
|
||||
"name": "core-techniques-maho",
|
||||
"label": "Techniques Mahõ",
|
||||
"path": "packs/core-techniques-maho.db",
|
||||
"type": "Item",
|
||||
"system": "l5r5e"
|
||||
},
|
||||
{
|
||||
"name": "core-techniques-ninjutsu",
|
||||
"label": "Techniques Ninjutsu",
|
||||
"path": "packs/core-techniques-ninjutsu.db",
|
||||
"type": "Item",
|
||||
"system": "l5r5e"
|
||||
},
|
||||
{
|
||||
"name": "core-techniques-mantra",
|
||||
"label": "Techniques Mantra",
|
||||
"path": "packs/core-techniques-mantra.db",
|
||||
"type": "Item",
|
||||
"system": "l5r5e"
|
||||
},
|
||||
{
|
||||
"name": "core-techniques-school",
|
||||
"label": "School Abilities",
|
||||
"path": "packs/core-techniques-school.db",
|
||||
"type": "Item",
|
||||
"system": "l5r5e"
|
||||
},
|
||||
{
|
||||
"name": "core-techniques-mastery",
|
||||
"label": "Mastery Abilities",
|
||||
"path": "packs/core-techniques-mastery.db",
|
||||
"type": "Item",
|
||||
"system": "l5r5e"
|
||||
},
|
||||
{
|
||||
"name": "core-items",
|
||||
"label": "Items",
|
||||
"path": "packs/core-items.db",
|
||||
"type": "Item",
|
||||
"system": "l5r5e"
|
||||
},
|
||||
{
|
||||
"name": "core-armors",
|
||||
"label": "Armors",
|
||||
"path": "packs/core-armors.db",
|
||||
"type": "Item",
|
||||
"system": "l5r5e"
|
||||
},
|
||||
{
|
||||
"name": "core-weapons",
|
||||
"label": "Weapons",
|
||||
"path": "packs/core-weapons.db",
|
||||
"type": "Item",
|
||||
"system": "l5r5e"
|
||||
},
|
||||
{
|
||||
"name": "core-peculiarities-distinctions",
|
||||
"label": "Distinctions",
|
||||
"path": "packs/core-peculiarities-distinctions.db",
|
||||
"type": "Item",
|
||||
"system": "l5r5e"
|
||||
},
|
||||
{
|
||||
"name": "core-peculiarities-passions",
|
||||
"label": "Passions",
|
||||
"path": "packs/core-peculiarities-passions.db",
|
||||
"type": "Item",
|
||||
"system": "l5r5e"
|
||||
},
|
||||
{
|
||||
"name": "core-peculiarities-adversities",
|
||||
"label": "Adversities",
|
||||
"path": "packs/core-peculiarities-adversities.db",
|
||||
"type": "Item",
|
||||
"system": "l5r5e"
|
||||
},
|
||||
{
|
||||
"name": "core-peculiarities-anxieties",
|
||||
"label": "Anxieties",
|
||||
"path": "packs/core-peculiarities-anxieties.db",
|
||||
"type": "Item",
|
||||
"system": "l5r5e"
|
||||
},
|
||||
{
|
||||
"name": "core-bonds",
|
||||
"label": "Bonds",
|
||||
"path": "packs/core-bonds.db",
|
||||
"type": "Item",
|
||||
"system": "l5r5e"
|
||||
},
|
||||
{
|
||||
"name": "core-titles",
|
||||
"label": "Titles",
|
||||
"path": "packs/core-titles.db",
|
||||
"type": "Item",
|
||||
"system": "l5r5e"
|
||||
},
|
||||
{
|
||||
"name": "core-item-patterns",
|
||||
"label": "Item Patterns",
|
||||
"path": "packs/core-item-patterns.db",
|
||||
"type": "Item",
|
||||
"system": "l5r5e"
|
||||
},
|
||||
{
|
||||
"name": "core-signature-scrolls",
|
||||
"label": "Signature Scrolls",
|
||||
"path": "packs/core-signature-scrolls.db",
|
||||
"type": "Item",
|
||||
"system": "l5r5e"
|
||||
},
|
||||
{
|
||||
"name": "core-celestial-implement-boons",
|
||||
"label": "Celestial Implement Boons",
|
||||
"path": "packs/core-celestial-implement-boons.db",
|
||||
"type": "Item",
|
||||
"system": "l5r5e"
|
||||
},
|
||||
{
|
||||
"name": "core-journal-school-curriculum",
|
||||
"label": "School Curriculum",
|
||||
"path": "packs/core-journal-school-curriculum.db",
|
||||
"type": "JournalEntry",
|
||||
"system": "l5r5e"
|
||||
},
|
||||
{
|
||||
"name": "core-journal-conditions",
|
||||
"label": "Conditions",
|
||||
"path": "packs/core-journal-conditions.db",
|
||||
"type": "JournalEntry",
|
||||
"system": "l5r5e"
|
||||
},
|
||||
{
|
||||
"name": "core-journal-terrain-qualities",
|
||||
"label": "Terrain Qualities",
|
||||
"path": "packs/core-journal-terrain-qualities.db",
|
||||
"type": "JournalEntry",
|
||||
"system": "l5r5e"
|
||||
},
|
||||
{
|
||||
"name": "core-journal-great-clans-presentation",
|
||||
"label": "Great Clans Presentation",
|
||||
"path": "packs/core-journal-great-clans-presentation.db",
|
||||
"type": "JournalEntry",
|
||||
"system": "l5r5e"
|
||||
},
|
||||
{
|
||||
"name": "core-journal-opportunities",
|
||||
"label": "Opportunities",
|
||||
"path": "packs/core-journal-opportunities.db",
|
||||
"type": "JournalEntry",
|
||||
"system": "l5r5e"
|
||||
},
|
||||
{
|
||||
"name": "core-name-tables",
|
||||
"label": "Name Tables",
|
||||
"path": "packs/core-name-tables.db",
|
||||
"type": "RollTable",
|
||||
"system": "l5r5e"
|
||||
},
|
||||
{
|
||||
"name": "core-macros",
|
||||
"label": "L5R5E Macros",
|
||||
"path": "packs/core-macros.db",
|
||||
"type": "Macro",
|
||||
"system": "l5r5e"
|
||||
}
|
||||
],
|
||||
"languages": [
|
||||
{
|
||||
"lang": "en",
|
||||
"name": "English",
|
||||
"path": "lang/en-en.json"
|
||||
},
|
||||
{
|
||||
"lang": "fr",
|
||||
"name": "French (France)",
|
||||
"path": "lang/fr-fr.json"
|
||||
},
|
||||
{
|
||||
"lang": "es",
|
||||
"name": "Spanish (Spain)",
|
||||
"path": "lang/es-es.json"
|
||||
},
|
||||
{
|
||||
"lang": "it",
|
||||
"name": "Italian (Italy)",
|
||||
"path": "lang/it-it.json"
|
||||
}
|
||||
],
|
||||
"media": [
|
||||
{
|
||||
"type": "screenshot",
|
||||
"url": "https://gitlab.com/teaml5r/l5r5e/-/raw/master/screenshoots/login.jpg?raw=true",
|
||||
"caption": "Login screen"
|
||||
},
|
||||
{
|
||||
"type": "screenshot",
|
||||
"url": "https://gitlab.com/teaml5r/l5r5e/-/raw/master/screenshoots/roll.jpg?raw=true",
|
||||
"caption": "DicePicker and Roll and Keep"
|
||||
},
|
||||
{
|
||||
"type": "screenshot",
|
||||
"url": "https://gitlab.com/teaml5r/l5r5e/-/raw/master/screenshoots/school.jpg?raw=true",
|
||||
"caption": "Experience and School"
|
||||
},
|
||||
{
|
||||
"type": "screenshot",
|
||||
"url": "https://gitlab.com/teaml5r/l5r5e/-/raw/master/screenshoots/sheet_pc.jpg?raw=true",
|
||||
"caption": "PC sheet"
|
||||
},
|
||||
{
|
||||
"type": "screenshot",
|
||||
"url": "https://gitlab.com/teaml5r/l5r5e/-/raw/master/screenshoots/sheet_npc_army.jpg?raw=true",
|
||||
"caption": "NPC and Army sheets"
|
||||
},
|
||||
{
|
||||
"type": "screenshot",
|
||||
"url": "https://gitlab.com/teaml5r/l5r5e/-/raw/master/screenshoots/compendiums.jpg?raw=true",
|
||||
"caption": "Compendiums"
|
||||
}
|
||||
]
|
||||
}
|
||||
393
system/.history/system_20260423143055.json
Normal file
@@ -0,0 +1,393 @@
|
||||
{
|
||||
"id": "l5rx-chiaroscuro",
|
||||
"title": "Chiaroscuro - L5R",
|
||||
"description": "This is an authorised multilingual game system En|Fr|Es, for Legend of the Five Rings (5th Edition) by <a href='https://edge-studio.net/'>Edge Studio</a> <p> - Join the official Discord server: <a href='https://discord.gg/foundryvtt'> Official Discord</a></p><p> - Rejoignez la communauté Francophone: <a href='https://discord.gg/pPSDNJk'>Francophone Discord</a></p>",
|
||||
"url": "https://gitlab.com/teaml5r/l5r5e",
|
||||
"readme": "https://gitlab.com/teaml5r/l5r5e/-/blob/master/README.md",
|
||||
"changelog": "https://gitlab.com/teaml5r/l5r5e/-/blob/master/CHANGELOG.md",
|
||||
"license": "https://gitlab.com/teaml5r/l5r5e/-/blob/master/LICENSE.md",
|
||||
"manifest": "https://gitlab.com/teaml5r/l5r5e/-/raw/master/system/system.json",
|
||||
"download": "https://gitlab.com/teaml5r/l5r5e/-/jobs/artifacts/v1.13.4/raw/l5r5e.zip?job=build",
|
||||
"version": "14.0.0",
|
||||
"compatibility": {
|
||||
"minimum": "13",
|
||||
"verified": "14"
|
||||
},
|
||||
"socket": true,
|
||||
"authors": [
|
||||
{
|
||||
"name": "Vlyan",
|
||||
"discord": "Vlyan#6771",
|
||||
"url": "https://ko-fi.com/vlyan"
|
||||
},
|
||||
{
|
||||
"name": "Mandar",
|
||||
"discord": "Mandar#3440"
|
||||
},
|
||||
{
|
||||
"name": "Carter",
|
||||
"discord": "Carter#2703",
|
||||
"url": "https://fr.tipeee.com/carter-foundryvtt"
|
||||
},
|
||||
{
|
||||
"name": "Litasa",
|
||||
"discord": "Litasa#3139"
|
||||
}
|
||||
],
|
||||
"background": "systems/l5r5e/assets/l5r-header.webp",
|
||||
"scripts": [],
|
||||
"esmodules": [
|
||||
"./scripts/main-l5r5e.js"
|
||||
],
|
||||
"styles": [
|
||||
"./styles/l5r5e.css"
|
||||
],
|
||||
"packFolders": [
|
||||
{
|
||||
"name": "L5R5e System",
|
||||
"color": "#9a0909",
|
||||
"sorting": "m",
|
||||
"folders": [
|
||||
{
|
||||
"name": "Character related",
|
||||
"color": "#019806",
|
||||
"sorting": "m",
|
||||
"packs": [
|
||||
"core-peculiarities-distinctions",
|
||||
"core-peculiarities-passions",
|
||||
"core-peculiarities-adversities",
|
||||
"core-peculiarities-anxieties",
|
||||
"core-bonds",
|
||||
"core-titles",
|
||||
"core-journal-school-curriculum",
|
||||
"core-journal-great-clans-presentation"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "Techniques",
|
||||
"color": "#4b1eb3",
|
||||
"sorting": "m",
|
||||
"packs": [
|
||||
"core-techniques-kata",
|
||||
"core-techniques-kiho",
|
||||
"core-techniques-inversions",
|
||||
"core-techniques-invocations",
|
||||
"core-techniques-rituals",
|
||||
"core-techniques-shuji",
|
||||
"core-techniques-maho",
|
||||
"core-techniques-ninjutsu",
|
||||
"core-techniques-mantra",
|
||||
"core-techniques-school",
|
||||
"core-techniques-mastery"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "Objects related",
|
||||
"color": "#0985ae",
|
||||
"sorting": "m",
|
||||
"packs": [
|
||||
"core-properties",
|
||||
"core-item-patterns",
|
||||
"core-items",
|
||||
"core-armors",
|
||||
"core-weapons",
|
||||
"core-signature-scrolls",
|
||||
"core-celestial-implement-boons"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "Helpers",
|
||||
"color": "#6b3d1f",
|
||||
"sorting": "m",
|
||||
"packs": [
|
||||
"core-journal-conditions",
|
||||
"core-journal-terrain-qualities",
|
||||
"core-journal-opportunities"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "Tools",
|
||||
"color": "#834949",
|
||||
"sorting": "m",
|
||||
"packs": [
|
||||
"core-name-tables",
|
||||
"core-macros"
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
"packs": [
|
||||
{
|
||||
"name": "core-properties",
|
||||
"label": "Properties",
|
||||
"path": "packs/core-properties.db",
|
||||
"type": "Item",
|
||||
"system": "l5r5e"
|
||||
},
|
||||
{
|
||||
"name": "core-techniques-kata",
|
||||
"label": "Techniques Kata",
|
||||
"path": "packs/core-techniques-kata.db",
|
||||
"type": "Item",
|
||||
"system": "l5r5e"
|
||||
},
|
||||
{
|
||||
"name": "core-techniques-kiho",
|
||||
"label": "Techniques Kihõ",
|
||||
"path": "packs/core-techniques-kiho.db",
|
||||
"type": "Item",
|
||||
"system": "l5r5e"
|
||||
},
|
||||
{
|
||||
"name": "core-techniques-inversions",
|
||||
"label": "Techniques Inversions",
|
||||
"path": "packs/core-techniques-inversions.db",
|
||||
"type": "Item",
|
||||
"system": "l5r5e"
|
||||
},
|
||||
{
|
||||
"name": "core-techniques-invocations",
|
||||
"label": "Techniques Invocations",
|
||||
"path": "packs/core-techniques-invocations.db",
|
||||
"type": "Item",
|
||||
"system": "l5r5e"
|
||||
},
|
||||
{
|
||||
"name": "core-techniques-rituals",
|
||||
"label": "Techniques Rituals",
|
||||
"path": "packs/core-techniques-rituals.db",
|
||||
"type": "Item",
|
||||
"system": "l5r5e"
|
||||
},
|
||||
{
|
||||
"name": "core-techniques-shuji",
|
||||
"label": "Techniques Shuji",
|
||||
"path": "packs/core-techniques-shuji.db",
|
||||
"type": "Item",
|
||||
"system": "l5r5e"
|
||||
},
|
||||
{
|
||||
"name": "core-techniques-maho",
|
||||
"label": "Techniques Mahõ",
|
||||
"path": "packs/core-techniques-maho.db",
|
||||
"type": "Item",
|
||||
"system": "l5r5e"
|
||||
},
|
||||
{
|
||||
"name": "core-techniques-ninjutsu",
|
||||
"label": "Techniques Ninjutsu",
|
||||
"path": "packs/core-techniques-ninjutsu.db",
|
||||
"type": "Item",
|
||||
"system": "l5r5e"
|
||||
},
|
||||
{
|
||||
"name": "core-techniques-mantra",
|
||||
"label": "Techniques Mantra",
|
||||
"path": "packs/core-techniques-mantra.db",
|
||||
"type": "Item",
|
||||
"system": "l5r5e"
|
||||
},
|
||||
{
|
||||
"name": "core-techniques-school",
|
||||
"label": "School Abilities",
|
||||
"path": "packs/core-techniques-school.db",
|
||||
"type": "Item",
|
||||
"system": "l5r5e"
|
||||
},
|
||||
{
|
||||
"name": "core-techniques-mastery",
|
||||
"label": "Mastery Abilities",
|
||||
"path": "packs/core-techniques-mastery.db",
|
||||
"type": "Item",
|
||||
"system": "l5r5e"
|
||||
},
|
||||
{
|
||||
"name": "core-items",
|
||||
"label": "Items",
|
||||
"path": "packs/core-items.db",
|
||||
"type": "Item",
|
||||
"system": "l5r5e"
|
||||
},
|
||||
{
|
||||
"name": "core-armors",
|
||||
"label": "Armors",
|
||||
"path": "packs/core-armors.db",
|
||||
"type": "Item",
|
||||
"system": "l5r5e"
|
||||
},
|
||||
{
|
||||
"name": "core-weapons",
|
||||
"label": "Weapons",
|
||||
"path": "packs/core-weapons.db",
|
||||
"type": "Item",
|
||||
"system": "l5r5e"
|
||||
},
|
||||
{
|
||||
"name": "core-peculiarities-distinctions",
|
||||
"label": "Distinctions",
|
||||
"path": "packs/core-peculiarities-distinctions.db",
|
||||
"type": "Item",
|
||||
"system": "l5r5e"
|
||||
},
|
||||
{
|
||||
"name": "core-peculiarities-passions",
|
||||
"label": "Passions",
|
||||
"path": "packs/core-peculiarities-passions.db",
|
||||
"type": "Item",
|
||||
"system": "l5r5e"
|
||||
},
|
||||
{
|
||||
"name": "core-peculiarities-adversities",
|
||||
"label": "Adversities",
|
||||
"path": "packs/core-peculiarities-adversities.db",
|
||||
"type": "Item",
|
||||
"system": "l5r5e"
|
||||
},
|
||||
{
|
||||
"name": "core-peculiarities-anxieties",
|
||||
"label": "Anxieties",
|
||||
"path": "packs/core-peculiarities-anxieties.db",
|
||||
"type": "Item",
|
||||
"system": "l5r5e"
|
||||
},
|
||||
{
|
||||
"name": "core-bonds",
|
||||
"label": "Bonds",
|
||||
"path": "packs/core-bonds.db",
|
||||
"type": "Item",
|
||||
"system": "l5r5e"
|
||||
},
|
||||
{
|
||||
"name": "core-titles",
|
||||
"label": "Titles",
|
||||
"path": "packs/core-titles.db",
|
||||
"type": "Item",
|
||||
"system": "l5r5e"
|
||||
},
|
||||
{
|
||||
"name": "core-item-patterns",
|
||||
"label": "Item Patterns",
|
||||
"path": "packs/core-item-patterns.db",
|
||||
"type": "Item",
|
||||
"system": "l5r5e"
|
||||
},
|
||||
{
|
||||
"name": "core-signature-scrolls",
|
||||
"label": "Signature Scrolls",
|
||||
"path": "packs/core-signature-scrolls.db",
|
||||
"type": "Item",
|
||||
"system": "l5r5e"
|
||||
},
|
||||
{
|
||||
"name": "core-celestial-implement-boons",
|
||||
"label": "Celestial Implement Boons",
|
||||
"path": "packs/core-celestial-implement-boons.db",
|
||||
"type": "Item",
|
||||
"system": "l5r5e"
|
||||
},
|
||||
{
|
||||
"name": "core-journal-school-curriculum",
|
||||
"label": "School Curriculum",
|
||||
"path": "packs/core-journal-school-curriculum.db",
|
||||
"type": "JournalEntry",
|
||||
"system": "l5r5e"
|
||||
},
|
||||
{
|
||||
"name": "core-journal-conditions",
|
||||
"label": "Conditions",
|
||||
"path": "packs/core-journal-conditions.db",
|
||||
"type": "JournalEntry",
|
||||
"system": "l5r5e"
|
||||
},
|
||||
{
|
||||
"name": "core-journal-terrain-qualities",
|
||||
"label": "Terrain Qualities",
|
||||
"path": "packs/core-journal-terrain-qualities.db",
|
||||
"type": "JournalEntry",
|
||||
"system": "l5r5e"
|
||||
},
|
||||
{
|
||||
"name": "core-journal-great-clans-presentation",
|
||||
"label": "Great Clans Presentation",
|
||||
"path": "packs/core-journal-great-clans-presentation.db",
|
||||
"type": "JournalEntry",
|
||||
"system": "l5r5e"
|
||||
},
|
||||
{
|
||||
"name": "core-journal-opportunities",
|
||||
"label": "Opportunities",
|
||||
"path": "packs/core-journal-opportunities.db",
|
||||
"type": "JournalEntry",
|
||||
"system": "l5r5e"
|
||||
},
|
||||
{
|
||||
"name": "core-name-tables",
|
||||
"label": "Name Tables",
|
||||
"path": "packs/core-name-tables.db",
|
||||
"type": "RollTable",
|
||||
"system": "l5r5e"
|
||||
},
|
||||
{
|
||||
"name": "core-macros",
|
||||
"label": "L5R5E Macros",
|
||||
"path": "packs/core-macros.db",
|
||||
"type": "Macro",
|
||||
"system": "l5r5e"
|
||||
}
|
||||
],
|
||||
"languages": [
|
||||
{
|
||||
"lang": "en",
|
||||
"name": "English",
|
||||
"path": "lang/en-en.json"
|
||||
},
|
||||
{
|
||||
"lang": "fr",
|
||||
"name": "French (France)",
|
||||
"path": "lang/fr-fr.json"
|
||||
},
|
||||
{
|
||||
"lang": "es",
|
||||
"name": "Spanish (Spain)",
|
||||
"path": "lang/es-es.json"
|
||||
},
|
||||
{
|
||||
"lang": "it",
|
||||
"name": "Italian (Italy)",
|
||||
"path": "lang/it-it.json"
|
||||
}
|
||||
],
|
||||
"media": [
|
||||
{
|
||||
"type": "screenshot",
|
||||
"url": "https://gitlab.com/teaml5r/l5r5e/-/raw/master/screenshoots/login.jpg?raw=true",
|
||||
"caption": "Login screen"
|
||||
},
|
||||
{
|
||||
"type": "screenshot",
|
||||
"url": "https://gitlab.com/teaml5r/l5r5e/-/raw/master/screenshoots/roll.jpg?raw=true",
|
||||
"caption": "DicePicker and Roll and Keep"
|
||||
},
|
||||
{
|
||||
"type": "screenshot",
|
||||
"url": "https://gitlab.com/teaml5r/l5r5e/-/raw/master/screenshoots/school.jpg?raw=true",
|
||||
"caption": "Experience and School"
|
||||
},
|
||||
{
|
||||
"type": "screenshot",
|
||||
"url": "https://gitlab.com/teaml5r/l5r5e/-/raw/master/screenshoots/sheet_pc.jpg?raw=true",
|
||||
"caption": "PC sheet"
|
||||
},
|
||||
{
|
||||
"type": "screenshot",
|
||||
"url": "https://gitlab.com/teaml5r/l5r5e/-/raw/master/screenshoots/sheet_npc_army.jpg?raw=true",
|
||||
"caption": "NPC and Army sheets"
|
||||
},
|
||||
{
|
||||
"type": "screenshot",
|
||||
"url": "https://gitlab.com/teaml5r/l5r5e/-/raw/master/screenshoots/compendiums.jpg?raw=true",
|
||||
"caption": "Compendiums"
|
||||
}
|
||||
]
|
||||
}
|
||||
393
system/.history/system_20260423143056.json
Normal file
@@ -0,0 +1,393 @@
|
||||
{
|
||||
"id": "l5rx-chiaroscuro",
|
||||
"title": "Chiaroscuro - L5R",
|
||||
"description": "This is an authorised multilingual game system En|Fr|Es, for Legend of the Five Rings (5th Edition) by <a href='https://edge-studio.net/'>Edge Studio</a> <p> - Join the official Discord server: <a href='https://discord.gg/foundryvtt'> Official Discord</a></p><p> - Rejoignez la communauté Francophone: <a href='https://discord.gg/pPSDNJk'>Francophone Discord</a></p>",
|
||||
"url": "https://gitlab.com/teaml5r/l5r5e",
|
||||
"readme": "https://gitlab.com/teaml5r/l5r5e/-/blob/master/README.md",
|
||||
"changelog": "https://gitlab.com/teaml5r/l5r5e/-/blob/master/CHANGELOG.md",
|
||||
"license": "https://gitlab.com/teaml5r/l5r5e/-/blob/master/LICENSE.md",
|
||||
"manifest": "https://gitlab.com/teaml5r/l5r5e/-/raw/master/system/system.json",
|
||||
"download": "https://gitlab.com/teaml5r/l5r5e/-/jobs/artifacts/v1.13.4/raw/l5r5e.zip?job=build",
|
||||
"version": "14.0.0",
|
||||
"compatibility": {
|
||||
"minimum": "13",
|
||||
"verified": "14"
|
||||
},
|
||||
"socket": true,
|
||||
"authors": [
|
||||
{
|
||||
"name": "Vlyan",
|
||||
"discord": "Vlyan#6771",
|
||||
"url": "https://ko-fi.com/vlyan"
|
||||
},
|
||||
{
|
||||
"name": "Mandar",
|
||||
"discord": "Mandar#3440"
|
||||
},
|
||||
{
|
||||
"name": "Carter",
|
||||
"discord": "Carter#2703",
|
||||
"url": "https://fr.tipeee.com/carter-foundryvtt"
|
||||
},
|
||||
{
|
||||
"name": "Litasa",
|
||||
"discord": "Litasa#3139"
|
||||
}
|
||||
],
|
||||
"background": "systems/l5r5e/assets/l5r-header.webp",
|
||||
"scripts": [],
|
||||
"esmodules": [
|
||||
"./scripts/main-l5r5e.js"
|
||||
],
|
||||
"styles": [
|
||||
"./styles/l5r5e.css"
|
||||
],
|
||||
"packFolders": [
|
||||
{
|
||||
"name": "L5R5e System",
|
||||
"color": "#9a0909",
|
||||
"sorting": "m",
|
||||
"folders": [
|
||||
{
|
||||
"name": "Character related",
|
||||
"color": "#019806",
|
||||
"sorting": "m",
|
||||
"packs": [
|
||||
"core-peculiarities-distinctions",
|
||||
"core-peculiarities-passions",
|
||||
"core-peculiarities-adversities",
|
||||
"core-peculiarities-anxieties",
|
||||
"core-bonds",
|
||||
"core-titles",
|
||||
"core-journal-school-curriculum",
|
||||
"core-journal-great-clans-presentation"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "Techniques",
|
||||
"color": "#4b1eb3",
|
||||
"sorting": "m",
|
||||
"packs": [
|
||||
"core-techniques-kata",
|
||||
"core-techniques-kiho",
|
||||
"core-techniques-inversions",
|
||||
"core-techniques-invocations",
|
||||
"core-techniques-rituals",
|
||||
"core-techniques-shuji",
|
||||
"core-techniques-maho",
|
||||
"core-techniques-ninjutsu",
|
||||
"core-techniques-mantra",
|
||||
"core-techniques-school",
|
||||
"core-techniques-mastery"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "Objects related",
|
||||
"color": "#0985ae",
|
||||
"sorting": "m",
|
||||
"packs": [
|
||||
"core-properties",
|
||||
"core-item-patterns",
|
||||
"core-items",
|
||||
"core-armors",
|
||||
"core-weapons",
|
||||
"core-signature-scrolls",
|
||||
"core-celestial-implement-boons"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "Helpers",
|
||||
"color": "#6b3d1f",
|
||||
"sorting": "m",
|
||||
"packs": [
|
||||
"core-journal-conditions",
|
||||
"core-journal-terrain-qualities",
|
||||
"core-journal-opportunities"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "Tools",
|
||||
"color": "#834949",
|
||||
"sorting": "m",
|
||||
"packs": [
|
||||
"core-name-tables",
|
||||
"core-macros"
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
"packs": [
|
||||
{
|
||||
"name": "core-properties",
|
||||
"label": "Properties",
|
||||
"path": "packs/core-properties.db",
|
||||
"type": "Item",
|
||||
"system": "l5r5e"
|
||||
},
|
||||
{
|
||||
"name": "core-techniques-kata",
|
||||
"label": "Techniques Kata",
|
||||
"path": "packs/core-techniques-kata.db",
|
||||
"type": "Item",
|
||||
"system": "l5r5e"
|
||||
},
|
||||
{
|
||||
"name": "core-techniques-kiho",
|
||||
"label": "Techniques Kihõ",
|
||||
"path": "packs/core-techniques-kiho.db",
|
||||
"type": "Item",
|
||||
"system": "l5r5e"
|
||||
},
|
||||
{
|
||||
"name": "core-techniques-inversions",
|
||||
"label": "Techniques Inversions",
|
||||
"path": "packs/core-techniques-inversions.db",
|
||||
"type": "Item",
|
||||
"system": "l5r5e"
|
||||
},
|
||||
{
|
||||
"name": "core-techniques-invocations",
|
||||
"label": "Techniques Invocations",
|
||||
"path": "packs/core-techniques-invocations.db",
|
||||
"type": "Item",
|
||||
"system": "l5r5e"
|
||||
},
|
||||
{
|
||||
"name": "core-techniques-rituals",
|
||||
"label": "Techniques Rituals",
|
||||
"path": "packs/core-techniques-rituals.db",
|
||||
"type": "Item",
|
||||
"system": "l5r5e"
|
||||
},
|
||||
{
|
||||
"name": "core-techniques-shuji",
|
||||
"label": "Techniques Shuji",
|
||||
"path": "packs/core-techniques-shuji.db",
|
||||
"type": "Item",
|
||||
"system": "l5r5e"
|
||||
},
|
||||
{
|
||||
"name": "core-techniques-maho",
|
||||
"label": "Techniques Mahõ",
|
||||
"path": "packs/core-techniques-maho.db",
|
||||
"type": "Item",
|
||||
"system": "l5r5e"
|
||||
},
|
||||
{
|
||||
"name": "core-techniques-ninjutsu",
|
||||
"label": "Techniques Ninjutsu",
|
||||
"path": "packs/core-techniques-ninjutsu.db",
|
||||
"type": "Item",
|
||||
"system": "l5r5e"
|
||||
},
|
||||
{
|
||||
"name": "core-techniques-mantra",
|
||||
"label": "Techniques Mantra",
|
||||
"path": "packs/core-techniques-mantra.db",
|
||||
"type": "Item",
|
||||
"system": "l5r5e"
|
||||
},
|
||||
{
|
||||
"name": "core-techniques-school",
|
||||
"label": "School Abilities",
|
||||
"path": "packs/core-techniques-school.db",
|
||||
"type": "Item",
|
||||
"system": "l5r5e"
|
||||
},
|
||||
{
|
||||
"name": "core-techniques-mastery",
|
||||
"label": "Mastery Abilities",
|
||||
"path": "packs/core-techniques-mastery.db",
|
||||
"type": "Item",
|
||||
"system": "l5r5e"
|
||||
},
|
||||
{
|
||||
"name": "core-items",
|
||||
"label": "Items",
|
||||
"path": "packs/core-items.db",
|
||||
"type": "Item",
|
||||
"system": "l5r5e"
|
||||
},
|
||||
{
|
||||
"name": "core-armors",
|
||||
"label": "Armors",
|
||||
"path": "packs/core-armors.db",
|
||||
"type": "Item",
|
||||
"system": "l5r5e"
|
||||
},
|
||||
{
|
||||
"name": "core-weapons",
|
||||
"label": "Weapons",
|
||||
"path": "packs/core-weapons.db",
|
||||
"type": "Item",
|
||||
"system": "l5r5e"
|
||||
},
|
||||
{
|
||||
"name": "core-peculiarities-distinctions",
|
||||
"label": "Distinctions",
|
||||
"path": "packs/core-peculiarities-distinctions.db",
|
||||
"type": "Item",
|
||||
"system": "l5r5e"
|
||||
},
|
||||
{
|
||||
"name": "core-peculiarities-passions",
|
||||
"label": "Passions",
|
||||
"path": "packs/core-peculiarities-passions.db",
|
||||
"type": "Item",
|
||||
"system": "l5r5e"
|
||||
},
|
||||
{
|
||||
"name": "core-peculiarities-adversities",
|
||||
"label": "Adversities",
|
||||
"path": "packs/core-peculiarities-adversities.db",
|
||||
"type": "Item",
|
||||
"system": "l5r5e"
|
||||
},
|
||||
{
|
||||
"name": "core-peculiarities-anxieties",
|
||||
"label": "Anxieties",
|
||||
"path": "packs/core-peculiarities-anxieties.db",
|
||||
"type": "Item",
|
||||
"system": "l5r5e"
|
||||
},
|
||||
{
|
||||
"name": "core-bonds",
|
||||
"label": "Bonds",
|
||||
"path": "packs/core-bonds.db",
|
||||
"type": "Item",
|
||||
"system": "l5r5e"
|
||||
},
|
||||
{
|
||||
"name": "core-titles",
|
||||
"label": "Titles",
|
||||
"path": "packs/core-titles.db",
|
||||
"type": "Item",
|
||||
"system": "l5r5e"
|
||||
},
|
||||
{
|
||||
"name": "core-item-patterns",
|
||||
"label": "Item Patterns",
|
||||
"path": "packs/core-item-patterns.db",
|
||||
"type": "Item",
|
||||
"system": "l5r5e"
|
||||
},
|
||||
{
|
||||
"name": "core-signature-scrolls",
|
||||
"label": "Signature Scrolls",
|
||||
"path": "packs/core-signature-scrolls.db",
|
||||
"type": "Item",
|
||||
"system": "l5r5e"
|
||||
},
|
||||
{
|
||||
"name": "core-celestial-implement-boons",
|
||||
"label": "Celestial Implement Boons",
|
||||
"path": "packs/core-celestial-implement-boons.db",
|
||||
"type": "Item",
|
||||
"system": "l5r5e"
|
||||
},
|
||||
{
|
||||
"name": "core-journal-school-curriculum",
|
||||
"label": "School Curriculum",
|
||||
"path": "packs/core-journal-school-curriculum.db",
|
||||
"type": "JournalEntry",
|
||||
"system": "l5r5e"
|
||||
},
|
||||
{
|
||||
"name": "core-journal-conditions",
|
||||
"label": "Conditions",
|
||||
"path": "packs/core-journal-conditions.db",
|
||||
"type": "JournalEntry",
|
||||
"system": "l5r5e"
|
||||
},
|
||||
{
|
||||
"name": "core-journal-terrain-qualities",
|
||||
"label": "Terrain Qualities",
|
||||
"path": "packs/core-journal-terrain-qualities.db",
|
||||
"type": "JournalEntry",
|
||||
"system": "l5r5e"
|
||||
},
|
||||
{
|
||||
"name": "core-journal-great-clans-presentation",
|
||||
"label": "Great Clans Presentation",
|
||||
"path": "packs/core-journal-great-clans-presentation.db",
|
||||
"type": "JournalEntry",
|
||||
"system": "l5r5e"
|
||||
},
|
||||
{
|
||||
"name": "core-journal-opportunities",
|
||||
"label": "Opportunities",
|
||||
"path": "packs/core-journal-opportunities.db",
|
||||
"type": "JournalEntry",
|
||||
"system": "l5r5e"
|
||||
},
|
||||
{
|
||||
"name": "core-name-tables",
|
||||
"label": "Name Tables",
|
||||
"path": "packs/core-name-tables.db",
|
||||
"type": "RollTable",
|
||||
"system": "l5r5e"
|
||||
},
|
||||
{
|
||||
"name": "core-macros",
|
||||
"label": "L5R5E Macros",
|
||||
"path": "packs/core-macros.db",
|
||||
"type": "Macro",
|
||||
"system": "l5r5e"
|
||||
}
|
||||
],
|
||||
"languages": [
|
||||
{
|
||||
"lang": "en",
|
||||
"name": "English",
|
||||
"path": "lang/en-en.json"
|
||||
},
|
||||
{
|
||||
"lang": "fr",
|
||||
"name": "French (France)",
|
||||
"path": "lang/fr-fr.json"
|
||||
},
|
||||
{
|
||||
"lang": "es",
|
||||
"name": "Spanish (Spain)",
|
||||
"path": "lang/es-es.json"
|
||||
},
|
||||
{
|
||||
"lang": "it",
|
||||
"name": "Italian (Italy)",
|
||||
"path": "lang/it-it.json"
|
||||
}
|
||||
],
|
||||
"media": [
|
||||
{
|
||||
"type": "screenshot",
|
||||
"url": "https://gitlab.com/teaml5r/l5r5e/-/raw/master/screenshoots/login.jpg?raw=true",
|
||||
"caption": "Login screen"
|
||||
},
|
||||
{
|
||||
"type": "screenshot",
|
||||
"url": "https://gitlab.com/teaml5r/l5r5e/-/raw/master/screenshoots/roll.jpg?raw=true",
|
||||
"caption": "DicePicker and Roll and Keep"
|
||||
},
|
||||
{
|
||||
"type": "screenshot",
|
||||
"url": "https://gitlab.com/teaml5r/l5r5e/-/raw/master/screenshoots/school.jpg?raw=true",
|
||||
"caption": "Experience and School"
|
||||
},
|
||||
{
|
||||
"type": "screenshot",
|
||||
"url": "https://gitlab.com/teaml5r/l5r5e/-/raw/master/screenshoots/sheet_pc.jpg?raw=true",
|
||||
"caption": "PC sheet"
|
||||
},
|
||||
{
|
||||
"type": "screenshot",
|
||||
"url": "https://gitlab.com/teaml5r/l5r5e/-/raw/master/screenshoots/sheet_npc_army.jpg?raw=true",
|
||||
"caption": "NPC and Army sheets"
|
||||
},
|
||||
{
|
||||
"type": "screenshot",
|
||||
"url": "https://gitlab.com/teaml5r/l5r5e/-/raw/master/screenshoots/compendiums.jpg?raw=true",
|
||||
"caption": "Compendiums"
|
||||
}
|
||||
]
|
||||
}
|
||||
393
system/.history/system_20260423143057.json
Normal file
@@ -0,0 +1,393 @@
|
||||
{
|
||||
"id": "l5rx-chiaroscuro",
|
||||
"title": "Chiaroscuro - L5R",
|
||||
"description": "This is an authorised multilingual game system En|Fr|Es, for Legend of the Five Rings (5th Edition) by <a href='https://edge-studio.net/'>Edge Studio</a> <p> - Join the official Discord server: <a href='https://discord.gg/foundryvtt'> Official Discord</a></p><p> - Rejoignez la communauté Francophone: <a href='https://discord.gg/pPSDNJk'>Francophone Discord</a></p>",
|
||||
"url": "https://gitlab.com/teaml5r/l5r5e",
|
||||
"readme": "https://gitlab.com/teaml5r/l5r5e/-/blob/master/README.md",
|
||||
"changelog": "https://gitlab.com/teaml5r/l5r5e/-/blob/master/CHANGELOG.md",
|
||||
"license": "https://gitlab.com/teaml5r/l5r5e/-/blob/master/LICENSE.md",
|
||||
"manifest": "https://gitlab.com/teaml5r/l5r5e/-/raw/master/system/system.json",
|
||||
"download": "https://gitlab.com/teaml5r/l5r5e/-/jobs/artifacts/v1.13.4/raw/l5r5e.zip?job=build",
|
||||
"version": "14.0.0",
|
||||
"compatibility": {
|
||||
"minimum": "13",
|
||||
"verified": "14"
|
||||
},
|
||||
"socket": true,
|
||||
"authors": [
|
||||
{
|
||||
"name": "Vlyan",
|
||||
"discord": "Vlyan#6771",
|
||||
"url": "https://ko-fi.com/vlyan"
|
||||
},
|
||||
{
|
||||
"name": "Mandar",
|
||||
"discord": "Mandar#3440"
|
||||
},
|
||||
{
|
||||
"name": "Carter",
|
||||
"discord": "Carter#2703",
|
||||
"url": "https://fr.tipeee.com/carter-foundryvtt"
|
||||
},
|
||||
{
|
||||
"name": "Litasa",
|
||||
"discord": "Litasa#3139"
|
||||
}
|
||||
],
|
||||
"background": "systems/l5r5e/assets/l5r-header.webp",
|
||||
"scripts": [],
|
||||
"esmodules": [
|
||||
"./scripts/main-l5r5e.js"
|
||||
],
|
||||
"styles": [
|
||||
"./styles/l5r5e.css"
|
||||
],
|
||||
"packFolders": [
|
||||
{
|
||||
"name": "L5R5e System",
|
||||
"color": "#9a0909",
|
||||
"sorting": "m",
|
||||
"folders": [
|
||||
{
|
||||
"name": "Character related",
|
||||
"color": "#019806",
|
||||
"sorting": "m",
|
||||
"packs": [
|
||||
"core-peculiarities-distinctions",
|
||||
"core-peculiarities-passions",
|
||||
"core-peculiarities-adversities",
|
||||
"core-peculiarities-anxieties",
|
||||
"core-bonds",
|
||||
"core-titles",
|
||||
"core-journal-school-curriculum",
|
||||
"core-journal-great-clans-presentation"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "Techniques",
|
||||
"color": "#4b1eb3",
|
||||
"sorting": "m",
|
||||
"packs": [
|
||||
"core-techniques-kata",
|
||||
"core-techniques-kiho",
|
||||
"core-techniques-inversions",
|
||||
"core-techniques-invocations",
|
||||
"core-techniques-rituals",
|
||||
"core-techniques-shuji",
|
||||
"core-techniques-maho",
|
||||
"core-techniques-ninjutsu",
|
||||
"core-techniques-mantra",
|
||||
"core-techniques-school",
|
||||
"core-techniques-mastery"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "Objects related",
|
||||
"color": "#0985ae",
|
||||
"sorting": "m",
|
||||
"packs": [
|
||||
"core-properties",
|
||||
"core-item-patterns",
|
||||
"core-items",
|
||||
"core-armors",
|
||||
"core-weapons",
|
||||
"core-signature-scrolls",
|
||||
"core-celestial-implement-boons"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "Helpers",
|
||||
"color": "#6b3d1f",
|
||||
"sorting": "m",
|
||||
"packs": [
|
||||
"core-journal-conditions",
|
||||
"core-journal-terrain-qualities",
|
||||
"core-journal-opportunities"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "Tools",
|
||||
"color": "#834949",
|
||||
"sorting": "m",
|
||||
"packs": [
|
||||
"core-name-tables",
|
||||
"core-macros"
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
"packs": [
|
||||
{
|
||||
"name": "core-properties",
|
||||
"label": "Properties",
|
||||
"path": "packs/core-properties.db",
|
||||
"type": "Item",
|
||||
"system": "l5r5e"
|
||||
},
|
||||
{
|
||||
"name": "core-techniques-kata",
|
||||
"label": "Techniques Kata",
|
||||
"path": "packs/core-techniques-kata.db",
|
||||
"type": "Item",
|
||||
"system": "l5r5e"
|
||||
},
|
||||
{
|
||||
"name": "core-techniques-kiho",
|
||||
"label": "Techniques Kihõ",
|
||||
"path": "packs/core-techniques-kiho.db",
|
||||
"type": "Item",
|
||||
"system": "l5r5e"
|
||||
},
|
||||
{
|
||||
"name": "core-techniques-inversions",
|
||||
"label": "Techniques Inversions",
|
||||
"path": "packs/core-techniques-inversions.db",
|
||||
"type": "Item",
|
||||
"system": "l5r5e"
|
||||
},
|
||||
{
|
||||
"name": "core-techniques-invocations",
|
||||
"label": "Techniques Invocations",
|
||||
"path": "packs/core-techniques-invocations.db",
|
||||
"type": "Item",
|
||||
"system": "l5r5e"
|
||||
},
|
||||
{
|
||||
"name": "core-techniques-rituals",
|
||||
"label": "Techniques Rituals",
|
||||
"path": "packs/core-techniques-rituals.db",
|
||||
"type": "Item",
|
||||
"system": "l5r5e"
|
||||
},
|
||||
{
|
||||
"name": "core-techniques-shuji",
|
||||
"label": "Techniques Shuji",
|
||||
"path": "packs/core-techniques-shuji.db",
|
||||
"type": "Item",
|
||||
"system": "l5r5e"
|
||||
},
|
||||
{
|
||||
"name": "core-techniques-maho",
|
||||
"label": "Techniques Mahõ",
|
||||
"path": "packs/core-techniques-maho.db",
|
||||
"type": "Item",
|
||||
"system": "l5r5e"
|
||||
},
|
||||
{
|
||||
"name": "core-techniques-ninjutsu",
|
||||
"label": "Techniques Ninjutsu",
|
||||
"path": "packs/core-techniques-ninjutsu.db",
|
||||
"type": "Item",
|
||||
"system": "l5r5e"
|
||||
},
|
||||
{
|
||||
"name": "core-techniques-mantra",
|
||||
"label": "Techniques Mantra",
|
||||
"path": "packs/core-techniques-mantra.db",
|
||||
"type": "Item",
|
||||
"system": "l5r5e"
|
||||
},
|
||||
{
|
||||
"name": "core-techniques-school",
|
||||
"label": "School Abilities",
|
||||
"path": "packs/core-techniques-school.db",
|
||||
"type": "Item",
|
||||
"system": "l5r5e"
|
||||
},
|
||||
{
|
||||
"name": "core-techniques-mastery",
|
||||
"label": "Mastery Abilities",
|
||||
"path": "packs/core-techniques-mastery.db",
|
||||
"type": "Item",
|
||||
"system": "l5r5e"
|
||||
},
|
||||
{
|
||||
"name": "core-items",
|
||||
"label": "Items",
|
||||
"path": "packs/core-items.db",
|
||||
"type": "Item",
|
||||
"system": "l5r5e"
|
||||
},
|
||||
{
|
||||
"name": "core-armors",
|
||||
"label": "Armors",
|
||||
"path": "packs/core-armors.db",
|
||||
"type": "Item",
|
||||
"system": "l5r5e"
|
||||
},
|
||||
{
|
||||
"name": "core-weapons",
|
||||
"label": "Weapons",
|
||||
"path": "packs/core-weapons.db",
|
||||
"type": "Item",
|
||||
"system": "l5r5e"
|
||||
},
|
||||
{
|
||||
"name": "core-peculiarities-distinctions",
|
||||
"label": "Distinctions",
|
||||
"path": "packs/core-peculiarities-distinctions.db",
|
||||
"type": "Item",
|
||||
"system": "l5r5e"
|
||||
},
|
||||
{
|
||||
"name": "core-peculiarities-passions",
|
||||
"label": "Passions",
|
||||
"path": "packs/core-peculiarities-passions.db",
|
||||
"type": "Item",
|
||||
"system": "l5r5e"
|
||||
},
|
||||
{
|
||||
"name": "core-peculiarities-adversities",
|
||||
"label": "Adversities",
|
||||
"path": "packs/core-peculiarities-adversities.db",
|
||||
"type": "Item",
|
||||
"system": "l5r5e"
|
||||
},
|
||||
{
|
||||
"name": "core-peculiarities-anxieties",
|
||||
"label": "Anxieties",
|
||||
"path": "packs/core-peculiarities-anxieties.db",
|
||||
"type": "Item",
|
||||
"system": "l5r5e"
|
||||
},
|
||||
{
|
||||
"name": "core-bonds",
|
||||
"label": "Bonds",
|
||||
"path": "packs/core-bonds.db",
|
||||
"type": "Item",
|
||||
"system": "l5r5e"
|
||||
},
|
||||
{
|
||||
"name": "core-titles",
|
||||
"label": "Titles",
|
||||
"path": "packs/core-titles.db",
|
||||
"type": "Item",
|
||||
"system": "l5r5e"
|
||||
},
|
||||
{
|
||||
"name": "core-item-patterns",
|
||||
"label": "Item Patterns",
|
||||
"path": "packs/core-item-patterns.db",
|
||||
"type": "Item",
|
||||
"system": "l5r5e"
|
||||
},
|
||||
{
|
||||
"name": "core-signature-scrolls",
|
||||
"label": "Signature Scrolls",
|
||||
"path": "packs/core-signature-scrolls.db",
|
||||
"type": "Item",
|
||||
"system": "l5r5e"
|
||||
},
|
||||
{
|
||||
"name": "core-celestial-implement-boons",
|
||||
"label": "Celestial Implement Boons",
|
||||
"path": "packs/core-celestial-implement-boons.db",
|
||||
"type": "Item",
|
||||
"system": "l5r5e"
|
||||
},
|
||||
{
|
||||
"name": "core-journal-school-curriculum",
|
||||
"label": "School Curriculum",
|
||||
"path": "packs/core-journal-school-curriculum.db",
|
||||
"type": "JournalEntry",
|
||||
"system": "l5r5e"
|
||||
},
|
||||
{
|
||||
"name": "core-journal-conditions",
|
||||
"label": "Conditions",
|
||||
"path": "packs/core-journal-conditions.db",
|
||||
"type": "JournalEntry",
|
||||
"system": "l5r5e"
|
||||
},
|
||||
{
|
||||
"name": "core-journal-terrain-qualities",
|
||||
"label": "Terrain Qualities",
|
||||
"path": "packs/core-journal-terrain-qualities.db",
|
||||
"type": "JournalEntry",
|
||||
"system": "l5r5e"
|
||||
},
|
||||
{
|
||||
"name": "core-journal-great-clans-presentation",
|
||||
"label": "Great Clans Presentation",
|
||||
"path": "packs/core-journal-great-clans-presentation.db",
|
||||
"type": "JournalEntry",
|
||||
"system": "l5r5e"
|
||||
},
|
||||
{
|
||||
"name": "core-journal-opportunities",
|
||||
"label": "Opportunities",
|
||||
"path": "packs/core-journal-opportunities.db",
|
||||
"type": "JournalEntry",
|
||||
"system": "l5r5e"
|
||||
},
|
||||
{
|
||||
"name": "core-name-tables",
|
||||
"label": "Name Tables",
|
||||
"path": "packs/core-name-tables.db",
|
||||
"type": "RollTable",
|
||||
"system": "l5r5e"
|
||||
},
|
||||
{
|
||||
"name": "core-macros",
|
||||
"label": "L5R5E Macros",
|
||||
"path": "packs/core-macros.db",
|
||||
"type": "Macro",
|
||||
"system": "l5r5e"
|
||||
}
|
||||
],
|
||||
"languages": [
|
||||
{
|
||||
"lang": "en",
|
||||
"name": "English",
|
||||
"path": "lang/en-en.json"
|
||||
},
|
||||
{
|
||||
"lang": "fr",
|
||||
"name": "French (France)",
|
||||
"path": "lang/fr-fr.json"
|
||||
},
|
||||
{
|
||||
"lang": "es",
|
||||
"name": "Spanish (Spain)",
|
||||
"path": "lang/es-es.json"
|
||||
},
|
||||
{
|
||||
"lang": "it",
|
||||
"name": "Italian (Italy)",
|
||||
"path": "lang/it-it.json"
|
||||
}
|
||||
],
|
||||
"media": [
|
||||
{
|
||||
"type": "screenshot",
|
||||
"url": "https://gitlab.com/teaml5r/l5r5e/-/raw/master/screenshoots/login.jpg?raw=true",
|
||||
"caption": "Login screen"
|
||||
},
|
||||
{
|
||||
"type": "screenshot",
|
||||
"url": "https://gitlab.com/teaml5r/l5r5e/-/raw/master/screenshoots/roll.jpg?raw=true",
|
||||
"caption": "DicePicker and Roll and Keep"
|
||||
},
|
||||
{
|
||||
"type": "screenshot",
|
||||
"url": "https://gitlab.com/teaml5r/l5r5e/-/raw/master/screenshoots/school.jpg?raw=true",
|
||||
"caption": "Experience and School"
|
||||
},
|
||||
{
|
||||
"type": "screenshot",
|
||||
"url": "https://gitlab.com/teaml5r/l5r5e/-/raw/master/screenshoots/sheet_pc.jpg?raw=true",
|
||||
"caption": "PC sheet"
|
||||
},
|
||||
{
|
||||
"type": "screenshot",
|
||||
"url": "https://gitlab.com/teaml5r/l5r5e/-/raw/master/screenshoots/sheet_npc_army.jpg?raw=true",
|
||||
"caption": "NPC and Army sheets"
|
||||
},
|
||||
{
|
||||
"type": "screenshot",
|
||||
"url": "https://gitlab.com/teaml5r/l5r5e/-/raw/master/screenshoots/compendiums.jpg?raw=true",
|
||||
"caption": "Compendiums"
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -8,7 +8,7 @@
|
||||
Created by potrace 1.15, written by Peter Selinger 2001-2017
|
||||
</metadata>
|
||||
<g transform="translate(0.000000,1264.000000) scale(0.100000,-0.100000)"
|
||||
fill="#000000" stroke="none">
|
||||
fill="currentColor" stroke="none">
|
||||
<path d="M5925 12625 c-248 -21 -380 -39 -378 -51 1 -7 -56 -18 -148 -29 -83
|
||||
-9 -190 -25 -237 -35 -244 -53 -454 -105 -602 -151 -91 -28 -210 -64 -264 -81
|
||||
-465 -138 -1038 -415 -1493 -719 -234 -157 -585 -429 -773 -600 -215 -196
|
||||
|
||||
|
Before Width: | Height: | Size: 6.0 KiB After Width: | Height: | Size: 6.0 KiB |
BIN
system/assets/icons/conditions/afflicted.webp
Normal file
|
After Width: | Height: | Size: 29 KiB |
2
system/assets/icons/conditions/artist_nikotka.txt
Normal file
@@ -0,0 +1,2 @@
|
||||
All original conditions icons was made by Nikotka.
|
||||
Altered by Vlyan to be more visible in FoundryVTT.
|
||||
BIN
system/assets/icons/conditions/bleeding.webp
Normal file
|
After Width: | Height: | Size: 11 KiB |
BIN
system/assets/icons/conditions/burning.webp
Normal file
|
After Width: | Height: | Size: 50 KiB |
BIN
system/assets/icons/conditions/centered.webp
Normal file
|
After Width: | Height: | Size: 12 KiB |
BIN
system/assets/icons/conditions/compromised.webp
Normal file
|
After Width: | Height: | Size: 26 KiB |
BIN
system/assets/icons/conditions/dazed.webp
Normal file
|
After Width: | Height: | Size: 25 KiB |
BIN
system/assets/icons/conditions/disoriented.webp
Normal file
|
After Width: | Height: | Size: 38 KiB |
BIN
system/assets/icons/conditions/dying_1.webp
Normal file
|
After Width: | Height: | Size: 21 KiB |
BIN
system/assets/icons/conditions/dying_2.webp
Normal file
|
After Width: | Height: | Size: 22 KiB |
BIN
system/assets/icons/conditions/dying_3.webp
Normal file
|
After Width: | Height: | Size: 21 KiB |
BIN
system/assets/icons/conditions/emboldened.webp
Normal file
|
After Width: | Height: | Size: 20 KiB |
BIN
system/assets/icons/conditions/enraged.webp
Normal file
|
After Width: | Height: | Size: 18 KiB |
BIN
system/assets/icons/conditions/exhausted.webp
Normal file
|
After Width: | Height: | Size: 13 KiB |
BIN
system/assets/icons/conditions/heavily_wounded.webp
Normal file
|
After Width: | Height: | Size: 14 KiB |
BIN
system/assets/icons/conditions/heavily_wounded_air.webp
Normal file
|
After Width: | Height: | Size: 38 KiB |
BIN
system/assets/icons/conditions/heavily_wounded_earth.webp
Normal file
|
After Width: | Height: | Size: 30 KiB |
BIN
system/assets/icons/conditions/heavily_wounded_fire.webp
Normal file
|
After Width: | Height: | Size: 38 KiB |
BIN
system/assets/icons/conditions/heavily_wounded_void.webp
Normal file
|
After Width: | Height: | Size: 32 KiB |
BIN
system/assets/icons/conditions/heavily_wounded_water.webp
Normal file
|
After Width: | Height: | Size: 37 KiB |
BIN
system/assets/icons/conditions/illness_coughing_illness.webp
Normal file
|
After Width: | Height: | Size: 22 KiB |
BIN
system/assets/icons/conditions/illness_fire_rash.webp
Normal file
|
After Width: | Height: | Size: 36 KiB |
BIN
system/assets/icons/conditions/illness_gut_sickness.webp
Normal file
|
After Width: | Height: | Size: 18 KiB |
BIN
system/assets/icons/conditions/illness_oozing_sore_disease.webp
Normal file
|
After Width: | Height: | Size: 19 KiB |
BIN
system/assets/icons/conditions/illness_unsteady_illness.webp
Normal file
|
After Width: | Height: | Size: 35 KiB |
BIN
system/assets/icons/conditions/immobilized.webp
Normal file
|
After Width: | Height: | Size: 12 KiB |
BIN
system/assets/icons/conditions/incapacitated.webp
Normal file
|
After Width: | Height: | Size: 12 KiB |
BIN
system/assets/icons/conditions/intoxicated.webp
Normal file
|
After Width: | Height: | Size: 26 KiB |
BIN
system/assets/icons/conditions/lightly_wounded_air.webp
Normal file
|
After Width: | Height: | Size: 30 KiB |
BIN
system/assets/icons/conditions/lightly_wounded_earth.webp
Normal file
|
After Width: | Height: | Size: 24 KiB |
BIN
system/assets/icons/conditions/lightly_wounded_fire.webp
Normal file
|
After Width: | Height: | Size: 32 KiB |
BIN
system/assets/icons/conditions/lightly_wounded_void.webp
Normal file
|
After Width: | Height: | Size: 26 KiB |
BIN
system/assets/icons/conditions/lightly_wounded_water.webp
Normal file
|
After Width: | Height: | Size: 29 KiB |
BIN
system/assets/icons/conditions/possesed.webp
Normal file
|
After Width: | Height: | Size: 48 KiB |
BIN
system/assets/icons/conditions/prone.webp
Normal file
|
After Width: | Height: | Size: 22 KiB |
BIN
system/assets/icons/conditions/silenced.webp
Normal file
|
After Width: | Height: | Size: 20 KiB |
BIN
system/assets/icons/conditions/unconscious.webp
Normal file
|
After Width: | Height: | Size: 24 KiB |
@@ -1,13 +1,20 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 24.1.2, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="48.2px" height="48.2px" viewBox="0 0 48.2 48.2" style="enable-background:new 0 0 48.2 48.2;" xml:space="preserve">
|
||||
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
width="48.2px" height="48.2px" viewBox="0 0 48.2 48.2" xml:space="preserve">
|
||||
<defs>
|
||||
<linearGradient id="iconGradient" x1="0%" y1="0%" x2="0%" y2="100%">
|
||||
<stop offset="0%" style="stop-color:#E0E0E0;stop-opacity:1" />
|
||||
<stop offset="100%" style="stop-color:#FFFFFF;stop-opacity:1" />
|
||||
</linearGradient>
|
||||
</defs>
|
||||
<style type="text/css">
|
||||
.st0{fill:#030104;}
|
||||
/* Gradient fill with contrasting stroke */
|
||||
.fill-gradient{fill:url(#iconGradient);}
|
||||
.stroke-contrast{stroke:#2a2a2a;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round;}
|
||||
</style>
|
||||
<g>
|
||||
<g>
|
||||
<path class="st0" d="M43,40c-0.9-7.2-2.3-13.9-5.7-20.2c-1-1.9-2.6-3.5-3.8-5.3c-0.2-0.3-0.5-0.7-0.7-1.1c0.7-0.6,1.4-1.3,2.1-2
|
||||
<path class="fill-gradient stroke-contrast" d="M43,40c-0.9-7.2-2.3-13.9-5.7-20.2c-1-1.9-2.6-3.5-3.8-5.3c-0.2-0.3-0.5-0.7-0.7-1.1c0.7-0.6,1.4-1.3,2.1-2
|
||||
c0.8-0.8,1.5-1.5,2.1-2.3c0.7-0.8,1.2-1.5,1.7-2.1c1-1.3,1.5-2.3,1.5-2.3s-1,0.5-2.3,1.5c-0.7,0.5-1.4,1.1-2.1,1.7
|
||||
c-0.8,0.7-1.5,1.4-2.3,2.1c-0.4,0.4-0.9,0.9-1.3,1.4c-0.7-3.4-3.5-6.2-7-6.6c-3.7-0.5-7.6,1.7-8.5,5.4c-0.1,0.5-0.3,1-0.4,1.4
|
||||
c-0.5-0.5-1-1-1.5-1.5C14,9.3,13.2,8.6,12.5,8c-0.8-0.7-1.5-1.2-2.1-1.7C9,5.3,8,4.8,8,4.8s0.5,1,1.5,2.3c0.5,0.7,1.1,1.4,1.7,2.1
|
||||
@@ -17,10 +24,10 @@
|
||||
c0.5,0.1,1,0,1.4-0.2c0.4-0.2,0.8-0.6,1.1-1.1c0.5-0.7,0.7-0.3,1.3,0.6c0.5,0.9,1.6,1.2,3,1.4c2.9,0.4,2.8,0.6,2.5,3.5
|
||||
c0,0.5,0,1-0.1,1.4c-0.5,2.3,0.1,5.1-1.8,6.9c-0.8,0.7-1.6,1.1-1.5,1.2c0.1,0.1,1.1,0,2.1-0.1c2.4-0.3,4.9-0.7,7.4-1
|
||||
C42.3,42.1,43.1,41.1,43,40z M21.3,8.2C20.2,9,19.2,9.3,19,9s0.4-1.2,1.5-1.9c1-0.7,2.1-1.1,2.3-0.7C23,6.6,22.3,7.5,21.3,8.2z"/>
|
||||
<path class="st0" d="M32,35.9c0-0.2-0.9-0.2-1.9-0.1c-1,0.1-1.8,0.4-1.8,0.7c0,0.2,0.9,0.3,1.9,0.1C31.3,36.4,32,36.1,32,35.9z"/>
|
||||
<path class="st0" d="M18.2,35.8c-0.9-0.2-1.7-0.1-1.8,0.1c0,0.2,0.7,0.5,1.6,0.7c0.9,0.2,1.7,0.1,1.8-0.1
|
||||
<path class="fill-gradient stroke-contrast" d="M32,35.9c0-0.2-0.9-0.2-1.9-0.1c-1,0.1-1.8,0.4-1.8,0.7c0,0.2,0.9,0.3,1.9,0.1C31.3,36.4,32,36.1,32,35.9z"/>
|
||||
<path class="fill-gradient stroke-contrast" d="M18.2,35.8c-0.9-0.2-1.7-0.1-1.8,0.1c0,0.2,0.7,0.5,1.6,0.7c0.9,0.2,1.7,0.1,1.8-0.1
|
||||
C19.9,36.3,19.2,36,18.2,35.8z"/>
|
||||
<path class="st0" d="M25.3,40.3c-0.1,0-0.3,0-0.5-0.1c-0.1,0-0.2-0.1-0.3-0.1c-0.1,0-0.2,0-0.2-0.1c-0.1,0-0.3-0.1-0.4,0
|
||||
<path class="fill-gradient stroke-contrast" d="M25.3,40.3c-0.1,0-0.3,0-0.5-0.1c-0.1,0-0.2-0.1-0.3-0.1c-0.1,0-0.2,0-0.2-0.1c-0.1,0-0.3-0.1-0.4,0
|
||||
c-0.1,0-0.3,0-0.4,0c-0.1,0-0.2,0.1-0.2,0.1c-0.1,0-0.2,0.1-0.2,0.1c-0.2,0.1-0.4,0-0.5,0.1c-0.1,0-0.2,0.1-0.2,0.1s0,0.1,0,0.3
|
||||
c0,0.2,0,0.3,0.1,0.6c0.1,0.1,0.1,0.2,0.3,0.3c0.1,0.1,0.2,0.2,0.4,0.3c0.1,0.1,0.3,0.2,0.4,0.2c0.2,0,0.3,0.1,0.5,0.1
|
||||
c0.2,0,0.3,0,0.5-0.1c0.2,0,0.3-0.1,0.4-0.2c0.3-0.1,0.5-0.4,0.6-0.6c0.1-0.2,0.2-0.4,0.2-0.6c0-0.2,0-0.2,0-0.2
|
||||
|
||||
|
Before Width: | Height: | Size: 2.4 KiB After Width: | Height: | Size: 2.7 KiB |
@@ -1,9 +1,9 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 24.1.2, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="48.2px" height="48.2px" viewBox="0 0 48.2 48.2" style="enable-background:new 0 0 48.2 48.2;" xml:space="preserve">
|
||||
width="48.2px" height="48.2px" viewBox="-1 -1 50.2 50.2" style="enable-background:new -1 -1 50.2 50.2;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0{fill:#1D1C1A;}
|
||||
.st0{fill:#030104;}
|
||||
</style>
|
||||
<g>
|
||||
<path class="st0" d="M48.7,4.8c0,0-0.1,0-0.2,0.1c-0.9,0.6-4.4,2-9.3,3.1c-4.6,1-10.8,1.8-16.7,2.3c-6.2,0.6-14.9,0.8-21.3-0.5
|
||||
|
||||
|
Before Width: | Height: | Size: 4.6 KiB After Width: | Height: | Size: 4.6 KiB |
@@ -156,6 +156,30 @@
|
||||
"source_reference": {
|
||||
"page": "97"
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "Mirror Armor",
|
||||
"name": "Mirror Armor (WIP)",
|
||||
"description": "",
|
||||
"source_reference": {
|
||||
"page": ""
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "Unicorn Barding",
|
||||
"name": "Unicorn Barding (WIP)",
|
||||
"description": "",
|
||||
"source_reference": {
|
||||
"page": ""
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "Yuki: The Ancestral Armor of the Unicorn Clan [Blessed Treasure]",
|
||||
"name": "Yuki: The Ancestral Armor of the Unicorn Clan [Blessed Treasure] (WIP)",
|
||||
"description": "",
|
||||
"source_reference": {
|
||||
"page": ""
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
|
||||
@@ -148,6 +148,30 @@
|
||||
"source_reference": {
|
||||
"page": "105"
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "Ujik Horsebow Pattern",
|
||||
"name": "Ujik Horsebow Pattern (WIP)",
|
||||
"description": "",
|
||||
"source_reference": {
|
||||
"page": ""
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "Utsuko Pattern",
|
||||
"name": "Utsuko Pattern (WIP)",
|
||||
"description": "",
|
||||
"source_reference": {
|
||||
"page": ""
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "Watered Steel Pattern",
|
||||
"name": "Watered Steel Pattern (WIP)",
|
||||
"description": "",
|
||||
"source_reference": {
|
||||
"page": ""
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
|
||||
@@ -262,7 +262,7 @@
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "Journal of observations",
|
||||
"id": "Journal of Observations",
|
||||
"name": "Journal d'observations",
|
||||
"description": "",
|
||||
"source_reference": {
|
||||
@@ -892,6 +892,278 @@
|
||||
"source_reference": {
|
||||
"page": "96"
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "Astrolabe (Unicorn)",
|
||||
"name": "Astrolabe (Licorne)",
|
||||
"description": "",
|
||||
"source_reference": {
|
||||
"page": ""
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "Horo (Arrow Cloak)",
|
||||
"name": "Horo (Arrow Cloak) (WIP)",
|
||||
"description": "",
|
||||
"source_reference": {
|
||||
"page": ""
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "Lantern (Personal)",
|
||||
"name": "Lantern (Personal) (WIP)",
|
||||
"description": "",
|
||||
"source_reference": {
|
||||
"page": ""
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "Mineral-Oil Lamp",
|
||||
"name": "Mineral-Oil Lamp (WIP)",
|
||||
"description": "",
|
||||
"source_reference": {
|
||||
"page": ""
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "Prayer Rug",
|
||||
"name": "Prayer Rug (WIP)",
|
||||
"description": "",
|
||||
"source_reference": {
|
||||
"page": ""
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "Sand Clock",
|
||||
"name": "Sand Clock (WIP)",
|
||||
"description": "",
|
||||
"source_reference": {
|
||||
"page": ""
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "Traveling Board Games",
|
||||
"name": "Traveling Board Games (WIP)",
|
||||
"description": "",
|
||||
"source_reference": {
|
||||
"page": ""
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "Word of the Prophet",
|
||||
"name": "Word of the Prophet (WIP)",
|
||||
"description": "",
|
||||
"source_reference": {
|
||||
"page": ""
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "Talisman of the Sun [Blessed Treasure]",
|
||||
"name": "Talisman of the Sun [Blessed Treasure] (WIP)",
|
||||
"description": "",
|
||||
"source_reference": {
|
||||
"page": ""
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "Fox Pipe [Blessed Treasure]",
|
||||
"name": "Fox Pipe [Blessed Treasure] (WIP)",
|
||||
"description": "",
|
||||
"source_reference": {
|
||||
"page": ""
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "Glass Ornament (Dragonfly)",
|
||||
"name": "Le Verre de Libellule",
|
||||
"description": "",
|
||||
"source_reference": {
|
||||
"page": ""
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "Arrows: Armor-Piercing",
|
||||
"name": "Flèches : Perce-armure",
|
||||
"description": "",
|
||||
"source_reference": {
|
||||
"page": "236"
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "Arrows: Flesh-Cutter",
|
||||
"name": "Flèches : Fouilleuse d’entrailles",
|
||||
"description": "",
|
||||
"source_reference": {
|
||||
"page": "236"
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "Arrows: Humming-Bulb",
|
||||
"name": "Flèches : Bulbe bourdonnant",
|
||||
"description": "",
|
||||
"source_reference": {
|
||||
"page": "236"
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "Journal",
|
||||
"name": "Journal",
|
||||
"description": "",
|
||||
"source_reference": {
|
||||
"page": "66"
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "Smithing hammer",
|
||||
"name": "Marteau de forgeron",
|
||||
"description": "",
|
||||
"source_reference": {
|
||||
"page": ""
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "Sumai Garb",
|
||||
"name": "Tenue de Sumai",
|
||||
"description": "",
|
||||
"source_reference": {
|
||||
"page": "76"
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "Drafting Paper",
|
||||
"name": "Papier à dessin",
|
||||
"description": "",
|
||||
"source_reference": {
|
||||
"page": ""
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "Fine set of Chisels",
|
||||
"name": "Ensemble de burins de grande qualité",
|
||||
"description": "",
|
||||
"source_reference": {
|
||||
"page": ""
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "Omamori (Boon of Fukurokujin)",
|
||||
"name": "Omamori (Bienfait de Fukurokujin)",
|
||||
"description": "",
|
||||
"source_reference": {
|
||||
"page": "243"
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "Omamori (Boon of Bishamon)",
|
||||
"name": "Omamori (Bienfait de Bishamon)",
|
||||
"description": "",
|
||||
"source_reference": {
|
||||
"page": "243"
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "Omamori (Boon of Benten)",
|
||||
"name": "Omamori (Bienfait de Benten)",
|
||||
"description": "",
|
||||
"source_reference": {
|
||||
"page": "243"
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "Poison - Noxious Poison (One Vial)",
|
||||
"name": "Poison - Toxines (un flacon)",
|
||||
"description": "",
|
||||
"source_reference": {
|
||||
"page": "244"
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "Poison - Fire Biter (One Vial)",
|
||||
"name": "Poison - Morsure Brûlante (un flacon)",
|
||||
"description": "",
|
||||
"source_reference": {
|
||||
"page": "244"
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "Poison - Night Milk (One Vial)",
|
||||
"name": "Poison - Lait de la Nuit (un flacon)",
|
||||
"description": "",
|
||||
"source_reference": {
|
||||
"page": "244"
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "Blanket",
|
||||
"name": "Couverture",
|
||||
"description": "",
|
||||
"source_reference": {
|
||||
"page": "245"
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "Bowl",
|
||||
"name": "Bol",
|
||||
"description": "",
|
||||
"source_reference": {
|
||||
"page": "245"
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "Flint and Tinder",
|
||||
"name": "Silex et amadou",
|
||||
"description": "",
|
||||
"source_reference": {
|
||||
"page": "245"
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "Furoshiki",
|
||||
"name": "Furoshiki",
|
||||
"description": "",
|
||||
"source_reference": {
|
||||
"page": "245"
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "The Obsidian Journal",
|
||||
"name": "Le Journal d’obsidienne",
|
||||
"description": "",
|
||||
"source_reference": {
|
||||
"page": "128"
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "Pouch of Insence",
|
||||
"name": "Bourse d’Encens",
|
||||
"description": "",
|
||||
"source_reference": {
|
||||
"page": "85"
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "Religious texts",
|
||||
"name": "Textes religieux",
|
||||
"description": "",
|
||||
"source_reference": {
|
||||
"page": "86"
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "Small Sachel of Ingredients",
|
||||
"name": "Petit sachet d'ingrédients",
|
||||
"description": "",
|
||||
"source_reference": {
|
||||
"page": "80"
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "Blessed Glass vial",
|
||||
"name": "Fiole en verre bénie",
|
||||
"description": "",
|
||||
"source_reference": {
|
||||
"page": "80"
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
|
||||
@@ -9,7 +9,7 @@
|
||||
"pages": {
|
||||
"Figure: Afflicted": {
|
||||
"name": "Tourmenté - Image",
|
||||
"src": "icons/svg/sun.svg"
|
||||
"src": "systems/l5r5e/assets/icons/conditions/afflicted.webp"
|
||||
},
|
||||
"Afflicted": {
|
||||
"name": "Tourmenté",
|
||||
@@ -22,7 +22,7 @@
|
||||
"pages": {
|
||||
"Figure: Bleeding": {
|
||||
"name": "En sang - Image",
|
||||
"src": "icons/svg/blood.svg"
|
||||
"src": "systems/l5r5e/assets/icons/conditions/bleeding.webp"
|
||||
},
|
||||
"Bleeding": {
|
||||
"name": "En sang",
|
||||
@@ -35,7 +35,7 @@
|
||||
"pages": {
|
||||
"Figure: Burning": {
|
||||
"name": "En feu - Image",
|
||||
"src": "icons/svg/fire.svg"
|
||||
"src": "systems/l5r5e/assets/icons/conditions/burning.webp"
|
||||
},
|
||||
"Burning": {
|
||||
"name": "En feu",
|
||||
@@ -48,7 +48,7 @@
|
||||
"pages": {
|
||||
"Figure: Compromised": {
|
||||
"name": "Compromis - Image",
|
||||
"src": "icons/svg/terror.svg"
|
||||
"src": "systems/l5r5e/assets/icons/conditions/compromised.webp"
|
||||
},
|
||||
"Compromised": {
|
||||
"name": "Compromis",
|
||||
@@ -61,7 +61,7 @@
|
||||
"pages": {
|
||||
"Figure: Dazed": {
|
||||
"name": "Hébété - Image",
|
||||
"src": "icons/svg/eye.svg"
|
||||
"src": "systems/l5r5e/assets/icons/conditions/dazed.webp"
|
||||
},
|
||||
"Dazed": {
|
||||
"name": "Hébété",
|
||||
@@ -74,7 +74,7 @@
|
||||
"pages": {
|
||||
"Figure: Disoriented": {
|
||||
"name": "Désorienté - Image",
|
||||
"src": "icons/svg/daze.svg"
|
||||
"src": "systems/l5r5e/assets/icons/conditions/disoriented.webp"
|
||||
},
|
||||
"Disoriented": {
|
||||
"name": "Désorienté",
|
||||
@@ -87,7 +87,7 @@
|
||||
"pages": {
|
||||
"Figure: Dying [X Rounds]": {
|
||||
"name": "Mourant (X rounds) - Image",
|
||||
"src": "icons/svg/skull.svg"
|
||||
"src": "systems/l5r5e/assets/icons/conditions/dying_1.webp"
|
||||
},
|
||||
"Dying [X Rounds]": {
|
||||
"name": "Mourant (X rounds)",
|
||||
@@ -100,7 +100,7 @@
|
||||
"pages": {
|
||||
"Figure: Enraged": {
|
||||
"name": "Enragé - Image",
|
||||
"src": "icons/svg/lightning.svg"
|
||||
"src": "systems/l5r5e/assets/icons/conditions/enraged.webp"
|
||||
},
|
||||
"Enraged": {
|
||||
"name": "Enragé",
|
||||
@@ -113,7 +113,7 @@
|
||||
"pages": {
|
||||
"Figure: Exhausted": {
|
||||
"name": "Epuisé - Image",
|
||||
"src": "icons/svg/sleep.svg"
|
||||
"src": "systems/l5r5e/assets/icons/conditions/exhausted.webp"
|
||||
},
|
||||
"Exhausted": {
|
||||
"name": "Epuisé",
|
||||
@@ -126,7 +126,7 @@
|
||||
"pages": {
|
||||
"Figure: Immobilized": {
|
||||
"name": "Immobilisé - Image",
|
||||
"src": "icons/svg/net.svg"
|
||||
"src": "systems/l5r5e/assets/icons/conditions/immobilized.webp"
|
||||
},
|
||||
"Immobilized": {
|
||||
"name": "Immobilisé",
|
||||
@@ -139,7 +139,7 @@
|
||||
"pages": {
|
||||
"Figure: Incapacitated": {
|
||||
"name": "Hors de combat - Image",
|
||||
"src": "icons/svg/downgrade.svg"
|
||||
"src": "systems/l5r5e/assets/icons/conditions/incapacitated.webp"
|
||||
},
|
||||
"Incapacitated": {
|
||||
"name": "Hors de combat",
|
||||
@@ -152,7 +152,7 @@
|
||||
"pages": {
|
||||
"Figure: Intoxicated": {
|
||||
"name": "Ivre - Image",
|
||||
"src": "icons/svg/poison.svg"
|
||||
"src": "systems/l5r5e/assets/icons/conditions/intoxicated.webp"
|
||||
},
|
||||
"Intoxicated": {
|
||||
"name": "Ivre",
|
||||
@@ -165,7 +165,7 @@
|
||||
"pages": {
|
||||
"Figure: Prone": {
|
||||
"name": "A terre - Image",
|
||||
"src": "icons/svg/falling.svg"
|
||||
"src": "systems/l5r5e/assets/icons/conditions/prone.webp"
|
||||
},
|
||||
"Prone": {
|
||||
"name": "A terre",
|
||||
@@ -178,7 +178,7 @@
|
||||
"pages": {
|
||||
"Figure: Silenced": {
|
||||
"name": "Aphone - Image",
|
||||
"src": "icons/svg/silenced.svg"
|
||||
"src": "systems/l5r5e/assets/icons/conditions/silenced.webp"
|
||||
},
|
||||
"Silenced": {
|
||||
"name": "Aphone",
|
||||
@@ -191,7 +191,7 @@
|
||||
"pages": {
|
||||
"Figure: Unconscious": {
|
||||
"name": "Inconscient - Image",
|
||||
"src": "icons/svg/unconscious.svg"
|
||||
"src": "systems/l5r5e/assets/icons/conditions/unconscious.webp"
|
||||
},
|
||||
"Unconscious": {
|
||||
"name": "Inconscient",
|
||||
@@ -204,7 +204,7 @@
|
||||
"pages": {
|
||||
"Figure: Wounded": {
|
||||
"name": "Blessé - Image",
|
||||
"src": "icons/svg/degen.svg"
|
||||
"src": "systems/l5r5e/assets/icons/conditions/heavily_wounded.webp"
|
||||
},
|
||||
"Wounded": {
|
||||
"name": "Blessé",
|
||||
@@ -213,67 +213,106 @@
|
||||
}
|
||||
},
|
||||
"Illness: Oozing Sore Disease": {
|
||||
"name": "Illness: Oozing Sore Disease (WIP)",
|
||||
"name": "Maladie : Bubons purulents",
|
||||
"pages": {
|
||||
"Figure: Illness: Oozing Sore Disease": {
|
||||
"name": "Illness: Oozing Sore Disease (WIP) - Image",
|
||||
"src": "systems/l5r5e/assets/icons/social.svg"
|
||||
"name": "Maladie : Bubons purulents - Image",
|
||||
"src": "systems/l5r5e/assets/icons/conditions/illness_oozing_sore_disease.webp"
|
||||
},
|
||||
"Illness: Oozing Sore Disease": {
|
||||
"name": "Illness: Oozing Sore Disease (WIP)",
|
||||
"text": "<blockquote>Les Édits de la Nature</blockquote>"
|
||||
"name": "Maladie : Bubons purulents",
|
||||
"text": "<blockquote>Les Édits de la Nature p.140</blockquote>"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Illness: Gut Sickness": {
|
||||
"name": "Illness: Gut Sickness (WIP)",
|
||||
"name": "Maladie : Mal des entrailles",
|
||||
"pages": {
|
||||
"Figure: Illness: Gut Sickness": {
|
||||
"name": "Illness: Gut Sickness (WIP) - Image",
|
||||
"src": "systems/l5r5e/assets/icons/social.svg"
|
||||
"name": "Maladie : Mal des entrailles - Image",
|
||||
"src": "systems/l5r5e/assets/icons/conditions/illness_gut_sickness.webp"
|
||||
},
|
||||
"Illness: Gut Sickness": {
|
||||
"name": "Illness: Gut Sickness (WIP)",
|
||||
"text": "<blockquote>Les Édits de la Nature</blockquote>"
|
||||
"name": "Maladie : Mal des entrailles",
|
||||
"text": "<blockquote>Les Édits de la Nature p.141</blockquote>"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Illness: Coughing Illness": {
|
||||
"name": "Illness: Coughing Illness (WIP)",
|
||||
"name": "Maladie : Mauvaise toux",
|
||||
"pages": {
|
||||
"Figure: Illness: Coughing Illness": {
|
||||
"name": "Illness: Coughing Illness (WIP) - Image",
|
||||
"src": "systems/l5r5e/assets/icons/social.svg"
|
||||
"name": "Maladie : Mauvaise toux - Image",
|
||||
"src": "systems/l5r5e/assets/icons/conditions/illness_coughing_illness.webp"
|
||||
},
|
||||
"Illness: Coughing Illness": {
|
||||
"name": "Illness: Coughing Illness (WIP)",
|
||||
"text": "<blockquote>Les Édits de la Nature</blockquote>"
|
||||
"name": "Maladie : Mauvaise toux",
|
||||
"text": "<blockquote>Les Édits de la Nature p.141</blockquote>"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Illness: Unsteady Illness": {
|
||||
"name": "Illness: Unsteady Illness (WIP)",
|
||||
"name": "Maladie : Vertiges",
|
||||
"pages": {
|
||||
"Figure: Illness: Unsteady Illness": {
|
||||
"name": "Illness: Unsteady Illness (WIP) - Image",
|
||||
"src": "systems/l5r5e/assets/icons/social.svg"
|
||||
"name": "Maladie : Vertiges - Image",
|
||||
"src": "systems/l5r5e/assets/icons/conditions/illness_unsteady_illness.webp"
|
||||
},
|
||||
"Illness: Unsteady Illness": {
|
||||
"name": "Illness: Unsteady Illness (WIP)",
|
||||
"text": "<blockquote>Les Édits de la Nature</blockquote>"
|
||||
"name": "Maladie : Vertiges",
|
||||
"text": "<blockquote>Les Édits de la Nature p.141</blockquote>"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Illness: Fire Rash": {
|
||||
"name": "Illness: Fire Rash (WIP)",
|
||||
"name": "Maladie : Rougeurs",
|
||||
"pages": {
|
||||
"Figure: Illness: Fire Rash": {
|
||||
"name": "Illness: Fire Rash (WIP) - Image",
|
||||
"src": "systems/l5r5e/assets/icons/social.svg"
|
||||
"name": "Maladie : Rougeurs - Image",
|
||||
"src": "systems/l5r5e/assets/icons/conditions/illness_fire_rash.webp"
|
||||
},
|
||||
"Illness: Fire Rash": {
|
||||
"name": "Illness: Fire Rash (WIP)",
|
||||
"text": "<blockquote>Les Édits de la Nature</blockquote>"
|
||||
"name": "Maladie : Rougeurs",
|
||||
"text": "<blockquote>Les Édits de la Nature p.141</blockquote>"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Centered": {
|
||||
"name": "Centered (WIP)",
|
||||
"pages": {
|
||||
"Figure: Centered": {
|
||||
"name": "Centered (WIP) - Image",
|
||||
"src": "systems/l5r5e/assets/icons/conditions/centered.webp"
|
||||
},
|
||||
"Centered": {
|
||||
"name": "Centered (WIP)",
|
||||
"text": "<blockquote>Les Enfants des Cinq Vents</blockquote>"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Emboldened": {
|
||||
"name": "Emboldened (WIP)",
|
||||
"pages": {
|
||||
"Figure: Emboldened": {
|
||||
"name": "Emboldened (WIP) - Image",
|
||||
"src": "systems/l5r5e/assets/icons/conditions/emboldened.webp"
|
||||
},
|
||||
"Emboldened": {
|
||||
"name": "Emboldened (WIP)",
|
||||
"text": "<blockquote>Les Enfants des Cinq Vents</blockquote>"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Possessed": {
|
||||
"name": "Possessed (WIP)",
|
||||
"pages": {
|
||||
"Figure: Possessed": {
|
||||
"name": "Possessed (WIP) - Image",
|
||||
"src": "systems/l5r5e/assets/icons/conditions/possesed.webp"
|
||||
},
|
||||
"Possessed": {
|
||||
"name": "Possessed (WIP)",
|
||||
"text": "<blockquote>Les Enfants des Cinq Vents</blockquote>"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -135,15 +135,15 @@
|
||||
}
|
||||
},
|
||||
"Imbalanced (One or More Elements) Variant": {
|
||||
"name": "Imbalanced (One or More Elements) Variant (WIP)",
|
||||
"name": "Déséquilibré (un ou plusieurs éléments) – variante",
|
||||
"pages": {
|
||||
"Figure: Imbalanced (One or More Elements) Variant": {
|
||||
"name": "Imbalanced (One or More Elements) Variant (WIP) - Image",
|
||||
"name": "Déséquilibré (un ou plusieurs éléments) – variante - Image",
|
||||
"src": "icons/svg/stoned.svg"
|
||||
},
|
||||
"Imbalanced (One or More Elements) Variant": {
|
||||
"name": "Imbalanced (One or More Elements) Variant (WIP)",
|
||||
"text": "<blockquote>Les Édits de la Nature</blockquote>"
|
||||
"name": "Déséquilibré (un ou plusieurs éléments) – variante",
|
||||
"text": "<blockquote>Les Édits de la Nature p.139</blockquote>"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -746,26 +746,53 @@
|
||||
},
|
||||
{
|
||||
"id": "Insomniac",
|
||||
"name": "Insomniac (WIP)",
|
||||
"name": "Insomniaque",
|
||||
"types": "Mental",
|
||||
"description": "",
|
||||
"source_reference": {
|
||||
"page": ""
|
||||
"page": "104"
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "Out of Shape",
|
||||
"name": "Out of Shape (WIP)",
|
||||
"name": "Petite forme",
|
||||
"types": "Physique",
|
||||
"description": "",
|
||||
"source_reference": {
|
||||
"page": "105"
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "Stalked by [Creature]",
|
||||
"name": "Poursuivi par [une créature]",
|
||||
"types": "Relations, Mental, Spirituel",
|
||||
"description": "",
|
||||
"source_reference": {
|
||||
"page": "105"
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "Lost Family History",
|
||||
"name": "Lost Family History (WIP)",
|
||||
"types": "Relations, Matériel",
|
||||
"description": "",
|
||||
"source_reference": {
|
||||
"page": ""
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "Stalked by [Creature]",
|
||||
"name": "Stalked by [Creature] (WIP)",
|
||||
"types": "Relations, Mental, Spirituel",
|
||||
"id": "Penalty",
|
||||
"name": "Penalty (WIP)",
|
||||
"types": "Infamie, Social",
|
||||
"description": "",
|
||||
"source_reference": {
|
||||
"page": ""
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "Schism in Status",
|
||||
"name": "Schism in Status (WIP)",
|
||||
"types": "Infamie, Relations",
|
||||
"description": "",
|
||||
"source_reference": {
|
||||
"page": ""
|
||||
|
||||
@@ -359,7 +359,43 @@
|
||||
},
|
||||
{
|
||||
"id": "Fear of [Common Creature]",
|
||||
"name": "Fear of [Common Creature] (WIP)",
|
||||
"name": "Phobie des [Créature Ordinaire]",
|
||||
"types": "Mental",
|
||||
"description": "",
|
||||
"source_reference": {
|
||||
"page": "106"
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "Fear of Mediocrity",
|
||||
"name": "Crainte de la médiocrité",
|
||||
"types": "Relations, Mental",
|
||||
"description": "",
|
||||
"source_reference": {
|
||||
"page": "105"
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "Fear of Poison",
|
||||
"name": "Peur du poison",
|
||||
"types": "Mental",
|
||||
"description": "",
|
||||
"source_reference": {
|
||||
"page": "106"
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "Animal Signs",
|
||||
"name": "Animal Signs (WIP)",
|
||||
"types": "Mental, Spirituel",
|
||||
"description": "",
|
||||
"source_reference": {
|
||||
"page": ""
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "Disdain for Urban Sprawl",
|
||||
"name": "Disdain for Urban Sprawl (WIP)",
|
||||
"types": "Mental",
|
||||
"description": "",
|
||||
"source_reference": {
|
||||
@@ -367,17 +403,8 @@
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "Fear of Mediocrity",
|
||||
"name": "Fear of Mediocrity (WIP)",
|
||||
"types": "Relations, Mental",
|
||||
"description": "",
|
||||
"source_reference": {
|
||||
"page": ""
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "Fear of Poison",
|
||||
"name": "Fear of Poison (WIP)",
|
||||
"id": "Tip of the Tongue",
|
||||
"name": "Tip of the Tongue (WIP)",
|
||||
"types": "Mental",
|
||||
"description": "",
|
||||
"source_reference": {
|
||||
|
||||
@@ -620,26 +620,53 @@
|
||||
},
|
||||
{
|
||||
"id": "Knowledgeable Wilderness Guide",
|
||||
"name": "Knowledgeable Wilderness Guide (WIP)",
|
||||
"name": "Guide de plein air expert",
|
||||
"types": "Relations, Spirituel",
|
||||
"description": "",
|
||||
"source_reference": {
|
||||
"page": ""
|
||||
"page": "102"
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "Skilled Midwife",
|
||||
"name": "Skilled Midwife (WIP)",
|
||||
"name": "Sage-femme compétente",
|
||||
"types": "Relations",
|
||||
"description": "",
|
||||
"source_reference": {
|
||||
"page": "102"
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "Thoughtful Arbiter",
|
||||
"name": "Arbitre réfléchi",
|
||||
"types": "Relations",
|
||||
"description": "",
|
||||
"source_reference": {
|
||||
"page": "102"
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "Affinity with [Animal Type]",
|
||||
"name": "Affinity with [Animal Type] (WIP)",
|
||||
"types": "Renommée, Relations",
|
||||
"description": "",
|
||||
"source_reference": {
|
||||
"page": ""
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "Thoughtful Arbiter",
|
||||
"name": "Thoughtful Arbiter (WIP)",
|
||||
"types": "Relations",
|
||||
"id": "Legal Scholarship",
|
||||
"name": "Legal Scholarship (WIP)",
|
||||
"types": "Relations, Social",
|
||||
"description": "",
|
||||
"source_reference": {
|
||||
"page": ""
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "Syncretic Philosophy",
|
||||
"name": "Syncretic Philosophy (WIP)",
|
||||
"types": "Relations, Mental",
|
||||
"description": "",
|
||||
"source_reference": {
|
||||
"page": ""
|
||||
|
||||
@@ -377,17 +377,44 @@
|
||||
},
|
||||
{
|
||||
"id": "Charity",
|
||||
"name": "Charity (WIP)",
|
||||
"name": "Charité",
|
||||
"types": "Relations, Mental",
|
||||
"description": "",
|
||||
"source_reference": {
|
||||
"page": "103"
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "Kintsugi",
|
||||
"name": "Kintsugi",
|
||||
"types": "Mental, Physique",
|
||||
"description": "",
|
||||
"source_reference": {
|
||||
"page": "104"
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "Horse Racing",
|
||||
"name": "Horse Racing (WIP)",
|
||||
"types": "Physique",
|
||||
"description": "",
|
||||
"source_reference": {
|
||||
"page": ""
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "Kintsugi",
|
||||
"name": "Kintsugi (WIP)",
|
||||
"types": "Mental, Physique",
|
||||
"id": "Hot Pot",
|
||||
"name": "Hot Pot (WIP)",
|
||||
"types": "Relations, Physique",
|
||||
"description": "",
|
||||
"source_reference": {
|
||||
"page": ""
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "Stargazing",
|
||||
"name": "Stargazing (WIP)",
|
||||
"types": "Mental, Spirituel",
|
||||
"description": "",
|
||||
"source_reference": {
|
||||
"page": ""
|
||||
|
||||
@@ -276,6 +276,38 @@
|
||||
"source_reference": {
|
||||
"page": "105"
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "Ujik Horsebow Pattern",
|
||||
"name": "Ujik Horsebow Pattern (WIP)",
|
||||
"description": "",
|
||||
"source_reference": {
|
||||
"page": ""
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "Utsuko Pattern",
|
||||
"name": "Utsuko Pattern (WIP)",
|
||||
"description": "",
|
||||
"source_reference": {
|
||||
"page": ""
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "Watered Steel Pattern",
|
||||
"name": "Watered Steel Pattern (WIP)",
|
||||
"description": "",
|
||||
"source_reference": {
|
||||
"page": ""
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "Hewing",
|
||||
"name": "Hewing (WIP)",
|
||||
"description": "",
|
||||
"source_reference": {
|
||||
"page": ""
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
|
||||
@@ -604,6 +604,14 @@
|
||||
"source_reference": {
|
||||
"page": "114"
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "The World is Not Heavy",
|
||||
"name": "The World is Not Heavy (WIP)",
|
||||
"description": "",
|
||||
"source_reference": {
|
||||
"page": ""
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
|
||||
@@ -535,111 +535,183 @@
|
||||
},
|
||||
{
|
||||
"id": "Bear’s Swipe Style",
|
||||
"name": "Bear’s Swipe Style (WIP)",
|
||||
"name": "Style de la gifle de l’ours",
|
||||
"description": "",
|
||||
"source_reference": {
|
||||
"page": ""
|
||||
"page": "114"
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "Serpent’s Twist Style",
|
||||
"name": "Serpent’s Twist Style (WIP)",
|
||||
"name": "Style de la contorsion du serpent",
|
||||
"description": "",
|
||||
"source_reference": {
|
||||
"page": ""
|
||||
"page": "114"
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "Swallow’s Dart Style",
|
||||
"name": "Swallow’s Dart Style (WIP)",
|
||||
"name": "Style de la vivacité de l’hirondelle",
|
||||
"description": "",
|
||||
"source_reference": {
|
||||
"page": ""
|
||||
"page": "115"
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "Tiger’s Lunge Style",
|
||||
"name": "Tiger’s Lunge Style (WIP)",
|
||||
"name": "Style de l’attaque du tigre",
|
||||
"description": "",
|
||||
"source_reference": {
|
||||
"page": ""
|
||||
"page": "115"
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "Flexible Grip",
|
||||
"name": "Flexible Grip (WIP)",
|
||||
"name": "Prise flexible",
|
||||
"description": "",
|
||||
"source_reference": {
|
||||
"page": ""
|
||||
"page": "116"
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "Howling Gale Defense",
|
||||
"name": "Howling Gale Defense (WIP)",
|
||||
"name": "Défense de la bourrasque hurlante",
|
||||
"description": "",
|
||||
"source_reference": {
|
||||
"page": ""
|
||||
"page": "115"
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "Heron’s Grasp Style",
|
||||
"name": "Heron’s Grasp Style (WIP)",
|
||||
"name": "Style de l’étreinte du héron",
|
||||
"description": "",
|
||||
"source_reference": {
|
||||
"page": ""
|
||||
"page": "116"
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "Serow’s Leap Style",
|
||||
"name": "Serow’s Leap Style (WIP)",
|
||||
"name": "Style du saro bondissant",
|
||||
"description": "",
|
||||
"source_reference": {
|
||||
"page": ""
|
||||
"page": "116"
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "Tumbling Oak Style",
|
||||
"name": "Tumbling Oak Style (WIP)",
|
||||
"name": "Style de la chute du chêne",
|
||||
"description": "",
|
||||
"source_reference": {
|
||||
"page": ""
|
||||
"page": "116"
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "Flight",
|
||||
"name": "Flight (WIP)",
|
||||
"name": "Vol",
|
||||
"description": "",
|
||||
"source_reference": {
|
||||
"page": ""
|
||||
"page": "118"
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "Razor Bite",
|
||||
"name": "Razor Bite (WIP)",
|
||||
"name": "Morsure acérée",
|
||||
"description": "",
|
||||
"source_reference": {
|
||||
"page": ""
|
||||
"page": "117"
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "Owl’s Swoop Style",
|
||||
"name": "Owl’s Swoop Style (WIP)",
|
||||
"name": "Style du piqué de la chouette",
|
||||
"description": "",
|
||||
"source_reference": {
|
||||
"page": ""
|
||||
"page": "118"
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "Skittering Shift",
|
||||
"name": "Skittering Shift (WIP)",
|
||||
"name": "Déguerpissement prompt",
|
||||
"description": "",
|
||||
"source_reference": {
|
||||
"page": "117"
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "Tail Sweep",
|
||||
"name": "Balayage caudal",
|
||||
"description": "",
|
||||
"source_reference": {
|
||||
"page": "117"
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "Cautious Tread",
|
||||
"name": "Cautious Tread (WIP)",
|
||||
"description": "",
|
||||
"source_reference": {
|
||||
"page": ""
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "Tail Sweep",
|
||||
"name": "Tail Sweep (WIP)",
|
||||
"id": "Stalking Leopard Style",
|
||||
"name": "Stalking Leopard Style (WIP)",
|
||||
"description": "",
|
||||
"source_reference": {
|
||||
"page": ""
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "Sudden Downpour Style",
|
||||
"name": "Sudden Downpour Style (WIP)",
|
||||
"description": "",
|
||||
"source_reference": {
|
||||
"page": ""
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "Swaying Grass Evasion",
|
||||
"name": "Swaying Grass Evasion (WIP)",
|
||||
"description": "",
|
||||
"source_reference": {
|
||||
"page": ""
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "Distracting Flurry Style",
|
||||
"name": "Distracting Flurry Style (WIP)",
|
||||
"description": "",
|
||||
"source_reference": {
|
||||
"page": ""
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "Scouring Wind Style",
|
||||
"name": "Scouring Wind Style (WIP)",
|
||||
"description": "",
|
||||
"source_reference": {
|
||||
"page": ""
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "Slashing Sandstorm Style",
|
||||
"name": "Slashing Sandstorm Style (WIP)",
|
||||
"description": "",
|
||||
"source_reference": {
|
||||
"page": ""
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "Descending Swarm Shot",
|
||||
"name": "Descending Swarm Shot (WIP)",
|
||||
"description": "",
|
||||
"source_reference": {
|
||||
"page": ""
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "Thunderbolt Style",
|
||||
"name": "Thunderbolt Style (WIP)",
|
||||
"description": "",
|
||||
"source_reference": {
|
||||
"page": ""
|
||||
|
||||
@@ -191,122 +191,122 @@
|
||||
},
|
||||
{
|
||||
"id": "Mercy of the Stone Fortune",
|
||||
"name": "Mercy of the Stone Fortune (WIP)",
|
||||
"name": "Pitié de la fortune de la pierre",
|
||||
"description": "",
|
||||
"source_reference": {
|
||||
"page": ""
|
||||
"page": "109"
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "Rejuvenating Breath",
|
||||
"name": "Rejuvenating Breath (WIP)",
|
||||
"name": "Souffle revigorant",
|
||||
"description": "",
|
||||
"source_reference": {
|
||||
"page": ""
|
||||
"page": "109"
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "Shadow of Ancient Peaks",
|
||||
"name": "Shadow of Ancient Peaks (WIP)",
|
||||
"name": "A l’ombre des pics antiques",
|
||||
"description": "",
|
||||
"source_reference": {
|
||||
"page": ""
|
||||
"page": "109"
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "Cutting Wind Talons",
|
||||
"name": "Cutting Wind Talons (WIP)",
|
||||
"name": "Serres du vent tranchant",
|
||||
"description": "",
|
||||
"source_reference": {
|
||||
"page": ""
|
||||
"page": "110"
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "Grace of the Gentle Breeze",
|
||||
"name": "Grace of the Gentle Breeze (WIP)",
|
||||
"name": "Grâce de la douce brise",
|
||||
"description": "",
|
||||
"source_reference": {
|
||||
"page": ""
|
||||
"page": "109"
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "Step of the Storm",
|
||||
"name": "Step of the Storm (WIP)",
|
||||
"name": "Bond de la tempête",
|
||||
"description": "",
|
||||
"source_reference": {
|
||||
"page": ""
|
||||
"page": "110"
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "Blistering Retribution",
|
||||
"name": "Blistering Retribution (WIP)",
|
||||
"name": "Rétribution foudroyante",
|
||||
"description": "",
|
||||
"source_reference": {
|
||||
"page": ""
|
||||
"page": "111"
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "Dance of Fire",
|
||||
"name": "Dance of Fire (WIP)",
|
||||
"name": "Danse du Feu",
|
||||
"description": "",
|
||||
"source_reference": {
|
||||
"page": ""
|
||||
"page": "110"
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "Volcanic Fist",
|
||||
"name": "Volcanic Fist (WIP)",
|
||||
"name": "Poing volcanique",
|
||||
"description": "",
|
||||
"source_reference": {
|
||||
"page": ""
|
||||
"page": "110"
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "Fist of Spreading Venom",
|
||||
"name": "Fist of Spreading Venom (WIP)",
|
||||
"name": "Poing propagateur de poison",
|
||||
"description": "",
|
||||
"source_reference": {
|
||||
"page": ""
|
||||
"page": "112"
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "River’s Flowing Stride",
|
||||
"name": "River’s Flowing Stride (WIP)",
|
||||
"name": "Allure du cours d’eau",
|
||||
"description": "",
|
||||
"source_reference": {
|
||||
"page": ""
|
||||
"page": "112"
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "Seeping Ki",
|
||||
"name": "Seeping Ki (WIP)",
|
||||
"name": "Ruissellement de ki",
|
||||
"description": "",
|
||||
"source_reference": {
|
||||
"page": ""
|
||||
"page": "112"
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "Aura Awareness",
|
||||
"name": "Aura Awareness (WIP)",
|
||||
"name": "Perception des auras",
|
||||
"description": "",
|
||||
"source_reference": {
|
||||
"page": ""
|
||||
"page": "113"
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "Essence of Stillness",
|
||||
"name": "Essence of Stillness (WIP)",
|
||||
"name": "Essence de l’immobilité",
|
||||
"description": "",
|
||||
"source_reference": {
|
||||
"page": ""
|
||||
"page": "113"
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "Eternal Mind’s Gate",
|
||||
"name": "Eternal Mind’s Gate (WIP)",
|
||||
"name": "Portail de l’esprit éternel",
|
||||
"description": "",
|
||||
"source_reference": {
|
||||
"page": ""
|
||||
"page": "113"
|
||||
}
|
||||
}
|
||||
]
|
||||
|
||||
@@ -743,50 +743,50 @@
|
||||
},
|
||||
{
|
||||
"id": "Whispers of the Kami",
|
||||
"name": "Whispers of the Kami (WIP)",
|
||||
"name": "Murmures des kamis",
|
||||
"description": "",
|
||||
"source_reference": {
|
||||
"page": ""
|
||||
"page": "96"
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "Smiling Mountain Tradition",
|
||||
"name": "Smiling Mountain Tradition (WIP)",
|
||||
"name": "Tradition de la montagne Rieuse",
|
||||
"description": "",
|
||||
"source_reference": {
|
||||
"page": ""
|
||||
"page": "97"
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "Scaled Hide",
|
||||
"name": "Scaled Hide (WIP)",
|
||||
"name": "Epaisse peau écailleuse",
|
||||
"description": "",
|
||||
"source_reference": {
|
||||
"page": ""
|
||||
"page": "98"
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "Reflexive Strike",
|
||||
"name": "Reflexive Strike (WIP)",
|
||||
"name": "Attaque réflexe",
|
||||
"description": "",
|
||||
"source_reference": {
|
||||
"page": ""
|
||||
"page": "99"
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "A Master of Study",
|
||||
"name": "A Master of Study (WIP)",
|
||||
"name": "Un maître de l’apprentissage",
|
||||
"description": "",
|
||||
"source_reference": {
|
||||
"page": ""
|
||||
"page": "100"
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "Born to Survive",
|
||||
"name": "Born to Survive (WIP)",
|
||||
"name": "Né pour survivre",
|
||||
"description": "",
|
||||
"source_reference": {
|
||||
"page": ""
|
||||
"page": "101"
|
||||
}
|
||||
},
|
||||
{
|
||||
@@ -804,6 +804,86 @@
|
||||
"source_reference": {
|
||||
"page": "25"
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "Measured Force",
|
||||
"name": "Measured Force (WIP)",
|
||||
"description": "",
|
||||
"source_reference": {
|
||||
"page": ""
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "Student of Many Courts",
|
||||
"name": "Student of Many Courts (WIP)",
|
||||
"description": "",
|
||||
"source_reference": {
|
||||
"page": ""
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "The Noble Heart Shines Through",
|
||||
"name": "The Noble Heart Shines Through (WIP)",
|
||||
"description": "",
|
||||
"source_reference": {
|
||||
"page": ""
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "Cool Heads Prevail",
|
||||
"name": "Cool Heads Prevail (WIP)",
|
||||
"description": "",
|
||||
"source_reference": {
|
||||
"page": ""
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "Procession of Seasons",
|
||||
"name": "Procession of Seasons (WIP)",
|
||||
"description": "",
|
||||
"source_reference": {
|
||||
"page": ""
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "Lay of the Land",
|
||||
"name": "Lay of the Land (WIP)",
|
||||
"description": "",
|
||||
"source_reference": {
|
||||
"page": ""
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "Logical Conclusion",
|
||||
"name": "Logical Conclusion (WIP)",
|
||||
"description": "",
|
||||
"source_reference": {
|
||||
"page": ""
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "Spirit of the Sacred Horse",
|
||||
"name": "Spirit of the Sacred Horse (WIP)",
|
||||
"description": "",
|
||||
"source_reference": {
|
||||
"page": ""
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "Reputation Sentinel",
|
||||
"name": "Reputation Sentinel (WIP)",
|
||||
"description": "",
|
||||
"source_reference": {
|
||||
"page": ""
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "Legendary Endurance",
|
||||
"name": "Legendary Endurance (WIP)",
|
||||
"description": "",
|
||||
"source_reference": {
|
||||
"page": ""
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
|
||||
@@ -206,7 +206,7 @@
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "Beseech Hida's MIght",
|
||||
"id": "Beseech Hida's Might",
|
||||
"name": "Implorer la puissance de Hida",
|
||||
"description": "",
|
||||
"source_reference": {
|
||||
@@ -247,39 +247,95 @@
|
||||
},
|
||||
{
|
||||
"id": "Chikushō-dō’s Guile",
|
||||
"name": "Chikushō-dō’s Guile (WIP)",
|
||||
"name": "Duplicité du Chikushō-dō",
|
||||
"description": "",
|
||||
"source_reference": {
|
||||
"page": ""
|
||||
"page": "118"
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "Guard Against the Elements",
|
||||
"name": "Guard Against the Elements (WIP)",
|
||||
"name": "Protection contre les éléments",
|
||||
"description": "",
|
||||
"source_reference": {
|
||||
"page": ""
|
||||
"page": "119"
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "Cunning Snares",
|
||||
"name": "Cunning Snares (WIP)",
|
||||
"name": "Pièges astucieux",
|
||||
"description": "",
|
||||
"source_reference": {
|
||||
"page": ""
|
||||
"page": "119"
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "Hunter’s Expertise",
|
||||
"name": "Hunter’s Expertise (WIP)",
|
||||
"name": "Expertise du chasseur",
|
||||
"description": "",
|
||||
"source_reference": {
|
||||
"page": "119"
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "Trance of Lives Past",
|
||||
"name": "Transe des vies antérieures",
|
||||
"description": "",
|
||||
"source_reference": {
|
||||
"page": "120"
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "Center the World",
|
||||
"name": "Center the World (WIP)",
|
||||
"description": "",
|
||||
"source_reference": {
|
||||
"page": ""
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "Trance of Lives Past",
|
||||
"name": "Trance of Lives Past (WIP)",
|
||||
"id": "Cultural Exchange",
|
||||
"name": "Cultural Exchange (WIP)",
|
||||
"description": "",
|
||||
"source_reference": {
|
||||
"page": ""
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "Protection of the Flock",
|
||||
"name": "Protection of the Flock (WIP)",
|
||||
"description": "",
|
||||
"source_reference": {
|
||||
"page": ""
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "Shadow of Days",
|
||||
"name": "Shadow of Days (WIP)",
|
||||
"description": "",
|
||||
"source_reference": {
|
||||
"page": ""
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "Spiritual Survey",
|
||||
"name": "Spiritual Survey (WIP)",
|
||||
"description": "",
|
||||
"source_reference": {
|
||||
"page": ""
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "Traveler's Experience",
|
||||
"name": "Traveler's Experience (WIP)",
|
||||
"description": "",
|
||||
"source_reference": {
|
||||
"page": ""
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "Wayfinder's Instincts",
|
||||
"name": "Wayfinder's Instincts (WIP)",
|
||||
"description": "",
|
||||
"source_reference": {
|
||||
"page": ""
|
||||
|
||||
@@ -743,50 +743,50 @@
|
||||
},
|
||||
{
|
||||
"id": "May the Spirits Show the Path",
|
||||
"name": "May the Spirits Show the Path (WIP)",
|
||||
"name": "Que les esprits montrent la voie",
|
||||
"description": "",
|
||||
"source_reference": {
|
||||
"page": ""
|
||||
"page": "96"
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "Laughter Makes the Home",
|
||||
"name": "Laughter Makes the Home (WIP)",
|
||||
"name": "On rit comme chez soi",
|
||||
"description": "",
|
||||
"source_reference": {
|
||||
"page": ""
|
||||
"page": "97"
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "Bend Perception",
|
||||
"name": "Bend Perception (WIP)",
|
||||
"name": "Fausser les perceptions",
|
||||
"description": "",
|
||||
"source_reference": {
|
||||
"page": ""
|
||||
"page": "98"
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "Keen Senses",
|
||||
"name": "Keen Senses (WIP)",
|
||||
"name": "Sens Développés",
|
||||
"description": "",
|
||||
"source_reference": {
|
||||
"page": ""
|
||||
"page": "99"
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "Mind of Calm",
|
||||
"name": "Mind of Calm (WIP)",
|
||||
"name": "Esprit de calme",
|
||||
"description": "",
|
||||
"source_reference": {
|
||||
"page": ""
|
||||
"page": "100"
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "Evolution of the Wilds",
|
||||
"name": "Evolution of the Wilds (WIP)",
|
||||
"name": "Evolution de la nature",
|
||||
"description": "",
|
||||
"source_reference": {
|
||||
"page": ""
|
||||
"page": "101"
|
||||
}
|
||||
},
|
||||
{
|
||||
@@ -804,6 +804,86 @@
|
||||
"source_reference": {
|
||||
"page": "25"
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "Moment of Certainty",
|
||||
"name": "Moment of Certainty (WIP)",
|
||||
"description": "",
|
||||
"source_reference": {
|
||||
"page": ""
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "Disarming Demeanor",
|
||||
"name": "Disarming Demeanor (WIP)",
|
||||
"description": "",
|
||||
"source_reference": {
|
||||
"page": ""
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "The Horse Lord's Favor",
|
||||
"name": "The Horse Lord's Favor (WIP)",
|
||||
"description": "",
|
||||
"source_reference": {
|
||||
"page": ""
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "Calm Counsel",
|
||||
"name": "Calm Counsel (WIP)",
|
||||
"description": "",
|
||||
"source_reference": {
|
||||
"page": ""
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "Natural Balance",
|
||||
"name": "Natural Balance (WIP)",
|
||||
"description": "",
|
||||
"source_reference": {
|
||||
"page": ""
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "Dunestrider",
|
||||
"name": "Dunestrider (WIP)",
|
||||
"description": "",
|
||||
"source_reference": {
|
||||
"page": ""
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "Methodical Observation",
|
||||
"name": "Methodical Observation (WIP)",
|
||||
"description": "",
|
||||
"source_reference": {
|
||||
"page": ""
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "Unity of Horse and Rider",
|
||||
"name": "Unity of Horse and Rider (WIP)",
|
||||
"description": "",
|
||||
"source_reference": {
|
||||
"page": ""
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "Warden of the Five Winds",
|
||||
"name": "Warden of the Five Winds (WIP)",
|
||||
"description": "",
|
||||
"source_reference": {
|
||||
"page": ""
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "Move as the Wind",
|
||||
"name": "Move as the Wind (WIP)",
|
||||
"description": "",
|
||||
"source_reference": {
|
||||
"page": ""
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
|
||||
@@ -708,6 +708,102 @@
|
||||
"source_reference": {
|
||||
"page": "93"
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "Cunning Omission",
|
||||
"name": "Cunning Omission (WIP)",
|
||||
"description": "",
|
||||
"source_reference": {
|
||||
"page": ""
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "Entice with Offerings",
|
||||
"name": "Entice with Offerings (WIP)",
|
||||
"description": "",
|
||||
"source_reference": {
|
||||
"page": ""
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "Trader's Intuition",
|
||||
"name": "Trader's Intuition (WIP)",
|
||||
"description": "",
|
||||
"source_reference": {
|
||||
"page": ""
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "Cite the Facts",
|
||||
"name": "Cite the Facts (WIP)",
|
||||
"description": "",
|
||||
"source_reference": {
|
||||
"page": ""
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "Solidify Gratitude",
|
||||
"name": "Solidify Gratitude (WIP)",
|
||||
"description": "",
|
||||
"source_reference": {
|
||||
"page": ""
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "Glorious Entrance",
|
||||
"name": "Glorious Entrance (WIP)",
|
||||
"description": "",
|
||||
"source_reference": {
|
||||
"page": ""
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "Incite Wrath",
|
||||
"name": "Incite Wrath (WIP)",
|
||||
"description": "",
|
||||
"source_reference": {
|
||||
"page": ""
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "Call to Ride",
|
||||
"name": "Call to Ride (WIP)",
|
||||
"description": "",
|
||||
"source_reference": {
|
||||
"page": ""
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "Complementary Experience",
|
||||
"name": "Complementary Experience (WIP)",
|
||||
"description": "",
|
||||
"source_reference": {
|
||||
"page": ""
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "Everyone Has a Price",
|
||||
"name": "Everyone Has a Price (WIP)",
|
||||
"description": "",
|
||||
"source_reference": {
|
||||
"page": ""
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "Horse Whisperer",
|
||||
"name": "Horse Whisperer (WIP)",
|
||||
"description": "",
|
||||
"source_reference": {
|
||||
"page": ""
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "Appreciate the Scenery",
|
||||
"name": "Appreciate the Scenery (WIP)",
|
||||
"description": "",
|
||||
"source_reference": {
|
||||
"page": ""
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
|
||||
@@ -335,34 +335,34 @@
|
||||
},
|
||||
{
|
||||
"id": "Awakened Soul",
|
||||
"name": "Awakened Soul (WIP)",
|
||||
"description": "<h2>Cursus</h2><table><tr><td>Compétences Sociales</td><td>Grp. de comp.</td></tr><tr><td>Compétences Savantes</td><td>Grp. de comp.</td></tr><tr><td>Culture</td><td>Compétence</td></tr><tr><td>Méditation</td><td>Compétence</td></tr><tr><td>Survie</td><td>Compétence</td></tr><tr><td>Théologie</td><td>Compétence</td></tr><tr><td><a class=\"entity-link content-link\" draggable=\"true\" data-link=\"\" data-uuid=\"Compendium.l5r5e.core-techniques-kiho.Item.L5RCoreKih000038\" data-pack=\"l5r5e.core-techniques-kiho\" data-type=\"Item\" data-id=\"L5RCoreKih000038\">(kiho) Eternal Mind’s Gate (WIP)</a> (prereq)</td><td>Technique</td></tr><tr><td><a class=\"entity-link content-link\" draggable=\"true\" data-link=\"\" data-uuid=\"Compendium.l5r5e.core-techniques-rituals.Item.L5RCoreRit000035\" data-pack=\"l5r5e.core-techniques-rituals\" data-type=\"Item\" data-id=\"L5RCoreRit000035\">(ritual) Trance of Lives Past (WIP)</a> (prereq)</td><td>Technique</td></tr></table>",
|
||||
"name": "Ame éveillée",
|
||||
"description": "<h2>Cursus</h2><table><tr><td>Compétences Sociales</td><td>Grp. de comp.</td></tr><tr><td>Compétences Savantes</td><td>Grp. de comp.</td></tr><tr><td>Culture</td><td>Compétence</td></tr><tr><td>Méditation</td><td>Compétence</td></tr><tr><td>Survie</td><td>Compétence</td></tr><tr><td>Théologie</td><td>Compétence</td></tr><tr><td><a class=\"entity-link content-link\" draggable=\"true\" data-link=\"\" data-uuid=\"Compendium.l5r5e.core-techniques-kiho.Item.L5RCoreKih000038\" data-pack=\"l5r5e.core-techniques-kiho\" data-type=\"Item\" data-id=\"L5RCoreKih000038\">(kiho) Portail de l’esprit éternel</a> (prereq)</td><td>Technique</td></tr><tr><td><a class=\"entity-link content-link\" draggable=\"true\" data-link=\"\" data-uuid=\"Compendium.l5r5e.core-techniques-rituals.Item.L5RCoreRit000035\" data-pack=\"l5r5e.core-techniques-rituals\" data-type=\"Item\" data-id=\"L5RCoreRit000035\">(ritual) Transe des vies antérieures</a> (prereq)</td><td>Technique</td></tr></table>",
|
||||
"source_reference": {
|
||||
"page": ""
|
||||
"page": "142"
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "Forester",
|
||||
"name": "Forester (WIP)",
|
||||
"name": "Forestier",
|
||||
"description": "<h2>Cursus</h2><table><tr><td>Compétences Sociales</td><td>Grp. de comp.</td></tr><tr><td>Compétences Savantes</td><td>Grp. de comp.</td></tr><tr><td>Courtoisie</td><td>Compétence</td></tr><tr><td>Sentiments</td><td>Compétence</td></tr><tr><td>Survie</td><td>Compétence</td></tr><tr><td>Théologie</td><td>Compétence</td></tr><tr><td><a class=\"compendium-link\" data-pack=\"l5r5e.core-techniques-invocations\">(invocation) Invocations de la Terre ou de l’Eau de rang 1-2</a> (prereq)</td><td>Tech. Grp.</td></tr><tr><td><a class=\"compendium-link\" data-pack=\"l5r5e.core-techniques-shuji\">(shuji) Shuji de rang 1-3</a> (prereq)</td><td>Tech. Grp.</td></tr></table>",
|
||||
"source_reference": {
|
||||
"page": ""
|
||||
"page": "142"
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "Temple Abbot",
|
||||
"name": "Temple Abbot (WIP)",
|
||||
"description": "<h2>Cursus</h2><table><tr><td>Compétences Sociales</td><td>Grp. de comp.</td></tr><tr><td>Compétences Savantes</td><td>Grp. de comp.</td></tr><tr><td>Culture</td><td>Compétence</td></tr><tr><td>Méditation</td><td>Compétence</td></tr><tr><td>Théologie</td><td>Compétence</td></tr><tr><td><a class=\"entity-link content-link\" draggable=\"true\" data-link=\"\" data-uuid=\"Compendium.l5r5e.core-techniques-rituals.Item.L5RCoreRit000004\" data-pack=\"l5r5e.core-techniques-rituals\" data-type=\"Item\" data-id=\"L5RCoreRit000004\">(ritual) Rite de purification</a> (prereq)</td><td>Technique</td></tr><tr><td><a class=\"entity-link content-link\" draggable=\"true\" data-link=\"\" data-uuid=\"Compendium.l5r5e.core-techniques-kiho.Item.L5RCoreKih000025\" data-pack=\"l5r5e.core-techniques-kiho\" data-type=\"Item\" data-id=\"L5RCoreKih000025\">(kiho) Rejuvenating Breath (WIP)</a> (prereq)</td><td>Technique</td></tr><tr><td><a class=\"entity-link content-link\" draggable=\"true\" data-link=\"\" data-uuid=\"Compendium.l5r5e.core-techniques-shuji.Item.L5RCoreShu000011\" data-pack=\"l5r5e.core-techniques-shuji\" data-type=\"Item\" data-id=\"L5RCoreShu000011\">(shuji) Courage exemplaire</a> (prereq)</td><td>Technique</td></tr></table>",
|
||||
"name": "Abbé",
|
||||
"description": "<h2>Cursus</h2><table><tr><td>Compétences Sociales</td><td>Grp. de comp.</td></tr><tr><td>Compétences Savantes</td><td>Grp. de comp.</td></tr><tr><td>Culture</td><td>Compétence</td></tr><tr><td>Méditation</td><td>Compétence</td></tr><tr><td>Théologie</td><td>Compétence</td></tr><tr><td><a class=\"entity-link content-link\" draggable=\"true\" data-link=\"\" data-uuid=\"Compendium.l5r5e.core-techniques-rituals.Item.L5RCoreRit000004\" data-pack=\"l5r5e.core-techniques-rituals\" data-type=\"Item\" data-id=\"L5RCoreRit000004\">(ritual) Rite de purification</a> (prereq)</td><td>Technique</td></tr><tr><td><a class=\"entity-link content-link\" draggable=\"true\" data-link=\"\" data-uuid=\"Compendium.l5r5e.core-techniques-kiho.Item.L5RCoreKih000025\" data-pack=\"l5r5e.core-techniques-kiho\" data-type=\"Item\" data-id=\"L5RCoreKih000025\">(kiho) Souffle revigorant</a> (prereq)</td><td>Technique</td></tr><tr><td><a class=\"entity-link content-link\" draggable=\"true\" data-link=\"\" data-uuid=\"Compendium.l5r5e.core-techniques-shuji.Item.L5RCoreShu000011\" data-pack=\"l5r5e.core-techniques-shuji\" data-type=\"Item\" data-id=\"L5RCoreShu000011\">(shuji) Courage exemplaire</a> (prereq)</td><td>Technique</td></tr></table>",
|
||||
"source_reference": {
|
||||
"page": ""
|
||||
"page": "143"
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "Yōkai Hunter",
|
||||
"name": "Yōkai Hunter (WIP)",
|
||||
"description": "<h2>Cursus</h2><table><tr><td>Compétences Savantes</td><td>Grp. de comp.</td></tr><tr><td>Compétences Martiales</td><td>Grp. de comp.</td></tr><tr><td>Commandement</td><td>Compétence</td></tr><tr><td>Courtoisie</td><td>Compétence</td></tr><tr><td>Survie</td><td>Compétence</td></tr><tr><td><a class=\"entity-link content-link\" draggable=\"true\" data-link=\"\" data-uuid=\"Compendium.l5r5e.core-techniques-kiho.Item.L5RCoreKih000030\" data-pack=\"l5r5e.core-techniques-kiho\" data-type=\"Item\" data-id=\"L5RCoreKih000030\">(kiho) Blistering Retribution (WIP)</a> (prereq)</td><td>Technique</td></tr><tr><td><a class=\"entity-link content-link\" draggable=\"true\" data-link=\"\" data-uuid=\"Compendium.l5r5e.core-techniques-kata.Item.L5RCoreKat000070\" data-pack=\"l5r5e.core-techniques-kata\" data-type=\"Item\" data-id=\"L5RCoreKat000070\">(kata) Swallow’s Dart Style (WIP)</a> (prereq)</td><td>Technique</td></tr><tr><td><a class=\"entity-link content-link\" draggable=\"true\" data-link=\"\" data-uuid=\"Compendium.l5r5e.core-techniques-kata.Item.L5RCoreKat000071\" data-pack=\"l5r5e.core-techniques-kata\" data-type=\"Item\" data-id=\"L5RCoreKat000071\">(kata) Tiger’s Lunge Style (WIP)</a> (prereq)</td><td>Technique</td></tr></table>",
|
||||
"name": "Chasseur de yōkai",
|
||||
"description": "<h2>Cursus</h2><table><tr><td>Compétences Savantes</td><td>Grp. de comp.</td></tr><tr><td>Compétences Martiales</td><td>Grp. de comp.</td></tr><tr><td>Commandement</td><td>Compétence</td></tr><tr><td>Courtoisie</td><td>Compétence</td></tr><tr><td>Survie</td><td>Compétence</td></tr><tr><td><a class=\"entity-link content-link\" draggable=\"true\" data-link=\"\" data-uuid=\"Compendium.l5r5e.core-techniques-kiho.Item.L5RCoreKih000030\" data-pack=\"l5r5e.core-techniques-kiho\" data-type=\"Item\" data-id=\"L5RCoreKih000030\">(kiho) Rétribution foudroyante</a> (prereq)</td><td>Technique</td></tr><tr><td><a class=\"entity-link content-link\" draggable=\"true\" data-link=\"\" data-uuid=\"Compendium.l5r5e.core-techniques-kata.Item.L5RCoreKat000070\" data-pack=\"l5r5e.core-techniques-kata\" data-type=\"Item\" data-id=\"L5RCoreKat000070\">(kata) Style de la vivacité de l’hirondelle</a> (prereq)</td><td>Technique</td></tr><tr><td><a class=\"entity-link content-link\" draggable=\"true\" data-link=\"\" data-uuid=\"Compendium.l5r5e.core-techniques-kata.Item.L5RCoreKat000071\" data-pack=\"l5r5e.core-techniques-kata\" data-type=\"Item\" data-id=\"L5RCoreKat000071\">(kata) Style de l’attaque du tigre</a> (prereq)</td><td>Technique</td></tr></table>",
|
||||
"source_reference": {
|
||||
"page": ""
|
||||
"page": "143"
|
||||
}
|
||||
},
|
||||
{
|
||||
@@ -388,6 +388,62 @@
|
||||
"source_reference": {
|
||||
"page": "21"
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "Animal Handler",
|
||||
"name": "Animal Handler (WIP)",
|
||||
"description": "<h2>Cursus</h2><table><tr><td>Compétences Professionnelles</td><td>Grp. de comp.</td></tr><tr><td>Arts martiaux (mains nues)</td><td>Compétence</td></tr><tr><td>Médecine</td><td>Compétence</td></tr><tr><td>Sentiments</td><td>Compétence</td></tr><tr><td><a class=\"entity-link content-link\" draggable=\"true\" data-link=\"\" data-uuid=\"Compendium.l5r5e.core-techniques-shuji.Item.L5RCoreShu000096\" data-pack=\"l5r5e.core-techniques-shuji\" data-type=\"Item\" data-id=\"L5RCoreShu000096\">(shuji) Call to Ride (WIP)</a> (prereq)</td><td>Technique</td></tr><tr><td><a class=\"entity-link content-link\" draggable=\"true\" data-link=\"\" data-uuid=\"Compendium.l5r5e.core-techniques-shuji.Item.L5RCoreShu000095\" data-pack=\"l5r5e.core-techniques-shuji\" data-type=\"Item\" data-id=\"L5RCoreShu000095\">(shuji) Incite Wrath (WIP)</a> (prereq)</td><td>Technique</td></tr><tr><td><a class=\"entity-link content-link\" draggable=\"true\" data-link=\"\" data-uuid=\"Compendium.l5r5e.core-techniques-shuji.Item.L5RCoreShu000011\" data-pack=\"l5r5e.core-techniques-shuji\" data-type=\"Item\" data-id=\"L5RCoreShu000011\">(shuji) Courage exemplaire</a> (prereq)</td><td>Technique</td></tr></table>",
|
||||
"source_reference": {
|
||||
"page": ""
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "Doomhunter",
|
||||
"name": "Doomhunter (WIP)",
|
||||
"description": "<h2>Cursus</h2><table><tr><td>Compétences Martiales</td><td>Grp. de comp.</td></tr><tr><td>Magouilles</td><td>Compétence</td></tr><tr><td>Survie</td><td>Compétence</td></tr><tr><td>Théologie</td><td>Compétence</td></tr><tr><td><a class=\"compendium-link\" data-pack=\"l5r5e.core-techniques-rituals\">(ritual) Rituels de rang 1-2</a> (prereq)</td><td>Tech. Grp.</td></tr><tr><td><a class=\"entity-link content-link\" draggable=\"true\" data-link=\"\" data-uuid=\"Compendium.l5r5e.core-techniques-ninjutsu.Item.L5RCoreNin000002\" data-pack=\"l5r5e.core-techniques-ninjutsu\" data-type=\"Item\" data-id=\"L5RCoreNin000002\">(ninjutsu) Disparition</a> (prereq)</td><td>Technique</td></tr><tr><td><a class=\"entity-link content-link\" draggable=\"true\" data-link=\"\" data-uuid=\"Compendium.l5r5e.core-techniques-kata.Item.L5RCoreKat000006\" data-pack=\"l5r5e.core-techniques-kata\" data-type=\"Item\" data-id=\"L5RCoreKat000006\">(kata) Destruction de l’âme</a> (prereq)</td><td>Technique</td></tr></table>",
|
||||
"source_reference": {
|
||||
"page": ""
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "Imperial Peacekeeper",
|
||||
"name": "Imperial Peacekeeper (WIP)",
|
||||
"description": "<h2>Cursus</h2><table><tr><td>Compétences Martiales</td><td>Grp. de comp.</td></tr><tr><td>Courtoisie</td><td>Compétence</td></tr><tr><td>Commandement</td><td>Compétence</td></tr><tr><td>Sentiments</td><td>Compétence</td></tr><tr><td><a class=\"compendium-link\" data-pack=\"l5r5e.core-techniques-shuji\">(shuji) Shuji de la Terre de rang 1-2</a> (prereq)</td><td>Tech. Grp.</td></tr><tr><td><a class=\"entity-link content-link\" draggable=\"true\" data-link=\"\" data-uuid=\"Compendium.l5r5e.core-techniques-rituals.Item.L5RCoreRit000037\" data-pack=\"l5r5e.core-techniques-rituals\" data-type=\"Item\" data-id=\"L5RCoreRit000037\">(ritual) Cultural Exchange (WIP)</a> (prereq)</td><td>Technique</td></tr><tr><td><a class=\"entity-link content-link\" draggable=\"true\" data-link=\"\" data-uuid=\"Compendium.l5r5e.core-techniques-shuji.Item.L5RCoreShu000016\" data-pack=\"l5r5e.core-techniques-shuji\" data-type=\"Item\" data-id=\"L5RCoreShu000016\">(shuji) Pilier de sérénité</a> (prereq)</td><td>Technique</td></tr></table>",
|
||||
"source_reference": {
|
||||
"page": ""
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "Interpreter",
|
||||
"name": "Interpreter (WIP)",
|
||||
"description": "<h2>Cursus</h2><table><tr><td>Compétences Sociales</td><td>Grp. de comp.</td></tr><tr><td>Composition</td><td>Compétence</td></tr><tr><td>Culture</td><td>Compétence</td></tr><tr><td>Gouvernement</td><td>Compétence</td></tr><tr><td><a class=\"compendium-link\" data-pack=\"l5r5e.core-techniques-shuji\">(shuji) Shuji de rang 1</a> (prereq)</td><td>Tech. Grp.</td></tr><tr><td><a class=\"entity-link content-link\" draggable=\"true\" data-link=\"\" data-uuid=\"Compendium.l5r5e.core-techniques-rituals.Item.L5RCoreRit000037\" data-pack=\"l5r5e.core-techniques-rituals\" data-type=\"Item\" data-id=\"L5RCoreRit000037\">(ritual) Cultural Exchange (WIP)</a> (prereq)</td><td>Technique</td></tr><tr><td><a class=\"entity-link content-link\" draggable=\"true\" data-link=\"\" data-uuid=\"Compendium.l5r5e.core-techniques-rituals.Item.L5RCoreRit000041\" data-pack=\"l5r5e.core-techniques-rituals\" data-type=\"Item\" data-id=\"L5RCoreRit000041\">(ritual) Traveler's Experience (WIP)</a> (prereq)</td><td>Technique</td></tr></table>",
|
||||
"source_reference": {
|
||||
"page": ""
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "Scarlet Banners Ranger",
|
||||
"name": "Scarlet Banners Ranger (WIP)",
|
||||
"description": "<h2>Cursus</h2><table><tr><td>Compétences Martiales</td><td>Grp. de comp.</td></tr><tr><td>Compétences Professionnelles</td><td>Grp. de comp.</td></tr><tr><td>Gouvernement</td><td>Compétence</td></tr><tr><td>Sentiments</td><td>Compétence</td></tr><tr><td><a class=\"compendium-link\" data-pack=\"l5r5e.core-techniques-kata\">(kata) Kata de rang 1-2</a> (prereq)</td><td>Tech. Grp.</td></tr><tr><td><a class=\"entity-link content-link\" draggable=\"true\" data-link=\"\" data-uuid=\"Compendium.l5r5e.core-techniques-shuji.Item.L5RCoreShu000089\" data-pack=\"l5r5e.core-techniques-shuji\" data-type=\"Item\" data-id=\"L5RCoreShu000089\">(shuji) Cunning Omission (WIP)</a> (prereq)</td><td>Technique</td></tr><tr><td><a class=\"entity-link content-link\" draggable=\"true\" data-link=\"\" data-uuid=\"Compendium.l5r5e.core-techniques-kata.Item.L5RCoreKat000090\" data-pack=\"l5r5e.core-techniques-kata\" data-type=\"Item\" data-id=\"L5RCoreKat000090\">(kata) Thunderbolt Style (WIP)</a> (prereq)</td><td>Technique</td></tr></table>",
|
||||
"source_reference": {
|
||||
"page": ""
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "Student of Names",
|
||||
"name": "Student of Names (WIP)",
|
||||
"description": "<h2>Cursus</h2><table><tr><td>Commandement</td><td>Compétence</td></tr><tr><td>Culture</td><td>Compétence</td></tr><tr><td>Survie</td><td>Compétence</td></tr><tr><td>Théologie</td><td>Compétence</td></tr><tr><td><a class=\"compendium-link\" data-pack=\"l5r5e.core-techniques-invocations\">(invocation) Invocations de rang 1-2</a> (prereq)</td><td>Tech. Grp.</td></tr><tr><td><a class=\"entity-link content-link\" draggable=\"true\" data-link=\"\" data-uuid=\"Compendium.l5r5e.core-techniques-rituals.Item.L5RCoreRit000040\" data-pack=\"l5r5e.core-techniques-rituals\" data-type=\"Item\" data-id=\"L5RCoreRit000040\">(ritual) Spiritual Survey (WIP)</a> (prereq)</td><td>Technique</td></tr><tr><td><a class=\"entity-link content-link\" draggable=\"true\" data-link=\"\" data-uuid=\"Compendium.l5r5e.core-techniques-rituals.Item.L5RCoreRit000005\" data-pack=\"l5r5e.core-techniques-rituals\" data-type=\"Item\" data-id=\"L5RCoreRit000005\">(ritual) Seuil infranchissable</a> (prereq)</td><td>Technique</td></tr></table>",
|
||||
"source_reference": {
|
||||
"page": ""
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "White Guard Veteran",
|
||||
"name": "White Guard Veteran (WIP)",
|
||||
"description": "<h2>Cursus</h2><table><tr><td>Compétences Martiales</td><td>Grp. de comp.</td></tr><tr><td>Courtoisie</td><td>Compétence</td></tr><tr><td>Commandement</td><td>Compétence</td></tr><tr><td>Survie</td><td>Compétence</td></tr><tr><td>Théologie</td><td>Compétence</td></tr><tr><td><a class=\"entity-link content-link\" draggable=\"true\" data-link=\"\" data-uuid=\"Compendium.l5r5e.core-techniques-shuji.Item.L5RCoreShu000038\" data-pack=\"l5r5e.core-techniques-shuji\" data-type=\"Item\" data-id=\"L5RCoreShu000038\">(shuji) Le destin du samouraï</a> (prereq)</td><td>Technique</td></tr><tr><td><a class=\"entity-link content-link\" draggable=\"true\" data-link=\"\" data-uuid=\"Compendium.l5r5e.core-techniques-kata.Item.L5RCoreKat000083\" data-pack=\"l5r5e.core-techniques-kata\" data-type=\"Item\" data-id=\"L5RCoreKat000083\">(kata) Stalking Leopard Style (WIP)</a> (prereq)</td><td>Technique</td></tr><tr><td><a class=\"entity-link content-link\" draggable=\"true\" data-link=\"\" data-uuid=\"Compendium.l5r5e.core-techniques-kata.Item.L5RCoreKat000084\" data-pack=\"l5r5e.core-techniques-kata\" data-type=\"Item\" data-id=\"L5RCoreKat000084\">(kata) Sudden Downpour Style (WIP)</a> (prereq)</td><td>Technique</td></tr></table>",
|
||||
"source_reference": {
|
||||
"page": ""
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
|
||||
@@ -1173,6 +1173,116 @@
|
||||
"source_reference": {
|
||||
"page": "100"
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "Catalpa Bow",
|
||||
"name": "Catalpa Bow (WIP)",
|
||||
"category": "Arcs",
|
||||
"grip_1": "N/A",
|
||||
"grip_2": "",
|
||||
"description": "",
|
||||
"source_reference": {
|
||||
"page": ""
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "Charging Lance",
|
||||
"name": "Charging Lance (WIP)",
|
||||
"category": "Armes d'Hast",
|
||||
"grip_1": "N/A",
|
||||
"grip_2": "",
|
||||
"description": "",
|
||||
"source_reference": {
|
||||
"page": ""
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "Fire Lance",
|
||||
"name": "Fire Lance (WIP)",
|
||||
"category": "Armes d'Hast",
|
||||
"grip_1": "N/A",
|
||||
"grip_2": "",
|
||||
"description": "",
|
||||
"source_reference": {
|
||||
"page": ""
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "Ganzu Ring Ax",
|
||||
"name": "Ganzu Ring Ax (WIP)",
|
||||
"category": "Haches",
|
||||
"grip_1": "N/A",
|
||||
"grip_2": "",
|
||||
"description": "",
|
||||
"source_reference": {
|
||||
"page": ""
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "Katar (Punch Dagger)",
|
||||
"name": "Katar (Punch Dagger) (WIP)",
|
||||
"category": "Armes de Poing",
|
||||
"grip_1": "",
|
||||
"grip_2": "N/A",
|
||||
"description": "",
|
||||
"source_reference": {
|
||||
"page": ""
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "Repeating Crossbow",
|
||||
"name": "Repeating Crossbow (WIP)",
|
||||
"category": "Arbalètes",
|
||||
"grip_1": "N/A",
|
||||
"grip_2": "",
|
||||
"description": "",
|
||||
"source_reference": {
|
||||
"page": ""
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "Saddle Cutter",
|
||||
"name": "Saddle Cutter (WIP)",
|
||||
"category": "Armes d'Hast",
|
||||
"grip_1": "",
|
||||
"grip_2": "",
|
||||
"description": "",
|
||||
"source_reference": {
|
||||
"page": ""
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "Ide Parasol Shield",
|
||||
"name": "Ide Parasol Shield (WIP)",
|
||||
"category": "Boucliers",
|
||||
"grip_1": "",
|
||||
"grip_2": "",
|
||||
"description": "",
|
||||
"source_reference": {
|
||||
"page": ""
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "Standing Shield",
|
||||
"name": "Standing Shield (WIP)",
|
||||
"category": "Boucliers",
|
||||
"grip_1": "",
|
||||
"grip_2": "",
|
||||
"description": "",
|
||||
"source_reference": {
|
||||
"page": ""
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "The Ancestral Sword of the Fox [Blessed Treasure]",
|
||||
"name": "The Ancestral Sword of the Fox [Blessed Treasure] (WIP)",
|
||||
"category": "Sabres",
|
||||
"grip_1": "",
|
||||
"grip_2": "Dangerosité +8",
|
||||
"description": "",
|
||||
"source_reference": {
|
||||
"page": ""
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
|
||||
@@ -1,755 +0,0 @@
|
||||
{
|
||||
"I18N": {
|
||||
"Language": "English",
|
||||
"Maintainers": ["Team L5R"]
|
||||
},
|
||||
"SETTINGS": {
|
||||
"None": "No option",
|
||||
"ReverseTokenBars": {
|
||||
"Title": "Reverse tokens bar",
|
||||
"Hint": "Change the order in which the bars under the tokens are filled in",
|
||||
"None": "None",
|
||||
"Fatigue": "Fatigue only",
|
||||
"Strife": "Strife",
|
||||
"Both": "Both Fatigue and Strife"
|
||||
},
|
||||
"RollNKeep": {
|
||||
"DeleteOldMessage": "RnK Delete previous chat message",
|
||||
"DeleteOldMessageHint": "Choose to keep or delete the previous message for a RnK series"
|
||||
},
|
||||
"Initiative": {
|
||||
"SetTn1OnTypeChange": "Set TN to 1 on encounter change",
|
||||
"SetTn1OnTypeChangeHint": "Set the TN to 1 when the encounter type is selected (Intrigue, Duel, Skirmish or Mass battle)"
|
||||
},
|
||||
"CustomTechniques": {
|
||||
"Title": "Use custom techniques",
|
||||
"Hint": "Add 'Specificity' technique type to serve as a catch-all."
|
||||
},
|
||||
"CustomCompendiumName": {
|
||||
"Title": "Custom Compendium Name",
|
||||
"Hint": "For advanced users that want to change the name of the custom compendiums (Used to disables the embedded ones).",
|
||||
"Notification": "Unable set Custom Compendium: '{name}'. Is it activated and registered with Babele?"
|
||||
},
|
||||
"CustomItemsHeight": {
|
||||
"Title": "Default items windows height",
|
||||
"Hint": "Set the default height for 'Items' windows types (techniques, weapons...), in pixels"
|
||||
},
|
||||
"Compendium": {
|
||||
"HideDisabledSources": {
|
||||
"Title": "[Compendium] Hide sources filter without reference",
|
||||
"Hint": "Hide empty source with no elements in source filter."
|
||||
},
|
||||
"HideEmptySourcesFromPlayers": {
|
||||
"Title": "[Compendium] Hide elements with empty reference",
|
||||
"Hint": "Basically require a reference to be set in order for players to view the content in compendiums"
|
||||
},
|
||||
"AllowedOfficialSources": {
|
||||
"Title": "[Compendium] Available official resources",
|
||||
"Hint": "Useful if you as a GM want to limit the available official content to only books you own"
|
||||
},
|
||||
"AllowedUnofficialSources": {
|
||||
"Title": "[Compendium] Available unofficial resources",
|
||||
"Hint": "Useful if you have compendiums with custom items mixed with player facing items."
|
||||
}
|
||||
}
|
||||
},
|
||||
"TYPES": {
|
||||
"Actor": {
|
||||
"character": "Player Character",
|
||||
"npc": "Non-Player Character",
|
||||
"army": "Army"
|
||||
},
|
||||
"Item": {
|
||||
"item": "Item",
|
||||
"armor": "Armor",
|
||||
"weapon": "Weapon",
|
||||
"technique": "Technique",
|
||||
"property": "Property",
|
||||
"peculiarity": "Peculiarity",
|
||||
"advancement": "Advancement",
|
||||
"title": "Title",
|
||||
"bond": "Bond",
|
||||
"signature_scroll": "Signature Scroll",
|
||||
"item_pattern": "Item Pattern",
|
||||
"army_fortification": "Fortification",
|
||||
"army_cohort": "Cohort"
|
||||
},
|
||||
"Journal": {
|
||||
"journal": "Journal"
|
||||
}
|
||||
},
|
||||
"l5r5e": {
|
||||
"global": {
|
||||
"edge_translation_disclaimer": "",
|
||||
"add": "Add",
|
||||
"edit": "Edit",
|
||||
"delete_confirm": "Are you sure you want to delete '{name}' ?",
|
||||
"drop_here": "Drop here",
|
||||
"send_to_chat": "To Chat",
|
||||
"locked": "Locked",
|
||||
"unlocked": "Unlocked",
|
||||
"random": "Random"
|
||||
},
|
||||
"multiselect": {
|
||||
"empty_tag": "<blank>",
|
||||
"placeholder": "Filter Sources",
|
||||
"player_filter_label": "Player filter",
|
||||
"player_filter_tooltip": "Apply player filter",
|
||||
"already_in_filter": "Already in filter",
|
||||
"sources_categories": {
|
||||
"rules": "Rules",
|
||||
"adventures": "Adventures",
|
||||
"supplements": "Supplements",
|
||||
"others": "Others"
|
||||
}
|
||||
},
|
||||
"settings": {
|
||||
"custom-compendiums": {
|
||||
"title": "Compendiums",
|
||||
"link": "https://gitlab.com/teaml5r/l5r5e/-/wikis/users/custom-compendiums.md"
|
||||
},
|
||||
"wiki": {
|
||||
"title": "Wiki",
|
||||
"link": "https://gitlab.com/teaml5r/l5r5e/-/wikis/home"
|
||||
}
|
||||
},
|
||||
"logo": {
|
||||
"title": "Need help?",
|
||||
"src": "systems/l5r5e/assets/l5r-logo.webp",
|
||||
"alt": "Online Help",
|
||||
"content": "Follow the guide :",
|
||||
"edge": {
|
||||
"title": "Go to the Edge-Studio website",
|
||||
"info": "your browser will open the EDGE STUDIO website",
|
||||
"link": "https://edge-studio.net/"
|
||||
},
|
||||
"drivethrurpg": {
|
||||
"title": "Buy a PDF of the game...",
|
||||
"info": "your browser will open the DriveThruRpg site of Edge Studio",
|
||||
"link": "https://www.drivethrurpg.com/browse/pub/17946/EDGE-Studio"
|
||||
},
|
||||
"discord": {
|
||||
"title": "FoundryVTT Official Discord",
|
||||
"info": "Your browser will open on the official Foundry discord",
|
||||
"link": "https://discordapp.com/invite/DDBZUDf"
|
||||
}
|
||||
},
|
||||
"rings": {
|
||||
"title": "Rings",
|
||||
"label": "Ring",
|
||||
"earth": "Earth",
|
||||
"air": "Air",
|
||||
"water": "Water",
|
||||
"fire": "Fire",
|
||||
"void": "Void"
|
||||
},
|
||||
"sheets": {
|
||||
"narrative": "Narrative",
|
||||
"experience": "Experience",
|
||||
"family": "Family",
|
||||
"region": "Region",
|
||||
"upbringing": "Upbringing",
|
||||
"school": "School",
|
||||
"description": "Description",
|
||||
"bought_at_rank": "Bought at rank",
|
||||
"types": "Types",
|
||||
"source_reference": {
|
||||
"reference": "Reference",
|
||||
"page_abbreviation": "p."
|
||||
},
|
||||
"value": "Value",
|
||||
"rarity": "Rarity",
|
||||
"quantity": "Quantity",
|
||||
"weight": "Weight",
|
||||
"properties": "Properties",
|
||||
"linked_property": "linked Property",
|
||||
"removed_properties": "Cancel",
|
||||
"notes": "Notes",
|
||||
"inventory": "Inventory",
|
||||
"equipment": "Equipment",
|
||||
"rank": "Rank",
|
||||
"name": "Name"
|
||||
},
|
||||
"dice": {
|
||||
"chat": {
|
||||
"successes": "Successes",
|
||||
"explosives": "Explosions",
|
||||
"opportunities": "Opportunities",
|
||||
"strife": "Strife",
|
||||
"difficulty": "TN",
|
||||
"difficulty_hidden": "???",
|
||||
"void_point_used": "Void point used",
|
||||
"assistance_used": "Skill assistance used",
|
||||
"roll_n_keep": "Roll & Keep",
|
||||
"initiative_roll": "Initiative roll",
|
||||
"success_text": "Success!",
|
||||
"bonus_text": "bonus successes",
|
||||
"fail_text": "Fail!",
|
||||
"unknown_target": "Unknown target"
|
||||
},
|
||||
"dicepicker": {
|
||||
"title": "Dice Picker",
|
||||
"difficulty_title": "Difficulty",
|
||||
"difficulty_hidden_label": "Hide TN",
|
||||
"use_void_point_label": "Spend a",
|
||||
"void_point_tooltip": "Void point",
|
||||
"skill_assistance_label": "Assistance",
|
||||
"roll_label": "Roll",
|
||||
"bt_add_macro": "Add a macro",
|
||||
"gm_request_dp_to_players": "Roll request sent to players"
|
||||
},
|
||||
"roll_n_keep": {
|
||||
"title": "Roll & Keep",
|
||||
"discard_drop_here": "Discard",
|
||||
"reroll_drop_here": "Re-roll",
|
||||
"swap_drop_here": "Swap",
|
||||
"keep_drop_here": "Keep",
|
||||
"max": "Max",
|
||||
"bt_validate": "Finalize this step",
|
||||
"bt_strife": "Apply strife",
|
||||
"undo": "[GM] Undo the last step choices"
|
||||
}
|
||||
},
|
||||
"gm": {
|
||||
"toolbox": {
|
||||
"title": "GM ToolBox",
|
||||
"difficulty_hidden": "Change difficulty visibility",
|
||||
"difficulty": "Change difficulty (Left click: add, Right: subtract, Middle: TN 2)",
|
||||
"sleep": "Comfortable rest for all characters (Remove Water x2 fatigue. Left click: assigned characters only. Right: All actors)",
|
||||
"sleep_info": "The characters had a good night's sleep.",
|
||||
"scene_end": "End of scene (Conflict and Fatigue half reset for all characters. Left click: assigned characters only. Right: All actors)",
|
||||
"scene_end_info": "The tension of the scene finally drops.",
|
||||
"reset_void": "Start of the game: Reset the players' void points (Left click: assigned characters only. Right: All actors",
|
||||
"reset_void_info": "Void points have been attributed."
|
||||
},
|
||||
"monitor": {
|
||||
"title": "GM Monitor",
|
||||
"switch_view": "Switch View",
|
||||
"add_selected_tokens": "Add selected tokens",
|
||||
"honor_glory_status": "H/G/S",
|
||||
"focus_vigilance": "Foc./Vig.",
|
||||
"mouse_control": "Left click +1, Right: -1, middle: set to 0"
|
||||
}
|
||||
},
|
||||
"weapons": {
|
||||
"title": "Weapons",
|
||||
"damage": "Damage",
|
||||
"range": "Range",
|
||||
"stats": "Stats",
|
||||
"sheathed": "Equipped / Sheathed",
|
||||
"readied": "Readied",
|
||||
"category": "Category",
|
||||
"deadliness": "Deadliness",
|
||||
"grips": "Grips",
|
||||
"1hand": "1-hand",
|
||||
"2hand": "2-hand"
|
||||
},
|
||||
"armors": {
|
||||
"title": "Armors",
|
||||
"type": "Resistances",
|
||||
"physical": "physical",
|
||||
"supernatural": "supernatural",
|
||||
"equipped": "Equipped"
|
||||
},
|
||||
"items": {
|
||||
"title": "Items"
|
||||
},
|
||||
"techniques": {
|
||||
"title": "Techniques",
|
||||
"not_allowed": "Your character does not use this type of technique.",
|
||||
"only_one": "Your character can possess only one of theses technique.",
|
||||
"type": "Allowed Techniques",
|
||||
"kata": "Kata",
|
||||
"kiho": "Kihõ",
|
||||
"inversion": "Inversion",
|
||||
"invocation": "Invocation",
|
||||
"ritual": "Ritual",
|
||||
"shuji": "Shuji",
|
||||
"maho": "Mahõ",
|
||||
"ninjutsu": "Ninjutsu",
|
||||
"mantra": "Mantra",
|
||||
"school_ability": "School Ability",
|
||||
"mastery_ability": "Mastery Ability",
|
||||
"title_ability": "Title Ability",
|
||||
"specificity": "Specificity"
|
||||
},
|
||||
"peculiarities": {
|
||||
"types": {
|
||||
"distinction": "Distinction",
|
||||
"passion": "Passion",
|
||||
"adversity": "Adversity",
|
||||
"anxiety": "Anxiety"
|
||||
}
|
||||
},
|
||||
"money": {
|
||||
"title": "Personal money",
|
||||
"koku": "Koku",
|
||||
"bu": "Bu",
|
||||
"zeni": "Zeni"
|
||||
},
|
||||
"social": {
|
||||
"title": "Social Standing",
|
||||
"honor": "Honor",
|
||||
"glory": "Glory",
|
||||
"status": "Status",
|
||||
"ninjo": "Ninjo",
|
||||
"giri": "Giri",
|
||||
"past": "Past",
|
||||
"bushido_tenets": {
|
||||
"title": "Bushido Tenets",
|
||||
"paramount": "Paramount",
|
||||
"less_significant": "Less Significant"
|
||||
},
|
||||
"titles": "Titles",
|
||||
"attitude": "Demeanor:",
|
||||
"advantages": "Distinctions and Passions",
|
||||
"disadvantages": "Adversities and Anxieties",
|
||||
"bonds": "Bonds",
|
||||
"npc": {
|
||||
"advantages": "Advantages",
|
||||
"disadvantages": "Disadvantages",
|
||||
"combat": "Combat",
|
||||
"intrigue": "Intrigue"
|
||||
},
|
||||
"age": "Age",
|
||||
"children": "Children",
|
||||
"marital_status": {
|
||||
"title": "Marital Status",
|
||||
"partner": "Partner",
|
||||
"married": "Married",
|
||||
"betrothed": "Betrothed",
|
||||
"unmarried": "Unmarried",
|
||||
"widowed": "Widowed"
|
||||
},
|
||||
"gender": {
|
||||
"title": "Gender",
|
||||
"male": "Male",
|
||||
"female": "Female"
|
||||
}
|
||||
},
|
||||
"skills": {
|
||||
"title": "Skills",
|
||||
"label": "Skill",
|
||||
"artisan": {
|
||||
"title": "Artisan",
|
||||
"aesthetics": "Aesthetics",
|
||||
"composition": "Composition",
|
||||
"design": "Design",
|
||||
"smithing": "Smithing",
|
||||
"air": "Refine",
|
||||
"earth": "Restore",
|
||||
"fire": "Invent",
|
||||
"water": "Adapt",
|
||||
"void": "Attune"
|
||||
},
|
||||
"martial": {
|
||||
"title": "Martial",
|
||||
"fitness": "Fitness",
|
||||
"melee": "Martial Arts [Melee]",
|
||||
"ranged": "Martial Arts [Ranged]",
|
||||
"unarmed": "Martial Arts [Unarmed]",
|
||||
"meditation": "Meditation",
|
||||
"tactics": "Tactics",
|
||||
"air": "Feint",
|
||||
"earth": "Withstand",
|
||||
"fire": "Overwhelm",
|
||||
"water": "Shift",
|
||||
"void": "Sacrifice"
|
||||
},
|
||||
"scholar": {
|
||||
"title": "Scholar",
|
||||
"culture": "Culture",
|
||||
"government": "Government",
|
||||
"medicine": "Medicine",
|
||||
"sentiment": "Sentiment",
|
||||
"theology": "Theology",
|
||||
"air": "Analyze",
|
||||
"earth": "Recall",
|
||||
"fire": "Theorize",
|
||||
"water": "Survey",
|
||||
"void": "Sense"
|
||||
},
|
||||
"social": {
|
||||
"title": "Social",
|
||||
"command": "Command",
|
||||
"courtesy": "Courtesy",
|
||||
"games": "Games",
|
||||
"performance": "Performance",
|
||||
"air": "Trick",
|
||||
"earth": "Reason",
|
||||
"fire": "Incite",
|
||||
"water": "Charm",
|
||||
"void": "Enlighten"
|
||||
},
|
||||
"trade": {
|
||||
"title": "Trade",
|
||||
"commerce": "Commerce",
|
||||
"labor": "Labor",
|
||||
"seafaring": "Seafaring",
|
||||
"skulduggery": "Skulduggery",
|
||||
"survival": "Survival",
|
||||
"air": "Con",
|
||||
"earth": "Produce",
|
||||
"fire": "Innovate",
|
||||
"water": "Exchange",
|
||||
"void": "Subsist"
|
||||
}
|
||||
},
|
||||
"attributes": {
|
||||
"title": "Attributes",
|
||||
"endurance": "Endurance",
|
||||
"endurancetip": "(Earth + Fire) x2",
|
||||
"composure": "Composure",
|
||||
"composuretip": "(Earth + Water) x2",
|
||||
"focus": "Focus",
|
||||
"focustip": "Air + Fire",
|
||||
"vigilance": "Vigilance",
|
||||
"vigilancetip": "(Air + Water) /2",
|
||||
"voidpoints": "Void Points",
|
||||
"fatigue": "Fatigue",
|
||||
"strife": "Strife"
|
||||
},
|
||||
"conflict": {
|
||||
"title": "Conflict",
|
||||
"stance": "Stance",
|
||||
"stances": {
|
||||
"airtip": "+1 to TN of Attack and Scheme checks targeting you (+2 at rank 4+).",
|
||||
"earthtip": "Others cannot spend Opportunity to inflict critical hits or conditions on you.",
|
||||
"firetip": "If you succeed, +1 bonus success per Strife symbol on kept dice.",
|
||||
"watertip": "Perform a second action on your turn that does not require a check or share a type with the first action.",
|
||||
"voidtip": "You do not receive strife from Strife symbols on checks."
|
||||
},
|
||||
"initiative": {
|
||||
"title": "Initiative",
|
||||
"intrigue": "Intrigue",
|
||||
"duel": "Duel",
|
||||
"skirmish": "Skirmish",
|
||||
"mass_battle": "Mass Battle",
|
||||
"prepared_true": "Prepared",
|
||||
"prepared_false": "Surprised",
|
||||
"prepared_actor": "Defined in the character sheet (default)",
|
||||
"already_set": "Your initiative has already been determined"
|
||||
}
|
||||
},
|
||||
"advancements": {
|
||||
"title": "Advancements",
|
||||
"school_rank": "School rank",
|
||||
"school_rank_0": "Bg",
|
||||
"total": "Total",
|
||||
"cost": "Cost",
|
||||
"spent": "Used",
|
||||
"saved": "Saved",
|
||||
"total_xp_spent": "Xp spent",
|
||||
"total_xp_curriculum": "Xp spent on curriculum",
|
||||
"curriculum": "In curriculum",
|
||||
"curriculum_validate": "Complete this rank",
|
||||
"rarity_modifier": "Rarity modifier",
|
||||
"item_pattern": "Item Patterns",
|
||||
"signature_scroll": "Signature Scrolls",
|
||||
"school_curriculum_journal": "Drop curriculum's journal in sheet to link it"
|
||||
},
|
||||
"character_types": {
|
||||
"character": "Player Character",
|
||||
"adversary": "Adversary",
|
||||
"minion": "Minion"
|
||||
},
|
||||
"army": {
|
||||
"warlord": "Warlord",
|
||||
"allies_backers": "Allies and Backers",
|
||||
"purpose_mustering": "Purpose for Mustering",
|
||||
"battle_readiness": {
|
||||
"title": "Battle Readiness",
|
||||
"strength": "Strength",
|
||||
"casualties": "Casualties",
|
||||
"discipline": "Discipline",
|
||||
"panic": "Panic"
|
||||
},
|
||||
"commander": "Commander",
|
||||
"commander_abilities": "Commander's relevant abilities",
|
||||
"army_abilities": "Army Abilities",
|
||||
"commander_standing": "Commander's Standing",
|
||||
"supplies_logistics": "Supplies and Logistics",
|
||||
"past_battles": "Past Battles",
|
||||
"cohort": {
|
||||
"tab": "Cohorts",
|
||||
"title": "Cohort",
|
||||
"leader": "Leader",
|
||||
"abilities": "Abilities"
|
||||
},
|
||||
"fortification": {
|
||||
"tab": "Fortifications",
|
||||
"title": "Fortification Held",
|
||||
"difficulty": "Difficulty Value",
|
||||
"attrition_reduction": "Attrition Reduction"
|
||||
}
|
||||
},
|
||||
"twenty_questions": {
|
||||
"title": "Twenty questions",
|
||||
"bt_abrev": "20Q",
|
||||
"bt_next": "Next",
|
||||
"increase_ring1": "Ring increase (1)",
|
||||
"increase_ring2": "Ring increase (2)",
|
||||
"increase_skill1": "Skill increases (1)",
|
||||
"increase_skill2": "Skill increases (2)",
|
||||
"increase_skill3": "Skill increases (3-5)",
|
||||
"choose_one_ring": "Pick one",
|
||||
"choose_one_skill": "Pick one",
|
||||
"or": "OR",
|
||||
"and": "AND",
|
||||
"error": "Oops it looks like there's an error:",
|
||||
"part0": {
|
||||
"intro": "You can use this sheet to fill in your answers to The Game of Twenty Questions, and to take notes for later!",
|
||||
"section": "Legend of the Five Rings Core Rulebook, Chapter 2: Creating a character, p. 41-95",
|
||||
"section_pow": "Legend of the Five Rings Path of Waves, Chapter 2: Creating a Character p. 30–82",
|
||||
"type": "Select the 20Q template you want to use",
|
||||
"type_core": "Samurai (Core Rulebook)",
|
||||
"type_pow": "Ronin (Path of Waves)"
|
||||
},
|
||||
"part1": {
|
||||
"title": "Part I: Core Identity (Clan and Family)",
|
||||
"title_pow": "Part I: Core Identity (Region and Upbringing)",
|
||||
"q1": "1. What clan does your character belong to? (p. 41)",
|
||||
"q1_pow": "1. What region does your character come from? (p. 31)",
|
||||
"status": "Status",
|
||||
"q2": "2. What family does your character belong to? (p. 49)",
|
||||
"q2_pow": "2. What was your character’s upbringing? (p. 43)",
|
||||
"money": "Starting wealth in Koku",
|
||||
"glory": "Glory"
|
||||
},
|
||||
"part2": {
|
||||
"title": "Part II: Role and School",
|
||||
"q3": "3. What is your character’s school, and what roles does that school fall into? (p. 56)",
|
||||
"q3_pow": "3. What is your character’s school, and what are its associated roles? (p. 46)",
|
||||
"school": "School",
|
||||
"role": "Roles",
|
||||
"honor": "Honor",
|
||||
"access": "Technique types available",
|
||||
"school_ability": "School ability",
|
||||
"starting_techniques": "Starting techniques (2-6)",
|
||||
"outfit": "Starting outfit",
|
||||
"q4": "4. How does your character stand out within their school? (p. 88)",
|
||||
"q4_pow": "4. What gets your character in and out of trouble? (p. 60)"
|
||||
},
|
||||
"part3": {
|
||||
"title": "Part III: Honor and Glory",
|
||||
"title_pow": "Part III: The Past and the Future they interact and process",
|
||||
"q5": "5. Who is your lord and what is your character’s duty to them? (p. 88)",
|
||||
"q5_pow": "5. What is your character’s past and how does it Affect them? (p. 60)",
|
||||
"choose_giri": "Select giri",
|
||||
"choose_past": "Select past",
|
||||
"q6": "6. What does your character long for, and how might this impede their duty? (p. 90)",
|
||||
"q6_pow": "6. What does your character long for, and how might their past impact their ninjō? (p. 62)",
|
||||
"choose_ninjo": "Select ninjō",
|
||||
"q7": "7. What is your character’s relationship with their clan? (p. 91)",
|
||||
"q7_pow": "7. What is your character known for? (p. 61)",
|
||||
"increase_glory": "Glory increase",
|
||||
"q8": "8. What does your character think of Bushidō? (p. 91)",
|
||||
"q8_pow": "8. What does your character think of Bushidō? (p. 62)",
|
||||
"increase_honor": "Honor increase",
|
||||
"tenets": "Choose one tenet of Bushidō as paramount and one tenet as less significant (see The Clans Views of Bushidō, page 301 of the core rulebook):",
|
||||
"object": "Item (Rarity 5 or lower)"
|
||||
},
|
||||
"part4": {
|
||||
"title": "Part IV: Strengths and Weaknesses",
|
||||
"q9": "9. What is your character’s greatest accomplishment so far? (p. 92)",
|
||||
"q9_pow": "9. What is your character’s greatest accomplishment so far? (p. 64)",
|
||||
"distinction": "Distinction (1)",
|
||||
"q10": "10. What holds your character back the most in life? (p. 92)",
|
||||
"q10_pow": "10. What holds your character back most in life? (p. 64)",
|
||||
"adversity": "Adversity (1)",
|
||||
"q11": "11. What activity Most makes your character feel at peace? (p. 93)",
|
||||
"q11_pow": "11. What activity most makes your character feel at peace? (p. 65)",
|
||||
"passion": "Passion (1)",
|
||||
"q12": "12. What concern, fear, or foible troubles your character the most? (p. 93)",
|
||||
"q12_pow": "12. What concern, fear, or foible troubles your character the most? (p. 65)",
|
||||
"anxiety": "Anxiety (1)",
|
||||
"q13": "13. Who has your character learned the most from during their life? (p. 93)",
|
||||
"q13_pow": "13. Who has your character learned the most from during their life? (p. 65)",
|
||||
"disadvantage": "Disadvantage (1)",
|
||||
"advantage": "Advantage (1)"
|
||||
},
|
||||
"part5": {
|
||||
"title": "Part V: Personality and Behavior",
|
||||
"q14": "14. What do people notice first upon encountering your character? (p. 93)",
|
||||
"q14_pow": "14. What is your character’s most prized possession? (p. 66)",
|
||||
"accoutrement": "Personal accoutrement",
|
||||
"q15": "15. How does your character react to stressful situations? (p. 94)",
|
||||
"q15_pow": "15. How does your character react to stressful situations? (p. 66)",
|
||||
"q16": "16. What are your character’s preexisting relationships with other clans, families, organizations, and traditions? (p. 94)",
|
||||
"q16_pow": "16. What are your relationships to your family, the clans, peasants, and others? (p. 66)",
|
||||
"object": "Item (Rarity 7 or lower)"
|
||||
},
|
||||
"part6": {
|
||||
"title": "Part VI: Ancestry and Family",
|
||||
"title_pow": "Part VI: Ancestry and Bonds",
|
||||
"q17": "17. How would your character’s parents describe them? (p. 95)",
|
||||
"q17_pow": "17. What shared history do you have with your group? (p. 66)",
|
||||
"bond": "Determine an appropriate bond to apply to your relationship",
|
||||
"q18": "18. Who was your character named to honor? (p. 95)",
|
||||
"q18_pow": "18. Who raised you? (p. 67)",
|
||||
"d10r1": "D10 Result (1/2)",
|
||||
"d10r1_choice": "1st D10 Effect",
|
||||
"d10r2": "D10 Result (2/2)",
|
||||
"d10r2_choice": "2nd D10 Effect",
|
||||
"d10r2_drop_items": "Or a technique, a advantage, a object...",
|
||||
"q19": "19. What is your character’s personal name? (p. 95)",
|
||||
"q19_pow": "19. What is your character’s name? (p. 68)"
|
||||
},
|
||||
"part7": {
|
||||
"title": "Part VII: Death",
|
||||
"q20": "20. How should your character die? (p. 95)",
|
||||
"q20_pow": "20. How should your character die? (p. 68)",
|
||||
"summary": "Summary",
|
||||
"generchar": "Generate the character",
|
||||
"generchar_disclaimer": "Warning, this will erase character's current data!",
|
||||
"generchar_errors": "Clear errors before continuing!"
|
||||
}
|
||||
},
|
||||
"char_generator": {
|
||||
"title": "Character Generator",
|
||||
"head_bt_title": "Char. Generator",
|
||||
"generate": "Generate",
|
||||
"average_value": "Average value",
|
||||
"identity": "Clan, gender, age, marital status",
|
||||
"attributes": "Social standing, Rings, Attributes and Skills",
|
||||
"demeanor": "Demeanor & rings affinities",
|
||||
"peculiarities": "Advantages and Disadvantages",
|
||||
"items": "Armors, Weapons, and Items",
|
||||
"narrative": "Narrative (Description)"
|
||||
},
|
||||
"roles": {
|
||||
"title": "Roles",
|
||||
"artisan": "Artisan",
|
||||
"bushi": "Bushi",
|
||||
"courtier": "Courtier",
|
||||
"monk": "Monk",
|
||||
"sage": "Sage",
|
||||
"shinobi": "Shinobi",
|
||||
"shugenja": "Shugenja"
|
||||
},
|
||||
"clans": {
|
||||
"title": "Clans",
|
||||
"label": "Clan",
|
||||
"imperial": "Imperial",
|
||||
"crab": "Crab",
|
||||
"crane": "Crane",
|
||||
"dragon": "Dragon",
|
||||
"lion": "Lion",
|
||||
"phoenix": "Phoenix",
|
||||
"scorpion": "Scorpion",
|
||||
"unicorn": "Unicorn",
|
||||
"mantis": "Mantis",
|
||||
"ronin": "Ronin",
|
||||
"badger": "Badger",
|
||||
"bat": "Bat",
|
||||
"boar": "Boar",
|
||||
"dragonfly": "Dragonfly",
|
||||
"firefly": "Firefly",
|
||||
"hare": "Hare",
|
||||
"monkey": "Monkey",
|
||||
"oriole": "Oriole",
|
||||
"ox": "Ox",
|
||||
"sparrow": "Sparrow",
|
||||
"tortoise": "Tortoise",
|
||||
"ivory_kingdoms": "Ivory Kingdoms",
|
||||
"qamarist": "Qamarist",
|
||||
"ujik": "Ujik"
|
||||
},
|
||||
"demeanor": {
|
||||
"adaptable": "Adaptable",
|
||||
"aggressive": "Aggressive",
|
||||
"ambitious": "Ambitious",
|
||||
"amiable": "Amiable",
|
||||
"analytical": "Analytical",
|
||||
"angry": "Angry",
|
||||
"arrogant": "Arrogant",
|
||||
"assertive": "Assertive",
|
||||
"beguiling": "Beguiling",
|
||||
"bitter": "Bitter",
|
||||
"bold": "Bold",
|
||||
"calculating": "Calculating",
|
||||
"calm": "Calm",
|
||||
"capricious": "Capricious",
|
||||
"cautious": "Cautious",
|
||||
"clever": "Clever",
|
||||
"confused": "Confused",
|
||||
"courageous": "Courageous",
|
||||
"cowardly": "Cowardly",
|
||||
"curious": "Curious",
|
||||
"dependable": "Dependable",
|
||||
"detached": "Detached",
|
||||
"disheartened": "Disheartened",
|
||||
"enraged": "Enraged",
|
||||
"feral": "Feral",
|
||||
"fickle": "Fickle",
|
||||
"fierce": "Fierce",
|
||||
"flighty": "Flighty",
|
||||
"flippant": "Flippant",
|
||||
"friendly": "Friendly",
|
||||
"gruff": "Gruff",
|
||||
"hungry": "Hungry",
|
||||
"intense": "Intense",
|
||||
"intimidating": "Intimidating",
|
||||
"irritable": "Irritable",
|
||||
"loyal": "Loyal",
|
||||
"mischievous": "Mischievous",
|
||||
"morose": "Morose",
|
||||
"nurturing": "Nurturing",
|
||||
"obstinate": "Obstinate",
|
||||
"opportunistic": "Opportunistic",
|
||||
"passionate": "Passionate",
|
||||
"playful": "Playful",
|
||||
"power_hungry": "Power hungry",
|
||||
"proud": "Proud",
|
||||
"restrained": "Restrained",
|
||||
"scheming": "Scheming",
|
||||
"serene": "Serene",
|
||||
"serious": "Serious",
|
||||
"shrewd": "Shrewd",
|
||||
"stubborn": "Stubborn",
|
||||
"suspicious": "Suspicious",
|
||||
"teasing": "Teasing",
|
||||
"territorial": "Territorial",
|
||||
"uncertain": "Uncertain",
|
||||
"unenthused": "Unenthused",
|
||||
"vain": "Vain",
|
||||
"wary": "Wary"
|
||||
},
|
||||
"compendium": {
|
||||
"filter_rank": "Show Rank",
|
||||
"not_for_players": "Not shown to players",
|
||||
"filter": {
|
||||
"rank": "Rank",
|
||||
"rarity": "Rarity",
|
||||
"ring": "Ring"
|
||||
}
|
||||
},
|
||||
"source_reference": {
|
||||
"core_rulebook": "Core Rulebook",
|
||||
"emerald_empire": "Emerald Empire",
|
||||
"shadowlands": "Shadowlands",
|
||||
"court_of_stones": "Court of Stones",
|
||||
"path_of_waves": "Path of Waves",
|
||||
"celestial_realms": "Celestial Realms",
|
||||
"fields_of_victory": "Fields of Victory",
|
||||
"writ_of_the_wild": "Writ of the Wild",
|
||||
"gm_kit": "Game Master's Kit",
|
||||
"beginner_game": "Beginner Game",
|
||||
"the_mantis_clan": "The Mantis Clan",
|
||||
"mask_of_the_oni": "Mask of the Oni",
|
||||
"winters_embrace": "Winter's Embrace",
|
||||
"sins_of_regret": "Sins of Regret",
|
||||
"wheel_of_judgment": "Wheel of Judgment",
|
||||
"blood_of_the_lioness": "Blood of the Lioness",
|
||||
"imperfect_land": "Imperfect Land",
|
||||
"in_the_palace_of_the_emerald_champion": "In the Palace of the Emerald Champion",
|
||||
"the_highwayman": "The Highwayman",
|
||||
"wedding_at_kyotei_castle": "Wedding at Kyotei Castle",
|
||||
"the_knotted_tails": "The Knotted Tails",
|
||||
"cresting_waves": "Cresting Waves",
|
||||
"deathly_turns": "Deathly Turns",
|
||||
"the_scroll_or_the_blade": "The Scroll or the Blade",
|
||||
"legacies_of_war": "Legacies of War"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1,755 +0,0 @@
|
||||
{
|
||||
"I18N": {
|
||||
"Language": "Español",
|
||||
"Maintainers": ["Team L5R"]
|
||||
},
|
||||
"SETTINGS": {
|
||||
"None": "Sin opción",
|
||||
"ReverseTokenBars": {
|
||||
"Title": "Reverse tokens bar",
|
||||
"Hint": "Change the order in which the bars under the tokens are filled in",
|
||||
"None": "None",
|
||||
"Fatigue": "Fatigue only",
|
||||
"Strife": "Strife",
|
||||
"Both": "Both Fatigue and Strife"
|
||||
},
|
||||
"RollNKeep": {
|
||||
"DeleteOldMessage": "TyG Eliminar el mensaje anterior del chat",
|
||||
"DeleteOldMessageHint": "Elige si mantener o borrar el mensaje anterior de la serie TyG"
|
||||
},
|
||||
"Initiative": {
|
||||
"SetTn1OnTypeChange": "Poner el NO a 1 al seleccionar el tipo de encuentro",
|
||||
"SetTn1OnTypeChangeHint": "Poner el NO a 1 cuando se elige el tipo de encuentro (Intriga, Duelo, Escaramuza o Batalla a gran escala)"
|
||||
},
|
||||
"CustomTechniques": {
|
||||
"Title": "Use custom techniques",
|
||||
"Hint": "Add 'Specificity' technique type to serve as a catch-all."
|
||||
},
|
||||
"CustomCompendiumName": {
|
||||
"Title": "Custom Compendium Name",
|
||||
"Hint": "For advanced users that want to change the name of the custom compendiums (Used to disables the embedded ones).",
|
||||
"Notification": "Unable set Custom Compendium: '{name}'. Is it activated and registered with Babele?"
|
||||
},
|
||||
"CustomItemsHeight": {
|
||||
"Title": "Default items windows height",
|
||||
"Hint": "Set the default height for 'Items' windows types (techniques, weapons...), in pixels"
|
||||
},
|
||||
"Compendium": {
|
||||
"HideDisabledSources": {
|
||||
"Title": "[Compendium] Hide sources filter without reference",
|
||||
"Hint": "Hide empty source with no elements in source filter."
|
||||
},
|
||||
"HideEmptySourcesFromPlayers": {
|
||||
"Title": "[Compendium] Hide elements with empty reference",
|
||||
"Hint": "Basically require a reference to be set in order for players to view the content in compendiums"
|
||||
},
|
||||
"AllowedOfficialSources": {
|
||||
"Title": "[Compendium] Available official resources",
|
||||
"Hint": "Useful if you as a GM want to limit the available official content to only books you own"
|
||||
},
|
||||
"AllowedUnofficialSources": {
|
||||
"Title": "[Compendium] Available unofficial resources",
|
||||
"Hint": "Useful if you have compendiums with custom items mixed with player facing items."
|
||||
}
|
||||
}
|
||||
},
|
||||
"TYPES": {
|
||||
"Actor": {
|
||||
"character": "Personaje jugador",
|
||||
"npc": "Personaje no jugador",
|
||||
"army": "Ejército"
|
||||
},
|
||||
"Item": {
|
||||
"item": "Objeto",
|
||||
"armor": "Armadura",
|
||||
"weapon": "Arma",
|
||||
"technique": "Técnica",
|
||||
"property": "Propiedad",
|
||||
"peculiarity": "Peculiaridad",
|
||||
"advancement": "Mejora",
|
||||
"title": "Título",
|
||||
"bond": "Vínculo",
|
||||
"signature_scroll": "Pergamino especial",
|
||||
"item_pattern": "Patrón de objeto",
|
||||
"army_fortification": "Fortificación",
|
||||
"army_cohort": "Cohorte"
|
||||
},
|
||||
"Journal": {
|
||||
"journal": "Diario"
|
||||
}
|
||||
},
|
||||
"l5r5e": {
|
||||
"global": {
|
||||
"edge_translation_disclaimer": "Edge Studio nos da su permiso para ofrecer este módulo a la comunidad, pero tanto los textos así como los códigos que lo constituyen no tienen su aprobación explícita.",
|
||||
"add": "Añadir",
|
||||
"edit": "Editar",
|
||||
"delete_confirm": "¿Estás seguro de que quieres borrar '{name}' ?",
|
||||
"drop_here": "Dejar caer aquí",
|
||||
"send_to_chat": "To Chat",
|
||||
"locked": "Locked",
|
||||
"unlocked": "Unlocked",
|
||||
"random": "Random"
|
||||
},
|
||||
"multiselect": {
|
||||
"empty_tag": "<blank>",
|
||||
"placeholder": "Filter Sources",
|
||||
"player_filter_label": "Player filter",
|
||||
"player_filter_tooltip": "Apply player filter",
|
||||
"already_in_filter": "Already in filter",
|
||||
"sources_categories": {
|
||||
"rules": "Rules",
|
||||
"adventures": "Adventures",
|
||||
"supplements": "Supplements",
|
||||
"others": "Others"
|
||||
}
|
||||
},
|
||||
"settings": {
|
||||
"custom-compendiums": {
|
||||
"title": "Compendiums",
|
||||
"link": "https://gitlab.com/teaml5r/l5r5e/-/wikis/users/custom-compendiums.md"
|
||||
},
|
||||
"wiki": {
|
||||
"title": "Wiki",
|
||||
"link": "https://gitlab.com/teaml5r/l5r5e/-/wikis/home"
|
||||
}
|
||||
},
|
||||
"logo": {
|
||||
"títle": "¿Necesitas ayuda?",
|
||||
"src": "systems/l5r5e/assets/l5r-logo.webp",
|
||||
"alt": "Ayuda en línea",
|
||||
"content": "Sigue la guía :",
|
||||
"edge": {
|
||||
"title": "Ir a la página web de Edge-Studio",
|
||||
"info": "Tu navegador abrirá la página web de EDGE STUDIO",
|
||||
"link": "https://edge-studio.net/"
|
||||
},
|
||||
"drivethrurpg": {
|
||||
"title": "¿Comprar un PDF del juego?",
|
||||
"info": "tu navegador abrirá el sitio DriveThruRpg de Edge Studio",
|
||||
"link": "https://www.drivethrurpg.com/browse/pub/17946/EDGE-Studio"
|
||||
},
|
||||
"discord": {
|
||||
"title": "Discord oficial de FoundryVTT",
|
||||
"info": "Su navegador se abrirá el discord oficial de Foundry",
|
||||
"link": "https://discordapp.com/invite/DDBZUDf"
|
||||
}
|
||||
},
|
||||
"rings": {
|
||||
"title": "Anillos",
|
||||
"label": "Anillo",
|
||||
"earth": "Tierra",
|
||||
"air": "Aire",
|
||||
"water": "Agua",
|
||||
"fire": "Fuego",
|
||||
"void": "Vacío"
|
||||
},
|
||||
"sheets": {
|
||||
"narrative": "Narrativa",
|
||||
"experience": "Experiencia",
|
||||
"family": "Familia",
|
||||
"region": "Region",
|
||||
"upbringing": "Educación",
|
||||
"school": "Escuela",
|
||||
"description": "Descripción",
|
||||
"bought_at_rank": "Adquirido en rango",
|
||||
"types": "Tipos",
|
||||
"source_reference": {
|
||||
"reference": "Referencia",
|
||||
"page_abbreviation": "p."
|
||||
},
|
||||
"value": "Valor",
|
||||
"rarity": "Rareza",
|
||||
"quantity": "Cantidad",
|
||||
"weight": "Peso",
|
||||
"properties": "Propiedades",
|
||||
"linked_property": "Propiedad vínculada",
|
||||
"removed_properties": "Anula",
|
||||
"notes": "Notas",
|
||||
"inventory": "Inventario",
|
||||
"equipment": "Equipo",
|
||||
"rank": "Rango",
|
||||
"name": "Nombre"
|
||||
},
|
||||
"dice": {
|
||||
"chat": {
|
||||
"successes": "Éxitos",
|
||||
"explosives": "Relanzables",
|
||||
"opportunities": "Oportunidades",
|
||||
"strife": "Conflictos",
|
||||
"difficulty": "NO",
|
||||
"difficulty_hidden": "???",
|
||||
"void_point_used": "Punto de Vacío utilizado",
|
||||
"assistance_used": "Asistencia de habilidad utilizada",
|
||||
"roll_n_keep": "Tirar y guardar",
|
||||
"initiative_roll": "Tirada de Iniciativa",
|
||||
"success_text": "¡Éxito!",
|
||||
"bonus_text": "Éxitos adicionales",
|
||||
"fail_text": "¡Fallo!",
|
||||
"unknown_target": "Unknown target"
|
||||
},
|
||||
"dicepicker": {
|
||||
"title": "Dice Picker",
|
||||
"difficulty_title": "Dificultad",
|
||||
"difficulty_hidden_label": "Ocultar NO",
|
||||
"use_void_point_label": "Gasta un",
|
||||
"void_point_tooltip": "Punto de vacío",
|
||||
"skill_assistance_label": "Asistencia",
|
||||
"roll_label": "Tirar",
|
||||
"bt_add_macro": "Añadir una macro",
|
||||
"gm_request_dp_to_players": "Roll request sent to players"
|
||||
},
|
||||
"roll_n_keep": {
|
||||
"title": "Tirar y guardar",
|
||||
"discard_drop_here": "Descartar",
|
||||
"reroll_drop_here": "Relanzar",
|
||||
"swap_drop_here": "Cambiar cara",
|
||||
"keep_drop_here": "Guardar",
|
||||
"max": "Máx",
|
||||
"bt_validate": "Terminar este paso",
|
||||
"bt_strife": "Apply strife",
|
||||
"undo": "[GM] Deshacer los últimos cambios"
|
||||
}
|
||||
},
|
||||
"gm": {
|
||||
"toolbox": {
|
||||
"title": "GM ToolBox",
|
||||
"difficulty_hidden": "Cambiar la dificultad visible",
|
||||
"difficulty": "Cambiar dificultad (Izquierda: añadir, Derecha: sustraer, central: NO 2)",
|
||||
"sleep": "Descanso confortable para todos los personajes (Eliminar fatiga = Agua x2. (Click Izquierdo: sólo a los personajes seleccionados. Derecho: a todos los actores)",
|
||||
"sleep_info": "Los personajes han dormido bien.",
|
||||
"scene_end": "Final de la escena (El Conflicto y la Fatiga de los personajes se reduce hasta la mitad del máximo del valor (Click Izquierdo: sólo a los personajes seleccionados. Derecho: a todos los actores)",
|
||||
"scene_end_info": "La tensión de la escena por fin disminuye.",
|
||||
"reset_void": "Comienzo de la partida: Resetea los puntos de Vacío de los jugadores (Click Izquierdo: sólo a los personajes seleccionados. Derecho: a todos los actores)",
|
||||
"reset_void_info": "Se han adjudicado los puntos de Vacío."
|
||||
},
|
||||
"monitor": {
|
||||
"title": "Pantalla del DJ",
|
||||
"switch_view": "Cambiar vista",
|
||||
"add_selected_tokens": "Add selected tokens",
|
||||
"honor_glory_status": "H/G/E",
|
||||
"focus_vigilance": "Con./Ale.",
|
||||
"mouse_control": "Click Izquierdo +1, Derecho: -1, middle: set to 0"
|
||||
}
|
||||
},
|
||||
"weapons": {
|
||||
"title": "Armas",
|
||||
"damage": "Daño",
|
||||
"range": "Alcance",
|
||||
"stats": "Estadísticas",
|
||||
"sheathed": "Equipado / Envainada",
|
||||
"readied": "Preparado",
|
||||
"category": "Categoría",
|
||||
"deadliness": "Letalidad",
|
||||
"grips": "Agarres",
|
||||
"1hand": "1-mano",
|
||||
"2hand": "2-manos"
|
||||
},
|
||||
"armors": {
|
||||
"title": "Armaduras",
|
||||
"type": "Defensa",
|
||||
"physical": "Física",
|
||||
"supernatural": "Sobrenatural",
|
||||
"equipped": "Equipado"
|
||||
},
|
||||
"items": {
|
||||
"title": "Objetos"
|
||||
},
|
||||
"techniques": {
|
||||
"title": "Técnicas",
|
||||
"not_allowed": "Tu personaje no puede utilizar este tipo de técnica.",
|
||||
"only_one": "Tu personaje sólo puede poseer una de estas técnicas.",
|
||||
"type": "Técnicas permitidas",
|
||||
"kata": "Kata",
|
||||
"kiho": "Kihõ",
|
||||
"inversion": "Inversion",
|
||||
"invocation": "Invocación",
|
||||
"ritual": "Ritual",
|
||||
"shuji": "Shuji",
|
||||
"maho": "Mahõ",
|
||||
"ninjutsu": "Ninjutsu",
|
||||
"mantra": "Mantra",
|
||||
"school_ability": "Capacidad de escuela",
|
||||
"mastery_ability": "Habilidad de maestría",
|
||||
"title_ability": "Capacidad de título",
|
||||
"specificity": "Specificity"
|
||||
},
|
||||
"peculiarities": {
|
||||
"types": {
|
||||
"distinction": "Distinción",
|
||||
"passion": "Pasión",
|
||||
"adversity": "Adversidad",
|
||||
"anxiety": "Ansiedad"
|
||||
}
|
||||
},
|
||||
"money": {
|
||||
"title": "Dinero personal",
|
||||
"koku": "Koku",
|
||||
"bu": "Bu",
|
||||
"zeni": "Zeni"
|
||||
},
|
||||
"social": {
|
||||
"title": "Posición Social",
|
||||
"honor": "Honor",
|
||||
"glory": "Gloria",
|
||||
"status": "Estatus",
|
||||
"ninjo": "Ninjo",
|
||||
"giri": "Giri",
|
||||
"past": "Past",
|
||||
"bushido_tenets": {
|
||||
"title": "Preceptos del Bushidō",
|
||||
"paramount": "Más importante",
|
||||
"less_significant": "Menos significativo"
|
||||
},
|
||||
"titles": "Títulos",
|
||||
"attitude": "Actitud:",
|
||||
"advantages": "Distinciones y pasiones",
|
||||
"disadvantages": "Adversidades y ansiedades",
|
||||
"bonds": "Vínculos",
|
||||
"npc": {
|
||||
"advantages": "Ventajas",
|
||||
"disadvantages": "Desventajas",
|
||||
"combat": "Combate",
|
||||
"intrigue": "Intriga"
|
||||
},
|
||||
"age": "Age",
|
||||
"children": "Children",
|
||||
"marital_status": {
|
||||
"title": "Marital Status",
|
||||
"partner": "Partner",
|
||||
"married": "Married",
|
||||
"betrothed": "Betrothed",
|
||||
"unmarried": "Unmarried",
|
||||
"widowed": "Widowed"
|
||||
},
|
||||
"gender": {
|
||||
"title": "Gender",
|
||||
"male": "Male",
|
||||
"female": "Female"
|
||||
}
|
||||
},
|
||||
"skills": {
|
||||
"title": "Habilidades",
|
||||
"label": "Habilidad",
|
||||
"artisan": {
|
||||
"title": "Artesanales",
|
||||
"aesthetics": "Estética",
|
||||
"composition": "Composición",
|
||||
"design": "Diseño",
|
||||
"smithing": "Herrería",
|
||||
"air": "Refinar",
|
||||
"earth": "Restaurar",
|
||||
"fire": "Inventar",
|
||||
"water": "Adaptar",
|
||||
"void": "Sintonizar"
|
||||
},
|
||||
"martial": {
|
||||
"title": "Marciales",
|
||||
"fitness": "Aptitud Física",
|
||||
"melee": "Cuerpo a Cuerpo",
|
||||
"ranged": "A distancia",
|
||||
"unarmed": "Sin armas",
|
||||
"meditation": "Meditación",
|
||||
"tactics": "Estrategia",
|
||||
"air": "Amagar",
|
||||
"earth": "Resistir",
|
||||
"fire": "Abrumar",
|
||||
"water": "Alterar",
|
||||
"void": "Sacrificarse"
|
||||
},
|
||||
"scholar": {
|
||||
"title": "Académicas",
|
||||
"culture": "Cultura",
|
||||
"government": "Gobierno",
|
||||
"medicine": "Medicina",
|
||||
"sentiment": "Sentimiento",
|
||||
"theology": "Teología",
|
||||
"air": "Analizar",
|
||||
"earth": "Recordar",
|
||||
"fire": "Teorizar",
|
||||
"water": "Examinar",
|
||||
"void": "Percibir"
|
||||
},
|
||||
"social": {
|
||||
"title": "Sociales",
|
||||
"command": "Mando",
|
||||
"courtesy": "Cortesía",
|
||||
"games": "Pasatiempos",
|
||||
"performance": "Interpretación",
|
||||
"air": "Engañar",
|
||||
"earth": "Razonar",
|
||||
"fire": "Incitar",
|
||||
"water": "Encandilar",
|
||||
"void": "Iluminar"
|
||||
},
|
||||
"trade": {
|
||||
"title": "Mercantiles",
|
||||
"commerce": "Comercio",
|
||||
"labor": "Trabajo manual",
|
||||
"seafaring": "Navegación",
|
||||
"skulduggery": "Actividad criminal",
|
||||
"survival": "Supervivencia",
|
||||
"air": "Estafar",
|
||||
"earth": "Producir",
|
||||
"fire": "Idear",
|
||||
"water": "Intercambiar",
|
||||
"void": "Subsistir"
|
||||
}
|
||||
},
|
||||
"attributes": {
|
||||
"title": "Atributos",
|
||||
"endurance": "Aguante",
|
||||
"endurancetip": "(Tierra + Fuego) x2",
|
||||
"composure": "Compostura",
|
||||
"composuretip": "(Tierra + Agua) x2",
|
||||
"focus": "Concentración",
|
||||
"focustip": "Aire + Fuego",
|
||||
"vigilance": "Alerta",
|
||||
"vigilancetip": "(Aire + Agua) /2",
|
||||
"voidpoints": "Puntos de Vacío",
|
||||
"fatigue": "Fatiga",
|
||||
"strife": "Conflicto"
|
||||
},
|
||||
"conflict": {
|
||||
"title": "Enfrentamiento",
|
||||
"stance": "Actitud",
|
||||
"stances": {
|
||||
"airtip": "+1 al NO de las tiradas de ataque y maquinación que te tengan como objetivo (+2 a rango 4+).",
|
||||
"earthtip": "Oponentes no pueden gastar Oportunidad para causarte impactos críticos ni estados.",
|
||||
"firetip": "Si tienes éxito, +1 éxito adicional por cada símbolo de Conflicto.",
|
||||
"watertip": "Efectúa una segunda acción durante tu turno que no requiera tirada ni comparta tipo con tu primera acción.",
|
||||
"voidtip": "No acumulas Conflicto de los símbolos de Conflicto de tus tiradas."
|
||||
},
|
||||
"initiative": {
|
||||
"title": "Iniciativa",
|
||||
"intrigue": "Intriga",
|
||||
"duel": "Duelo",
|
||||
"skirmish": "Escaramuza",
|
||||
"mass_battle": "Batalla a gran escala",
|
||||
"prepared_true": "Preparado",
|
||||
"prepared_false": "Sorprendido",
|
||||
"prepared_actor": "Definido en la hoja de personaje (por defecto)",
|
||||
"already_set": "Tu iniciativa ya ha sido establecida."
|
||||
}
|
||||
},
|
||||
"advancements": {
|
||||
"title": "Avances",
|
||||
"school_rank": "Rango de la escuela",
|
||||
"school_rank_0": "Inicial",
|
||||
"total": "Total",
|
||||
"cost": "Coste",
|
||||
"spent": "Gastado",
|
||||
"saved": "Guardado",
|
||||
"total_xp_spent": "PE gastados",
|
||||
"total_xp_curriculum": "PE gastados en el programa",
|
||||
"curriculum": "En programa de estudio",
|
||||
"curriculum_validate": "Completar este rango",
|
||||
"rarity_modifier": "Modificador de rareza",
|
||||
"item_pattern": "Patrones de objetos",
|
||||
"signature_scroll": "Pergaminos espaciales",
|
||||
"school_curriculum_journal": "Arrastra el diario del programa en la hoja para vincularlo"
|
||||
},
|
||||
"character_types": {
|
||||
"character": "Personaje jugador",
|
||||
"adversary": "Adversario",
|
||||
"minion": "Esbirro"
|
||||
},
|
||||
"army": {
|
||||
"warlord": "Warlord",
|
||||
"allies_backers": "Allies and Backers",
|
||||
"purpose_mustering": "Purpose for Mustering",
|
||||
"battle_readiness": {
|
||||
"title": "Battle Readiness",
|
||||
"strength": "Strength",
|
||||
"casualties": "Casualties",
|
||||
"discipline": "Discipline",
|
||||
"panic": "Panic"
|
||||
},
|
||||
"commander": "Commander",
|
||||
"commander_abilities": "Commander's relevant abilities",
|
||||
"army_abilities": "Army Abilities",
|
||||
"commander_standing": "Commander's Standing",
|
||||
"supplies_logistics": "Supplies and Logistics",
|
||||
"past_battles": "Past Battles",
|
||||
"cohort": {
|
||||
"tab": "Cohorts",
|
||||
"title": "Cohort",
|
||||
"leader": "Leader",
|
||||
"abilities": "Abilities"
|
||||
},
|
||||
"fortification": {
|
||||
"tab": "Fortifications",
|
||||
"title": "Fortification Held",
|
||||
"difficulty": "Difficulty Value",
|
||||
"attrition_reduction": "Attrition Reduction"
|
||||
}
|
||||
},
|
||||
"twenty_questions": {
|
||||
"title": "Veinte preguntas",
|
||||
"bt_abrev": "20P",
|
||||
"bt_next": "Siguiente",
|
||||
"increase_ring1": "Incremento de anillo (1)",
|
||||
"increase_ring2": "Incremento de anillo (2)",
|
||||
"increase_skill1": "Incremento de habilidad (1)",
|
||||
"increase_skill2": "Incremento de habilidad (2)",
|
||||
"increase_skill3": "Incremento de habilidad (3-5)",
|
||||
"choose_one_ring": "Elige uno",
|
||||
"choose_one_skill": "Elige una",
|
||||
"or": "o",
|
||||
"and": "y",
|
||||
"error": "Uy, parece que hay un error:",
|
||||
"part0": {
|
||||
"intro": "Puedes usar esta hoja para rellenar tus respuestas al Juego de las 20 Preguntas, y para tomar notas para más tarde!",
|
||||
"section": "Leyenda de los Cinco Anillos, capítulo 2: Creación de personajes, pp. 41-95",
|
||||
"section_pow": "Leyenda de los Cinco Anillos Senda de las olas, capítulo 2: Creación de personajes pp. 30–82",
|
||||
"type": "Elige la plantilla de 20P que quieres usar",
|
||||
"type_core": "Samurai (Libro básico)",
|
||||
"type_pow": "Ronin (Senda de las olas)"
|
||||
},
|
||||
"part1": {
|
||||
"title": "Parte I: Identidad básica (Clan y Familia)",
|
||||
"title_pow": "Part I: Core Identity (Region and Upbringing)",
|
||||
"q1": "1. ¿A qué clan pertenece tu personaje? (p. 41)",
|
||||
"q1_pow": "1. What region does your character come from? (p. 31)",
|
||||
"status": "Estatus",
|
||||
"q2": "2. ¿A qué familia pertenece tu personaje? (p. 49)",
|
||||
"q2_pow": "2. What was your character’s upbringing? (p. 43)",
|
||||
"money": "Riqueza inicial en Koku",
|
||||
"glory": "Gloria"
|
||||
},
|
||||
"part2": {
|
||||
"title": "Parte II: Función y escuela",
|
||||
"q3": "3. ¿Cuál es la escuela de tu personaje, y en qué funciones cumple esa escuela? (p. 56)",
|
||||
"q3_pow": "3. What is your character’s school, and what are its associated roles? (p. 46)",
|
||||
"school": "Escuela",
|
||||
"role": "Funciones",
|
||||
"honor": "Honor",
|
||||
"access": "Tipos de técnicas disponibles",
|
||||
"school_ability": "Capacidad de escuela",
|
||||
"starting_techniques": "Técnicas iniciales (2-6)",
|
||||
"outfit": "Equipo inicial",
|
||||
"q4": "4. ¿De qué manera destaca tu personaje dentro de su escuela? (p. 88)",
|
||||
"q4_pow": "4. What gets your character in and out of trouble? (p. 60)"
|
||||
},
|
||||
"part3": {
|
||||
"title": "Parte III: Honor y Gloria",
|
||||
"title_pow": "Part III: The Past and the Future they interact and process",
|
||||
"q5": "5. ¿Quién es tu señor y cuál es el deber de tu personaje hacia él? (p. 88)",
|
||||
"q5_pow": "5. What is your character’s past and how does it Affect them? (p. 60)",
|
||||
"choose_giri": "Elige un giri:",
|
||||
"choose_past": "Select past",
|
||||
"q6": "6. ¿Qué es lo que anhela tu personaje, y cómo podría esto interferir con su deber? (p. 90)",
|
||||
"q6_pow": "6. What does your character long for, and how might their past impact their ninjō? (p. 62)",
|
||||
"choose_ninjo": "Elige un ninjō:",
|
||||
"q7": "7. ¿Cuál es la relación de tu personaje con tu clan? (p. 91)",
|
||||
"q7_pow": "7. What is your character known for? (p. 61)",
|
||||
"increase_glory": "Aumento de la gloria",
|
||||
"q8": "8. ¿Qué piensa tu personaje acerca del Bushidō? (p. 91)",
|
||||
"q8_pow": "8. What does your character think of Bushidō? (p. 62)",
|
||||
"increase_honor": "Aumento del honor",
|
||||
"tenets": "Escoge un precepto del Bushidō más importante y un precepto como menos significativo (ver las opiniones de los Clanes respecto del Bushidō, página 301 del libro de reglas básicas):",
|
||||
"object": "Objeto (Rareza 5 o inferior)"
|
||||
},
|
||||
"part4": {
|
||||
"title": "Parte IV: Fortalezas y Debilidades",
|
||||
"q9": "9. ¿Cuál es el mayor logro de tu personaje hasta ahora? (p. 92)",
|
||||
"q9_pow": "9. ¿Cuál es el mayor logro de tu personaje hasta ahora? (p. 64)",
|
||||
"distinction": "Distinción (1)",
|
||||
"q10": "10. ¿Qué es lo que más frena a tu personaje en la vida? (p. 92)",
|
||||
"q10_pow": "10. ¿Qué es lo que más frena a tu personaje en la vida? (p. 64)",
|
||||
"adversity": "Adversidad (1)",
|
||||
"q11": "11. ¿Qué actividad hace que tu personaje se sienta más en paz? (p. 93)",
|
||||
"q11_pow": "11. ¿Qué actividad hace que tu personaje se sienta más en paz? (p. 65)",
|
||||
"passion": "Pasión (1)",
|
||||
"q12": "12. ¿Qué preocupación, miedo o debilidad perturba más a tu personaje? (p. 93)",
|
||||
"q12_pow": "12. ¿Qué preocupación, miedo o debilidad perturba más a tu personaje? (p. 65)",
|
||||
"anxiety": "Ansiedad (1)",
|
||||
"q13": "13. ¿Quién ha sido la persona de la que más ha aprendido tu personaje en el transcurso de su vida? (p. 93)",
|
||||
"q13_pow": "13. ¿Quién ha sido la persona de la que más ha aprendido tu personaje en el transcurso de su vida? (p. 65)",
|
||||
"disadvantage": "Desventaja (1)",
|
||||
"advantage": "Ventaja (1)"
|
||||
},
|
||||
"part5": {
|
||||
"title": "Parte V: Personalidad y Comportamiento",
|
||||
"q14": "14. ¿Qué es lo que advierte primero la gente al encontrarse con tu personaje? (p. 93)",
|
||||
"q14_pow": "14. What is your character’s most prized possession? (p. 66)",
|
||||
"accoutrement": "Accesorio estético distintivo",
|
||||
"q15": "15. ¿Cómo reacciona tu personaje ante situaciones de tensión? (p. 94)",
|
||||
"q15_pow": "15. ¿Cómo reacciona tu personaje ante situaciones de tensión? (p. 66)",
|
||||
"q16": "16. ¿Cuáles son las relaciones previas de tu personaje con otros clanes, familias, organizaciones y tradiciones? (p. 94)",
|
||||
"q16_pow": "16. What are your relationships to your family, the clans, peasants, and others? (p. 66)",
|
||||
"object": "Objeto (Rareza 7 o inferior)"
|
||||
},
|
||||
"part6": {
|
||||
"title": "Parte VI: Ascestros y familia",
|
||||
"title_pow": "Part VI: Ancestry and Bonds",
|
||||
"q17": "17. ¿Cómo describirían sus padres a tu personaje? (p. 95)",
|
||||
"q17_pow": "17. What shared history do you have with your group? (p. 66)",
|
||||
"bond": "Determine an appropriate bond to apply to your relationship",
|
||||
"q18": "18. ¿En honor de quién se eligio el nombre de tu personaje? (p. 95)",
|
||||
"q18_pow": "18. Who raised you? (p. 67)",
|
||||
"d10r1": "Resultado D10 (1/2)",
|
||||
"d10r1_choice": "Primer efecto de D10",
|
||||
"d10r2": "Resultado D10 (2/2)",
|
||||
"d10r2_choice": "Segundo efecto de D10",
|
||||
"d10r2_drop_items": "O una técnica, una ventaja, un objeto...",
|
||||
"q19": "19. ¿Cuál es el nombre personal de tu personaje? (p. 95)",
|
||||
"q19_pow": "19. ¿Cuál es el nombre personal de tu personaje? (p. 68)"
|
||||
},
|
||||
"part7": {
|
||||
"title": "Parte VII: Muerte",
|
||||
"q20": "20. ¿Cómo debería morir tu personaje? (p. 95)",
|
||||
"q20_pow": "20. ¿Cómo debería morir tu personaje? (p. 68)",
|
||||
"summary": "Resumen",
|
||||
"generchar": "Generar el personaje",
|
||||
"generchar_disclaimer": "Advertencia, ¡esto borrará los datos actuales del personaje!",
|
||||
"generchar_errors": "¡Borrar los errores antes de continuar!"
|
||||
}
|
||||
},
|
||||
"char_generator": {
|
||||
"title": "Character Generator",
|
||||
"head_bt_title": "Char. Generator",
|
||||
"generate": "Generate",
|
||||
"average_value": "Average value",
|
||||
"identity": "Clan, gender, age, marital status",
|
||||
"attributes": "Social standing, Rings, Attributes and Skills",
|
||||
"demeanor": "Demeanor & rings affinities",
|
||||
"peculiarities": "Advantages and Disadvantages",
|
||||
"items": "Armors, Weapons, and Items",
|
||||
"narrative": "Narrative (Description)"
|
||||
},
|
||||
"roles": {
|
||||
"title": "Funciones",
|
||||
"artisan": "Artisan",
|
||||
"bushi": "Bushi",
|
||||
"courtier": "Courtier",
|
||||
"monk": "Monk",
|
||||
"sage": "Sage",
|
||||
"shinobi": "Shinobi",
|
||||
"shugenja": "Shugenja"
|
||||
},
|
||||
"clans": {
|
||||
"title": "Clans",
|
||||
"label": "Clan",
|
||||
"imperial": "Imperial",
|
||||
"crab": "Crab",
|
||||
"crane": "Crane",
|
||||
"dragon": "Dragon",
|
||||
"lion": "Lion",
|
||||
"phoenix": "Phoenix",
|
||||
"scorpion": "Scorpion",
|
||||
"unicorn": "Unicorn",
|
||||
"mantis": "Mantis",
|
||||
"ronin": "Ronin",
|
||||
"badger": "Badger",
|
||||
"bat": "Bat",
|
||||
"boar": "Boar",
|
||||
"dragonfly": "Dragonfly",
|
||||
"firefly": "Firefly",
|
||||
"hare": "Hare",
|
||||
"monkey": "Monkey",
|
||||
"oriole": "Oriole",
|
||||
"ox": "Ox",
|
||||
"sparrow": "Sparrow",
|
||||
"tortoise": "Tortoise",
|
||||
"ivory_kingdoms": "Ivory Kingdoms",
|
||||
"qamarist": "Qamarist",
|
||||
"ujik": "Ujik"
|
||||
},
|
||||
"demeanor": {
|
||||
"adaptable": "Adaptable",
|
||||
"aggressive": "Aggressive",
|
||||
"ambitious": "Ambitious",
|
||||
"amiable": "Amiable",
|
||||
"analytical": "Analytical",
|
||||
"angry": "Angry",
|
||||
"arrogant": "Arrogant",
|
||||
"assertive": "Assertive",
|
||||
"beguiling": "Beguiling",
|
||||
"bitter": "Bitter",
|
||||
"bold": "Bold",
|
||||
"calculating": "Calculating",
|
||||
"calm": "Calm",
|
||||
"capricious": "Capricious",
|
||||
"cautious": "Cautious",
|
||||
"clever": "Clever",
|
||||
"confused": "Confused",
|
||||
"courageous": "Courageous",
|
||||
"cowardly": "Cowardly",
|
||||
"curious": "Curious",
|
||||
"dependable": "Dependable",
|
||||
"detached": "Detached",
|
||||
"disheartened": "Disheartened",
|
||||
"enraged": "Enraged",
|
||||
"feral": "Feral",
|
||||
"fickle": "Fickle",
|
||||
"fierce": "Fierce",
|
||||
"flighty": "Flighty",
|
||||
"flippant": "Flippant",
|
||||
"friendly": "Friendly",
|
||||
"gruff": "Gruff",
|
||||
"hungry": "Hungry",
|
||||
"intense": "Intense",
|
||||
"intimidating": "Intimidating",
|
||||
"irritable": "Irritable",
|
||||
"loyal": "Loyal",
|
||||
"mischievous": "Mischievous",
|
||||
"morose": "Morose",
|
||||
"nurturing": "Nurturing",
|
||||
"obstinate": "Obstinate",
|
||||
"opportunistic": "Opportunistic",
|
||||
"passionate": "Passionate",
|
||||
"playful": "Playful",
|
||||
"power_hungry": "Power hungry",
|
||||
"proud": "Proud",
|
||||
"restrained": "Restrained",
|
||||
"scheming": "Scheming",
|
||||
"serene": "Serene",
|
||||
"serious": "Serious",
|
||||
"shrewd": "Shrewd",
|
||||
"stubborn": "Stubborn",
|
||||
"suspicious": "Suspicious",
|
||||
"teasing": "Teasing",
|
||||
"territorial": "Territorial",
|
||||
"uncertain": "Uncertain",
|
||||
"unenthused": "Unenthused",
|
||||
"vain": "Vain",
|
||||
"wary": "Wary"
|
||||
},
|
||||
"compendium": {
|
||||
"filter_rank": "Show Rank",
|
||||
"not_for_players": "Not shown to players",
|
||||
"filter": {
|
||||
"rank": "Rank",
|
||||
"rarity": "Rarity",
|
||||
"ring": "Ring"
|
||||
}
|
||||
},
|
||||
"source_reference": {
|
||||
"core_rulebook": "Core Rulebook",
|
||||
"emerald_empire": "Emerald Empire",
|
||||
"shadowlands": "Shadowlands",
|
||||
"court_of_stones": "Court of Stones",
|
||||
"path_of_waves": "Path of Waves",
|
||||
"celestial_realms": "Celestial Realms",
|
||||
"fields_of_victory": "Fields of Victory",
|
||||
"writ_of_the_wild": "Writ of the Wild",
|
||||
"gm_kit": "Game Master's Kit",
|
||||
"beginner_game": "Beginner Game",
|
||||
"the_mantis_clan": "The Mantis Clan",
|
||||
"mask_of_the_oni": "Mask of the Oni",
|
||||
"winters_embrace": "Winter's Embrace",
|
||||
"sins_of_regret": "Sins of Regret",
|
||||
"wheel_of_judgment": "Wheel of Judgment",
|
||||
"blood_of_the_lioness": "Blood of the Lioness",
|
||||
"imperfect_land": "Imperfect Land",
|
||||
"in_the_palace_of_the_emerald_champion": "In the Palace of the Emerald Champion",
|
||||
"the_highwayman": "The Highwayman",
|
||||
"wedding_at_kyotei_castle": "Wedding at Kyotei Castle",
|
||||
"the_knotted_tails": "The Knotted Tails",
|
||||
"cresting_waves": "Cresting Waves",
|
||||
"deathly_turns": "Deathly Turns",
|
||||
"the_scroll_or_the_blade": "The Scroll or the Blade",
|
||||
"legacies_of_war": "Legacies of War"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1,7 +1,9 @@
|
||||
{
|
||||
"I18N": {
|
||||
"Language": "Français",
|
||||
"Maintainers": ["Team L5R"]
|
||||
"Maintainers": [
|
||||
"Team L5R"
|
||||
]
|
||||
},
|
||||
"SETTINGS": {
|
||||
"None": "Aucune option",
|
||||
@@ -21,6 +23,10 @@
|
||||
"SetTn1OnTypeChange": "ND 1 à la sélection du type de rencontre",
|
||||
"SetTn1OnTypeChangeHint": "Met le ND à 1 lorsqu'on modifie le type de rencontre (Intrigue, Duel, Escarmouche ou Bataille rangée)"
|
||||
},
|
||||
"ShowAllStatusEffects": {
|
||||
"Title": "Affiche tous les StatusEffects",
|
||||
"Hint": "Si décoché (défaut), uniquement les conditions de L5R sont affichées."
|
||||
},
|
||||
"CustomTechniques": {
|
||||
"Title": "Utiliser les techniques personnalisées",
|
||||
"Hint": "Ajoute un type de technique 'Particularités' pour servir de fourre-tout."
|
||||
@@ -65,20 +71,61 @@
|
||||
"weapon": "Arme",
|
||||
"technique": "Technique",
|
||||
"property": "Propriété",
|
||||
"peculiarity": "Particularité",
|
||||
"peculiarity": "Avantage/Désavantage",
|
||||
"advancement": "Progression",
|
||||
"title": "Titre",
|
||||
"bond": "Lien",
|
||||
"signature_scroll": "Rouleau de marque",
|
||||
"item_pattern": "Procédé de fabrication",
|
||||
"army_fortification": "Fortification",
|
||||
"army_cohort": "Régiment"
|
||||
"army_cohort": "Régiment",
|
||||
"arcane": "Arcane",
|
||||
"etat": "État",
|
||||
"mystere": "Mystère",
|
||||
"technique_ecole": "Technique École",
|
||||
"mot_invocation": "Mot d'Invocation"
|
||||
},
|
||||
"Journal": {
|
||||
"journal": "Journal"
|
||||
}
|
||||
},
|
||||
"l5r5e": {
|
||||
"title": "La Légende des Cinq Anneaux",
|
||||
"conditions": {
|
||||
"afflicted": "Tourmenté",
|
||||
"bleeding": "En sang",
|
||||
"burning": "En feu",
|
||||
"centered": "Centered",
|
||||
"compromised": "Compromis",
|
||||
"dazed": "Hébété",
|
||||
"disoriented": "Désorienté",
|
||||
"dying": "Mourant",
|
||||
"emboldened": "Emboldened",
|
||||
"enraged": "Enragé",
|
||||
"exhausted": "Épuisé",
|
||||
"immobilized": "Immobilisé",
|
||||
"illness_coughing_illness": "Maladie : Mauvaise toux",
|
||||
"illness_fire_rash": "Maladie : Rougeurs",
|
||||
"illness_gut_sickness": "Maladie : Mal des entrailles",
|
||||
"illness_oozing_sore_disease": "Maladie : Bubons purulents",
|
||||
"illness_unsteady_illness": "Maladie : Vertiges",
|
||||
"incapacitated": "Hors de combat",
|
||||
"intoxicated": "Ivre",
|
||||
"possessed": "Possédé",
|
||||
"prone": "A terre",
|
||||
"silenced": "Aphone",
|
||||
"unconscious": "Inconscient",
|
||||
"lightly_wounded_fire": "Légèrement Blessé (Feu)",
|
||||
"lightly_wounded_water": "Légèrement Blessé (Eau)",
|
||||
"lightly_wounded_air": "Légèrement Blessé (Air)",
|
||||
"lightly_wounded_earth": "Légèrement Blessé (Terre)",
|
||||
"lightly_wounded_void": "Légèrement Blessé (Vide)",
|
||||
"severely_wounded_fire": "Gravement blessé (Feu)",
|
||||
"severely_wounded_water": "Gravement blessé (Eau)",
|
||||
"severely_wounded_air": "Gravement blessé (Air)",
|
||||
"severely_wounded_earth": "Gravement blessé (Terre)",
|
||||
"severely_wounded_void": "Gravement blessé (Vide)"
|
||||
},
|
||||
"global": {
|
||||
"edge_translation_disclaimer": "",
|
||||
"add": "Ajouter",
|
||||
@@ -96,6 +143,7 @@
|
||||
"player_filter_label": "Filtre joueur",
|
||||
"player_filter_tooltip": "Applique le filtre des joueurs",
|
||||
"already_in_filter": "Filtre déjà appliqué",
|
||||
"no_results": "Aucun résultat",
|
||||
"sources_categories": {
|
||||
"rules": "Règles",
|
||||
"adventures": "Aventures",
|
||||
@@ -103,16 +151,6 @@
|
||||
"others": "Autres"
|
||||
}
|
||||
},
|
||||
"settings": {
|
||||
"custom-compendiums": {
|
||||
"title": "Compendiums",
|
||||
"link": "https://gitlab.com/teaml5r/l5r5e/-/wikis/users/custom-compendiums.md"
|
||||
},
|
||||
"wiki": {
|
||||
"title": "Wiki",
|
||||
"link": "https://gitlab.com/teaml5r/l5r5e/-/wikis/home"
|
||||
}
|
||||
},
|
||||
"logo": {
|
||||
"title": "Besoin d'aide ?",
|
||||
"src": "systems/l5r5e/assets/l5r-logo.webp",
|
||||
@@ -132,6 +170,22 @@
|
||||
"title": "Rejoignez le Discord Francophone",
|
||||
"info": "Votre navigateur va ouvrir le discord francophone de foundry.",
|
||||
"link": "https://discord.gg/pPSDNJk"
|
||||
},
|
||||
"notes": {
|
||||
"title": "Changelog",
|
||||
"link": "https://gitlab.com/teaml5r/l5r5e/-/blob/master/CHANGELOG.md"
|
||||
},
|
||||
"issues": {
|
||||
"title": "Issues",
|
||||
"link": "https://gitlab.com/teaml5r/l5r5e/-/issues"
|
||||
},
|
||||
"custom-compendiums": {
|
||||
"title": "Compendiums",
|
||||
"link": "https://gitlab.com/teaml5r/l5r5e/-/wikis/users/custom-compendiums.md"
|
||||
},
|
||||
"wiki": {
|
||||
"title": "Wiki",
|
||||
"link": "https://gitlab.com/teaml5r/l5r5e/-/wikis/home"
|
||||
}
|
||||
},
|
||||
"rings": {
|
||||
@@ -271,7 +325,8 @@
|
||||
"school_ability": "Capacité d'école",
|
||||
"mastery_ability": "Capacité de maîtrise",
|
||||
"title_ability": "Capacité de Titre",
|
||||
"specificity": "Particularité"
|
||||
"specificity": "Particularité",
|
||||
"mot_invocation": "Mot d'Invocation"
|
||||
},
|
||||
"peculiarities": {
|
||||
"types": {
|
||||
@@ -332,67 +387,43 @@
|
||||
"label": "Compétence",
|
||||
"artisan": {
|
||||
"title": "Artisanales",
|
||||
"aesthetics": "Esthétique",
|
||||
"art": "Art",
|
||||
"composition": "Composition",
|
||||
"design": "Stylisme",
|
||||
"smithing": "Forge",
|
||||
"air": "Raffiner",
|
||||
"earth": "Restaurer",
|
||||
"fire": "Inventer",
|
||||
"water": "Adapter",
|
||||
"void": "S’harmoniser"
|
||||
"labor": "Travail Manuel"
|
||||
},
|
||||
"martial": {
|
||||
"title": "Martiales",
|
||||
"archery": "Archerie",
|
||||
"fitness": "Forme",
|
||||
"melee": "Arts martiaux (corps à corps)",
|
||||
"ranged": "Arts martiaux (distance)",
|
||||
"unarmed": "Arts martiaux (mains nues)",
|
||||
"meditation": "Méditation",
|
||||
"tactics": "Tactique",
|
||||
"air": "Feinter",
|
||||
"earth": "Résister",
|
||||
"fire": "Submerger",
|
||||
"water": "Détourner",
|
||||
"void": "Lâcher prise"
|
||||
"melee": "Mêlée",
|
||||
"unarmed": "Mains nues",
|
||||
"meditation": "Méditation"
|
||||
},
|
||||
"scholar": {
|
||||
"title": "Savantes",
|
||||
"title": "Connaissance",
|
||||
"culture": "Culture",
|
||||
"government": "Gouvernement",
|
||||
"medicine": "Médecine",
|
||||
"sentiment": "Sentiments",
|
||||
"theology": "Théologie",
|
||||
"air": "Analyser",
|
||||
"earth": "Se remémorer",
|
||||
"fire": "Théoriser",
|
||||
"water": "Observer",
|
||||
"void": "Ressentir"
|
||||
"tactics": "Tactique",
|
||||
"theology": "Théologie"
|
||||
},
|
||||
"social": {
|
||||
"title": "Sociales",
|
||||
"title": "Social",
|
||||
"command": "Commandement",
|
||||
"courtesy": "Courtoisie",
|
||||
"invocation": "Invocation",
|
||||
"games": "Jeux",
|
||||
"performance": "Représentations",
|
||||
"air": "Duper",
|
||||
"earth": "Raisonner",
|
||||
"fire": "Inciter",
|
||||
"water": "Charmer",
|
||||
"void": "Illuminer"
|
||||
"performance": "Représentation"
|
||||
},
|
||||
"trade": {
|
||||
"title": "Professionnelles",
|
||||
"animal": "Animal",
|
||||
"commerce": "Commerce",
|
||||
"labor": "Travail manuel",
|
||||
"seafaring": "Navigation",
|
||||
"skulduggery": "Magouilles",
|
||||
"survival": "Survie",
|
||||
"air": "Escroquer",
|
||||
"earth": "Produire",
|
||||
"fire": "Innover",
|
||||
"water": "Échanger",
|
||||
"void": "Subsister"
|
||||
"urban": "Urban"
|
||||
}
|
||||
},
|
||||
"attributes": {
|
||||
@@ -446,7 +477,10 @@
|
||||
"rarity_modifier": "Modificateur de rareté",
|
||||
"item_pattern": "Procédés de fabrication",
|
||||
"signature_scroll": "Rouleaux de marque",
|
||||
"school_curriculum_journal": "Déposer un journal de Cursus dans la feuille pour le lier"
|
||||
"school_curriculum_journal": "Déposer un journal de Cursus dans la feuille pour le lier",
|
||||
"warning": {
|
||||
"total_less_then_spent": "L'expérience totale est inférieure à l'expérience utilisée."
|
||||
}
|
||||
},
|
||||
"character_types": {
|
||||
"character": "Personnage Joueur",
|
||||
@@ -645,6 +679,7 @@
|
||||
"boar": "Sanglier",
|
||||
"dragonfly": "Libellule",
|
||||
"firefly": "Luciole",
|
||||
"fox": "Renard",
|
||||
"hare": "Lièvre",
|
||||
"monkey": "Singe",
|
||||
"oriole": "Loriot",
|
||||
@@ -656,64 +691,103 @@
|
||||
"ujik": "Ujik"
|
||||
},
|
||||
"demeanor": {
|
||||
"adaptable": "Adaptable",
|
||||
"adaptable": "Malléable",
|
||||
"aggressive": "Agressive",
|
||||
"alluring": "Attirante",
|
||||
"ambitious": "Ambitieuse",
|
||||
"amiable": "Sympathique",
|
||||
"analytical": "Réfléchie",
|
||||
"angry": "Enervée",
|
||||
"amiable": "Aimable",
|
||||
"analytical": "Analytique",
|
||||
"angry": "En colère",
|
||||
"arrogant": "Arrogante",
|
||||
"assertive": "Assurée",
|
||||
"beguiling": "Séduisante",
|
||||
"assertive": "Sûre de soi",
|
||||
"beguiling": "Envoûtante",
|
||||
"bitter": "Amère",
|
||||
"bold": "Audacieuse",
|
||||
"bloodthirsty": "Sanguinaire",
|
||||
"bold": "Courageuse",
|
||||
"calculating": "Calculatrice",
|
||||
"calm": "Calme",
|
||||
"capricious": "Capricieuse",
|
||||
"cautious": "Prudente",
|
||||
"clever": "Astucieuse",
|
||||
"clever": "Malicieuse",
|
||||
"compassionate": "Compatissante",
|
||||
"confused": "Confuse",
|
||||
"courageous": "Courageuse",
|
||||
"cowardly": "Lâche",
|
||||
"crestfallen": "Démoralisée",
|
||||
"curious": "Curieuse",
|
||||
"defensive": "Sur la défensive",
|
||||
"dependable": "Fiable",
|
||||
"detached": "Détachée",
|
||||
"disheartened": "Découragée",
|
||||
"determined": "Déterminée",
|
||||
"devoted": "Fervente",
|
||||
"direct": "Directe",
|
||||
"disheartened": "Abattue",
|
||||
"dour": "Renfrognée",
|
||||
"duplicitous": "Sournoise",
|
||||
"effusive": "Communicative",
|
||||
"enraged": "Enragée",
|
||||
"fanatical": "Fanatique",
|
||||
"feral": "Sauvage",
|
||||
"fickle": "Inconstante",
|
||||
"fervent": "Dévote",
|
||||
"fickle": "Volatile",
|
||||
"fierce": "Féroce",
|
||||
"flighty": "Volage",
|
||||
"flighty": "Inconstante",
|
||||
"flippant": "Désinvolte",
|
||||
"friendly": "Amicale",
|
||||
"gruff": "Bourrue",
|
||||
"honorable": "Honorable",
|
||||
"hubristic": "Prétentieuse",
|
||||
"hungry": "Affamée",
|
||||
"intense": "Intense",
|
||||
"idealistic": "Idéaliste",
|
||||
"imposing": "Impressionnante",
|
||||
"inquisitive": "Inquisitrice",
|
||||
"intense": "Excessive",
|
||||
"intimidating": "Intimidante",
|
||||
"irritable": "Irritable",
|
||||
"loyal": "Fidèle",
|
||||
"mischievous": "Malicieuse",
|
||||
"irritable": "Colérique",
|
||||
"loyal": "Loyale",
|
||||
"methodical": "Méthodique",
|
||||
"meticulous": "Méticuleuse",
|
||||
"mischievous": "Taquine",
|
||||
"moon_blessed": "Bénie par la Lune",
|
||||
"morose": "Morose",
|
||||
"nurturing": "Encourageante",
|
||||
"near_feral": "Presque sauvage",
|
||||
"nurturing": "Maternelle",
|
||||
"obsessed": "Obsessionnelle",
|
||||
"obstinate": "Obstinée",
|
||||
"opportunistic": "Opportuniste",
|
||||
"otherworldly": "Mystique",
|
||||
"outgoing": "Agréable",
|
||||
"passionate": "Passionnée",
|
||||
"playful": "Enjouée",
|
||||
"patient": "Patiente",
|
||||
"personable": "Avenante",
|
||||
"playful": "Joueuse",
|
||||
"power_hungry": "Avide de pouvoir",
|
||||
"proud": "Fière",
|
||||
"restrained": "Restreinte",
|
||||
"scheming": "Intrigante",
|
||||
"refined": "Raffinée",
|
||||
"restrained": "Modérée",
|
||||
"reserved": "Réservée",
|
||||
"righteous": "Intègre",
|
||||
"scheming": "Fourbe",
|
||||
"serene": "Sereine",
|
||||
"serious": "Sérieuse",
|
||||
"shrewd": "Astucieuse",
|
||||
"shrewd": "Rusée",
|
||||
"sinister": "Sinistre",
|
||||
"sociable": "Affable",
|
||||
"starved": "Famélique",
|
||||
"stoic": "Stoïque",
|
||||
"stubborn": "Têtue",
|
||||
"suspicious": "Soupçonneuse",
|
||||
"teasing": "Taquine",
|
||||
"suspicious": "Suspicieuse",
|
||||
"teasing": "Moqueuse",
|
||||
"territorial": "Territoriale",
|
||||
"uncertain": "Incertaine",
|
||||
"unenthused": "Peu enthousiaste",
|
||||
"vain": "Vaine",
|
||||
"wary": "Méfiante"
|
||||
"uncertain": "Peu sûre de soi",
|
||||
"unenthused": "Amorphe",
|
||||
"vain": "Orgueilleuse",
|
||||
"vengeful": "Vengeuse",
|
||||
"vindictive": "Vindicative",
|
||||
"wary": "Méfiante",
|
||||
"watchful": "Attentif",
|
||||
"wrathful": "Furieuse",
|
||||
"zealous": "Zélée"
|
||||
},
|
||||
"compendium": {
|
||||
"filter_rank": "Aff. Rangs",
|
||||
@@ -721,7 +795,8 @@
|
||||
"filter": {
|
||||
"rank": "Rang",
|
||||
"rarity": "Rareté",
|
||||
"ring": "Anneau"
|
||||
"ring": "Anneau",
|
||||
"clear": "Suppr. les Filtres"
|
||||
}
|
||||
},
|
||||
"source_reference": {
|
||||
@@ -749,7 +824,176 @@
|
||||
"cresting_waves": "La Crête des Vagues",
|
||||
"deathly_turns": "Détours Mortels",
|
||||
"the_scroll_or_the_blade": "Le Parchemin ou le Sabre",
|
||||
"legacies_of_war": "Les Flambeaux de la Guerre"
|
||||
"legacies_of_war": "Les Flambeaux de la Guerre",
|
||||
"children_of_the_five_winds": "Les Enfants des Cinq Vents"
|
||||
},
|
||||
"tactical_grid": {
|
||||
"settings": {
|
||||
"title": "Plan Tactique",
|
||||
"label": "Paramètres du Plan Tactique",
|
||||
"hint": "Configure les Niveaux de Portée (GM uniquement), ainsi que les différentes couleurs et transparence (tous les utilisateurs).",
|
||||
"cells": "cases",
|
||||
"world": {
|
||||
"enabled": "Activer le Plan Tactique",
|
||||
"enabled_hint": "Active ou désactive le plan tactique pour tout le monde",
|
||||
"start": "Début"
|
||||
},
|
||||
"client": {
|
||||
"color": "Couleur",
|
||||
"alpha": "Alpha"
|
||||
},
|
||||
"range": "Portée {index}",
|
||||
"validate": {
|
||||
"start-too-small": "Doit être supérieur à la Portée {previousRangeIndex} ({previousStart})",
|
||||
"start-too-large": "Doit être inférieur à la Portée {nextRangeIndex} ({nextStart})"
|
||||
},
|
||||
"reset": "Réinitialiser les paramètres par défaut",
|
||||
"submit": "Enregistrer"
|
||||
},
|
||||
"range_band": "Portée {band}",
|
||||
"range_abbreviation": "NP {range}"
|
||||
}
|
||||
},
|
||||
"chiaroscuro": {
|
||||
"skill_ranks": {
|
||||
"0": "—",
|
||||
"initie": "Initié",
|
||||
"expert": "Expert",
|
||||
"maitre": "Maître",
|
||||
"parangon1": "Parangon I",
|
||||
"parangon2": "Parangon II",
|
||||
"parangon3": "Parangon III"
|
||||
},
|
||||
"difficulties": {
|
||||
"simple": "Simple (7)",
|
||||
"moyenne": "Moyenne (10)",
|
||||
"assez_difficile": "Assez difficile (13)",
|
||||
"difficile": "Difficile (16)",
|
||||
"tres_difficile": "Très difficile (22)",
|
||||
"heroique": "Héroïque (28)",
|
||||
"improbable": "Improbable (32)"
|
||||
},
|
||||
"aspects": {
|
||||
"solar": "Aspect Solaire",
|
||||
"lunar": "Aspect Lunaire",
|
||||
"gauge": "Jauge d'Aspect",
|
||||
"desequilibre_solaire": "Déséquilibre Solaire",
|
||||
"desequilibre_lunaire": "Déséquilibre Lunaire"
|
||||
},
|
||||
"danger": {
|
||||
"simple": "Simple",
|
||||
"moyenne": "Moyenne",
|
||||
"assez_difficile": "Assez Difficile",
|
||||
"difficile": "Difficile"
|
||||
},
|
||||
"arcane": {
|
||||
"title": "Arcanes",
|
||||
"label": "Arcane",
|
||||
"arcane_type": "Type",
|
||||
"application": "Compétences",
|
||||
"bonus": "Bonus",
|
||||
"progression": "Progression",
|
||||
"xp_cost": "Coût XP"
|
||||
},
|
||||
"etat": {
|
||||
"title": "États",
|
||||
"label": "État",
|
||||
"application": "Application",
|
||||
"mod": "Modificateur",
|
||||
"effect": "Effet",
|
||||
"elimination": "Condition d'élimination"
|
||||
},
|
||||
"mystere": {
|
||||
"title": "Mystères",
|
||||
"label": "Mystère",
|
||||
"mystere_type": "Type",
|
||||
"mineur": "Mineur",
|
||||
"majeur": "Majeur",
|
||||
"prerequisite_skill": "Compétence prérequis",
|
||||
"prerequisite_condition": "Condition prérequis"
|
||||
},
|
||||
"character": {
|
||||
"is_samurai": "Samouraï",
|
||||
"title": "Titre",
|
||||
"quick_info": "Info rapide",
|
||||
"default_ring": "Anneau par défaut",
|
||||
"region": "Région",
|
||||
"education": "Éducation",
|
||||
"past_problems": "Passé problématique",
|
||||
"koku": "Koku",
|
||||
"bu": "Bu",
|
||||
"zeni": "Zeni"
|
||||
},
|
||||
"weapon": {
|
||||
"bonus": "Bonus",
|
||||
"categories": {
|
||||
"arbalete": "Arbalète",
|
||||
"arc": "Arc",
|
||||
"contondante": "Arme Contondante",
|
||||
"poing": "Arme de Poing",
|
||||
"hast": "Arme Hast",
|
||||
"improvisee": "Arme Improvisée",
|
||||
"shinobi": "Arme Shinobi",
|
||||
"specialisee": "Arme Spécialisée",
|
||||
"bouclier": "Bouclier",
|
||||
"hache": "Hache",
|
||||
"naturel": "Naturel",
|
||||
"sabre": "Sabre",
|
||||
"nemuranai": "Nemuranai"
|
||||
}
|
||||
},
|
||||
"armor": {
|
||||
"categories": {
|
||||
"vetement": "Vêtement",
|
||||
"leger": "Léger",
|
||||
"moyen": "Moyen",
|
||||
"lourd": "Lourd",
|
||||
"nemuranai": "Nemuranai"
|
||||
}
|
||||
},
|
||||
"item": {
|
||||
"types": {
|
||||
"ordinaire": "Ordinaire",
|
||||
"shinobi": "Shinobi",
|
||||
"interdit": "Interdit",
|
||||
"gaijin": "Gaijin",
|
||||
"nemuranai": "Nemuranai"
|
||||
}
|
||||
},
|
||||
"technique": {
|
||||
"mot_invocation": "Mot d'Invocation",
|
||||
"invocation_type": "Type d'invocation",
|
||||
"invocation_types": {
|
||||
"general": "Général",
|
||||
"neutre": "Neutre",
|
||||
"precis": "Précis"
|
||||
},
|
||||
"mode_invocation": "Mode d'Invocation"
|
||||
},
|
||||
"tabs": {
|
||||
"invocations": "Invocations",
|
||||
"identity": "Identité",
|
||||
"identity_text1": "Apparence",
|
||||
"identity_text2": "Biographie"
|
||||
},
|
||||
"dice": {
|
||||
"title": "Jet Chiaroscuro",
|
||||
"difficulty_label": "Difficulté",
|
||||
"modifier_label": "Modificateur",
|
||||
"options": "Options",
|
||||
"aspect_point": "Point d'Aspect",
|
||||
"assistance": "Assistance",
|
||||
"total_dice": "Dés à lancer",
|
||||
"bonus": "Bonus rang",
|
||||
"roll": "Lancer les dés",
|
||||
"dice_result": "Somme des dés",
|
||||
"adjusted": "Ajusté (Parangon)",
|
||||
"raw_dice": "Dés bruts",
|
||||
"adjusted_dice": "Dés ajustés (Parangon)",
|
||||
"bonus_successes": "pts au dessus",
|
||||
"miss_by": "pts en dessous",
|
||||
"success": "Réussite",
|
||||
"failure": "Échec"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,755 +0,0 @@
|
||||
{
|
||||
"I18N": {
|
||||
"Language": "Italiano",
|
||||
"Maintainers": ["eldritchTranslator"]
|
||||
},
|
||||
"SETTINGS": {
|
||||
"None": "Niente",
|
||||
"ReverseTokenBars": {
|
||||
"Title": "Reverse tokens bar",
|
||||
"Hint": "Change the order in which the bars under the tokens are filled in",
|
||||
"None": "None",
|
||||
"Fatigue": "Fatigue only",
|
||||
"Strife": "Strife",
|
||||
"Both": "Both Fatigue and Strife"
|
||||
},
|
||||
"RollNKeep": {
|
||||
"DeleteOldMessage": "Il Tira e Tieni cancella il messaggio in chat precedente",
|
||||
"DeleteOldMessageHint": "Scegli se mantenere o eliminare il messaggio precedente in una serie di Tira e Tieni"
|
||||
},
|
||||
"Initiative": {
|
||||
"SetTn1OnTypeChange": "Fissa la TN a 1 quando si cambia il conflitto",
|
||||
"SetTn1OnTypeChangeHint": "Fissa la TN a 1 quando si seleziona il tipo di conflitto (Intrigo, Duello, Schermaglia or Battaglia campale)"
|
||||
},
|
||||
"CustomTechniques": {
|
||||
"Title": "Usa tecniche custom",
|
||||
"Hint": "Aggiunge il tipo 'Speciale' come termine generale."
|
||||
},
|
||||
"CustomCompendiumName": {
|
||||
"Title": "Custom Compendium Name",
|
||||
"Hint": "For advanced users that want to change the name of the custom compendiums (Used to disables the embedded ones).",
|
||||
"Notification": "Unable set Custom Compendium: '{name}'. Is it activated and registered with Babele?"
|
||||
},
|
||||
"CustomItemsHeight": {
|
||||
"Title": "Default items windows height",
|
||||
"Hint": "Set the default height for 'Items' windows types (techniques, weapons...), in pixels"
|
||||
},
|
||||
"Compendium": {
|
||||
"HideDisabledSources": {
|
||||
"Title": "[Compendium] Hide sources filter without reference",
|
||||
"Hint": "Hide empty source with no elements in source filter."
|
||||
},
|
||||
"HideEmptySourcesFromPlayers": {
|
||||
"Title": "[Compendium] Hide elements with empty reference",
|
||||
"Hint": "Basically require a reference to be set in order for players to view the content in compendiums"
|
||||
},
|
||||
"AllowedOfficialSources": {
|
||||
"Title": "[Compendium] Available official resources",
|
||||
"Hint": "Useful if you as a GM want to limit the available official content to only books you own"
|
||||
},
|
||||
"AllowedUnofficialSources": {
|
||||
"Title": "[Compendium] Available unofficial resources",
|
||||
"Hint": "Useful if you have compendiums with custom items mixed with player facing items."
|
||||
}
|
||||
}
|
||||
},
|
||||
"TYPES": {
|
||||
"Actor": {
|
||||
"character": "Personaggio Giocante",
|
||||
"npc": "Personaggio Non Giocante",
|
||||
"army": "Esercito"
|
||||
},
|
||||
"Item": {
|
||||
"item": "Oggetto",
|
||||
"armor": "Armatura",
|
||||
"weapon": "Arma",
|
||||
"technique": "Tecnica",
|
||||
"property": "Proprietà",
|
||||
"peculiarity": "Peculiarità",
|
||||
"advancement": "Avanzamento",
|
||||
"title": "Titolo",
|
||||
"bond": "Legame",
|
||||
"signature_scroll": "Signature Scroll",
|
||||
"item_pattern": "Item Pattern",
|
||||
"army_fortification": "Fortezza",
|
||||
"army_cohort": "Coorte"
|
||||
},
|
||||
"Journal": {
|
||||
"journal": "Diario"
|
||||
}
|
||||
},
|
||||
"l5r5e": {
|
||||
"global": {
|
||||
"edge_translation_disclaimer": "",
|
||||
"add": "Aggiungi",
|
||||
"edit": "Modifica",
|
||||
"delete_confirm": "Sei sicuro di voler eliminare '{name}' ?",
|
||||
"drop_here": "Trascina qui",
|
||||
"send_to_chat": "Chat",
|
||||
"locked": "Bloccato",
|
||||
"unlocked": "Sbloccato",
|
||||
"random": "Casuale"
|
||||
},
|
||||
"multiselect": {
|
||||
"empty_tag": "<blank>",
|
||||
"placeholder": "Filter Sources",
|
||||
"player_filter_label": "Player filter",
|
||||
"player_filter_tooltip": "Apply player filter",
|
||||
"already_in_filter": "Already in filter",
|
||||
"sources_categories": {
|
||||
"rules": "Rules",
|
||||
"adventures": "Adventures",
|
||||
"supplements": "Supplements",
|
||||
"others": "Others"
|
||||
}
|
||||
},
|
||||
"settings": {
|
||||
"wiki": {
|
||||
"custom-compendiums": {
|
||||
"title": "Compendiums",
|
||||
"link": "https://gitlab.com/teaml5r/l5r5e/-/wikis/users/custom-compendiums.md"
|
||||
},
|
||||
"title": "Wiki",
|
||||
"link": "https://gitlab.com/teaml5r/l5r5e/-/wikis/home"
|
||||
}
|
||||
},
|
||||
"logo": {
|
||||
"title": "Bisogno di aiuto?",
|
||||
"src": "systems/l5r5e/assets/l5r-logo.webp",
|
||||
"alt": "Aiuto online",
|
||||
"content": "Segui la guida:",
|
||||
"edge": {
|
||||
"title": "Va' al sito di Edge-Studio",
|
||||
"info": "Il tuo browser aprirà il sito di EDGE STUDIO (EN)",
|
||||
"link": "https://edge-studio.net/"
|
||||
},
|
||||
"drivethrurpg": {
|
||||
"title": "Compra un PDF del gioco...",
|
||||
"info": "Il tuo browser aprirà il sito DriveThruRpg di Edge Studio (EN)",
|
||||
"link": "https://www.drivethrurpg.com/browse/pub/17946/EDGE-Studio"
|
||||
},
|
||||
"discord": {
|
||||
"title": "Discord Ufficiale di FoundryVTT",
|
||||
"info": "Il tuo browser aprirà il Discord ufficiale di Foundry",
|
||||
"link": "https://discordapp.com/invite/DDBZUDf"
|
||||
}
|
||||
},
|
||||
"rings": {
|
||||
"title": "Anelli",
|
||||
"label": "Anello",
|
||||
"earth": "Terra",
|
||||
"air": "Aria",
|
||||
"water": "Acqua",
|
||||
"fire": "Fuoco",
|
||||
"void": "Vuoto"
|
||||
},
|
||||
"sheets": {
|
||||
"narrative": "Narrativa",
|
||||
"experience": "Esperienza",
|
||||
"family": "Famiglia",
|
||||
"region": "Regione",
|
||||
"upbringing": "Educazione",
|
||||
"school": "Scuola",
|
||||
"description": "Descrizione",
|
||||
"bought_at_rank": "Comprato a grado",
|
||||
"types": "Tipi",
|
||||
"source_reference": {
|
||||
"reference": "Fonte",
|
||||
"page_abbreviation": "p."
|
||||
},
|
||||
"value": "Valore",
|
||||
"rarity": "Rarità",
|
||||
"quantity": "Quantità",
|
||||
"weight": "Peso",
|
||||
"properties": "Proprietà",
|
||||
"linked_property": "Proprietà collegata",
|
||||
"removed_properties": "Annulla",
|
||||
"notes": "Note",
|
||||
"inventory": "Inventario",
|
||||
"equipment": "Equipaggiamento",
|
||||
"rank": "Grado",
|
||||
"name": "Nome"
|
||||
},
|
||||
"dice": {
|
||||
"chat": {
|
||||
"successes": "Successi",
|
||||
"explosives": "Esplosioni",
|
||||
"opportunities": "Opportunità",
|
||||
"strife": "Turbamento",
|
||||
"difficulty": "TN",
|
||||
"difficulty_hidden": "???",
|
||||
"void_point_used": "Punto Vuoto usato",
|
||||
"assistance_used": "Aiuto per Abilità usato",
|
||||
"roll_n_keep": "Tira e Tieni",
|
||||
"initiative_roll": "Tiro Iniziativa",
|
||||
"success_text": "Successo!",
|
||||
"bonus_text": "successi bonus",
|
||||
"fail_text": "Fallimento!",
|
||||
"unknown_target": "Unknown target"
|
||||
},
|
||||
"dicepicker": {
|
||||
"title": "Selezione dadi",
|
||||
"difficulty_title": "Difficoltà",
|
||||
"difficulty_hidden_label": "Nascondi TN",
|
||||
"use_void_point_label": "Spendi un",
|
||||
"void_point_tooltip": "Punto Vuoto",
|
||||
"skill_assistance_label": "Aiuto",
|
||||
"roll_label": "Tira",
|
||||
"bt_add_macro": "Aggiungi una macro",
|
||||
"gm_request_dp_to_players": "Roll request sent to players"
|
||||
},
|
||||
"roll_n_keep": {
|
||||
"title": "Tira e Tieni",
|
||||
"discard_drop_here": "Lascia",
|
||||
"reroll_drop_here": "Rilancia",
|
||||
"swap_drop_here": "Scambia",
|
||||
"keep_drop_here": "Tieni",
|
||||
"max": "Max",
|
||||
"bt_validate": "Conferma",
|
||||
"bt_strife": "Aggiungi Turbamento",
|
||||
"undo": "[GM] Annulla l'ultima scelta"
|
||||
}
|
||||
},
|
||||
"gm": {
|
||||
"toolbox": {
|
||||
"title": "Attrezzi del GM",
|
||||
"difficulty_hidden": "Cambia la visibilità della TN",
|
||||
"difficulty": "Cambia difficoltà (click Sinistro: aggiungi, Destro: togli, centro: TN 2)",
|
||||
"sleep": "Riposo tranquillo per tutti i personaggi (rimuove Stanchezza pari a Acqua x2. Click Sinistro: solo personaggi selezionati. Destro: tutti gli attori)",
|
||||
"sleep_info": "I personaggi hanno avuto una notte di riposo tranquillo.",
|
||||
"scene_end": "Fine della scena (Stanchezza e Turbamento si resettano a metà per tutti i personaggi. Click Sinistro: solo personaggi selezionati. Destro: tutti gli attori)",
|
||||
"scene_end_info": "La tensione della scena finalmente cala.",
|
||||
"reset_void": "Inizio del gioco: Resetta i punti Vuoto dei personaggi (Click Sinistro: solo personaggi selezionati. Destro: tutti gli attori)",
|
||||
"reset_void_info": "I punti Vuoto sono stati distribuiti."
|
||||
},
|
||||
"monitor": {
|
||||
"title": "Schermo del GM",
|
||||
"switch_view": "Cambia vista",
|
||||
"add_selected_tokens": "Add selected tokens",
|
||||
"honor_glory_status": "O/G/S",
|
||||
"focus_vigilance": "Foc./Vig.",
|
||||
"mouse_control": "Click Sinistro +1, Destro: -1, centrale: resetta a 0"
|
||||
}
|
||||
},
|
||||
"weapons": {
|
||||
"title": "Armi",
|
||||
"damage": "Danni",
|
||||
"range": "Raggio",
|
||||
"stats": "Statistiche",
|
||||
"sheathed": "Equipaggiata / Infoderata",
|
||||
"readied": "Pronta",
|
||||
"category": "Categoria",
|
||||
"deadliness": "Letalità",
|
||||
"grips": "Impugnatura",
|
||||
"1hand": "1 mano",
|
||||
"2hand": "2 mani"
|
||||
},
|
||||
"armors": {
|
||||
"title": "Armature",
|
||||
"type": "Resistenza",
|
||||
"physical": "fisica",
|
||||
"supernatural": "sovrannaturale",
|
||||
"equipped": "Equipaggiata"
|
||||
},
|
||||
"items": {
|
||||
"title": "Oggetti"
|
||||
},
|
||||
"techniques": {
|
||||
"title": "Tecniche",
|
||||
"not_allowed": "Il tuo personaggio non può usare questo tipo di tecnica.",
|
||||
"only_one": "Il tuo personaggio può avere solo una di questo tipo di tecniche.",
|
||||
"type": "Tecniche permesse",
|
||||
"kata": "Kata",
|
||||
"kiho": "Kihō",
|
||||
"inversion": "Inversione",
|
||||
"invocation": "Invocazione",
|
||||
"ritual": "Rituale",
|
||||
"shuji": "Shuji",
|
||||
"maho": "Mahō",
|
||||
"ninjutsu": "Ninjutsu",
|
||||
"mantra": "Mantra",
|
||||
"school_ability": "Abilità di scuola",
|
||||
"mastery_ability": "Abilità di maestria",
|
||||
"title_ability": "Abilità di titolo",
|
||||
"specificity": "Specificità"
|
||||
},
|
||||
"peculiarities": {
|
||||
"types": {
|
||||
"distinction": "Distinzioni",
|
||||
"passion": "Passioni",
|
||||
"adversity": "Avversità",
|
||||
"anxiety": "Ansietà"
|
||||
}
|
||||
},
|
||||
"money": {
|
||||
"title": "Soldi",
|
||||
"koku": "Koku",
|
||||
"bu": "Bu",
|
||||
"zeni": "Zeni"
|
||||
},
|
||||
"social": {
|
||||
"title": "Status sociale",
|
||||
"honor": "Onore",
|
||||
"glory": "Gloria",
|
||||
"status": "Status",
|
||||
"ninjo": "Ninjo",
|
||||
"giri": "Giri",
|
||||
"past": "Passato",
|
||||
"bushido_tenets": {
|
||||
"title": "Codice del Bushido",
|
||||
"paramount": "Vitale",
|
||||
"less_significant": "Meno importante"
|
||||
},
|
||||
"titles": "Titoli",
|
||||
"attitude": "Archetipo:",
|
||||
"advantages": "Distinzioni e Passioni",
|
||||
"disadvantages": "Avversità e Ansietà",
|
||||
"bonds": "Legami",
|
||||
"npc": {
|
||||
"advantages": "Vantaggi",
|
||||
"disadvantages": "Svantaggi",
|
||||
"combat": "Combattimento",
|
||||
"intrigue": "Intrigo"
|
||||
},
|
||||
"age": "Età",
|
||||
"children": "Bambini",
|
||||
"marital_status": {
|
||||
"title": "Stato coniugale",
|
||||
"partner": "Partner",
|
||||
"married": "Sposato",
|
||||
"betrothed": "Promesso",
|
||||
"unmarried": "Non sposato",
|
||||
"widowed": "Vedovo"
|
||||
},
|
||||
"gender": {
|
||||
"title": "Genere",
|
||||
"male": "Maschile",
|
||||
"female": "Femminile"
|
||||
}
|
||||
},
|
||||
"skills": {
|
||||
"title": "Abilità",
|
||||
"label": "Abilità",
|
||||
"artisan": {
|
||||
"title": "Artigiane",
|
||||
"aesthetics": "Estetica",
|
||||
"composition": "Composizione",
|
||||
"design": "Moda",
|
||||
"smithing": "Forgia",
|
||||
"air": "Affinare",
|
||||
"earth": "Ripristinare",
|
||||
"fire": "Inventare",
|
||||
"water": "Adattare",
|
||||
"void": "Armonizzare"
|
||||
},
|
||||
"martial": {
|
||||
"title": "Marziali",
|
||||
"fitness": "Allenamento",
|
||||
"melee": "Arti Marziali [Mischia]",
|
||||
"ranged": "Arti Marziali [Distanza]",
|
||||
"unarmed": "Arti Marziali [Senza Armi]",
|
||||
"meditation": "Meditazione",
|
||||
"tactics": "Tattica",
|
||||
"air": "Fintare",
|
||||
"earth": "Contrastare",
|
||||
"fire": "Sopraffare",
|
||||
"water": "Deviare",
|
||||
"void": "Sacrificare"
|
||||
},
|
||||
"scholar": {
|
||||
"title": "Intellettuali",
|
||||
"culture": "Cultura",
|
||||
"government": "Governo",
|
||||
"medicine": "Medicina",
|
||||
"sentiment": "Sensibilità",
|
||||
"theology": "Teologia",
|
||||
"air": "Analizzare",
|
||||
"earth": "Ricordare",
|
||||
"fire": "Teorizzare",
|
||||
"water": "Esaminare",
|
||||
"void": "Presentire"
|
||||
},
|
||||
"social": {
|
||||
"title": "Sociali",
|
||||
"command": "Comando",
|
||||
"courtesy": "Cortesia",
|
||||
"games": "Giochi",
|
||||
"performance": "Esibizione",
|
||||
"air": "Ingannare",
|
||||
"earth": "Ragionare",
|
||||
"fire": "Incitare",
|
||||
"water": "Affascinare",
|
||||
"void": "Illuminare"
|
||||
},
|
||||
"trade": {
|
||||
"title": "Mestieriali",
|
||||
"commerce": "Commercio",
|
||||
"labor": "Lavori Pesanti",
|
||||
"seafaring": "Navigazione",
|
||||
"skulduggery": "Criminalità",
|
||||
"survival": "Sopravvivenza",
|
||||
"air": "Raggirare",
|
||||
"earth": "Produrre",
|
||||
"fire": "Innovare",
|
||||
"water": "Scambiare",
|
||||
"void": "Sussistere"
|
||||
}
|
||||
},
|
||||
"attributes": {
|
||||
"title": "Attributi",
|
||||
"endurance": "Tenacia",
|
||||
"endurancetip": "(Terra + Fuoco) x2",
|
||||
"composure": "Compostezza",
|
||||
"composuretip": "(Terra + Acqua) x2",
|
||||
"focus": "Conc.",
|
||||
"focustip": "Aria + Fuoco",
|
||||
"vigilance": "Vigil.",
|
||||
"vigilancetip": "(Aria + Acqua) /2",
|
||||
"voidpoints": "Punti Vuoto",
|
||||
"fatigue": "Stanchezza",
|
||||
"strife": "Turbamento"
|
||||
},
|
||||
"conflict": {
|
||||
"title": "Conflitto",
|
||||
"stance": "Forma",
|
||||
"stances": {
|
||||
"airtip": "+1 al TN di prove di Attacco o Complotto che bersagliano il personaggio (+2 a grado 4+).",
|
||||
"earthtip": "Altri individui non possono spendere Opportunità per infliggere colpi critici o condizioni sul personaggio.",
|
||||
"firetip": "Se il personaggio ha successo, +1 successo bonus per ogni risultato Turbamento.",
|
||||
"watertip": "Il personaggio effettua nel turno una seconda azione che non richieda prove o condivida il tipo con la prima azione.",
|
||||
"voidtip": "Il personaggio non riceve turbamento dai simboli Turbamento nelle prove."
|
||||
},
|
||||
"initiative": {
|
||||
"title": "Iniziativa",
|
||||
"intrigue": "Intrigo",
|
||||
"duel": "Duello",
|
||||
"skirmish": "Schermaglia",
|
||||
"mass_battle": "Battaglia Campale",
|
||||
"prepared_true": "Preparato",
|
||||
"prepared_false": "Sorpreso",
|
||||
"prepared_actor": "Definito nella scheda del personaggio (default)",
|
||||
"already_set": "La tua Iniziativa è già stata determinata."
|
||||
}
|
||||
},
|
||||
"advancements": {
|
||||
"title": "Avanzamento",
|
||||
"school_rank": "Grado della Scuola",
|
||||
"school_rank_0": "Grado 0",
|
||||
"total": "Totale",
|
||||
"cost": "Costo",
|
||||
"spent": "Usati",
|
||||
"saved": "Tenuti",
|
||||
"total_xp_spent": "Exp spesi",
|
||||
"total_xp_curriculum": "Exp spesi nel curriculum",
|
||||
"curriculum": "In curriculum",
|
||||
"curriculum_validate": "Completa questo grado",
|
||||
"rarity_modifier": "Modificatore rarità",
|
||||
"item_pattern": "Item Patterns",
|
||||
"signature_scroll": "Signature Scrolls",
|
||||
"school_curriculum_journal": "Trascina il diario del curriculum sulla scheda per collegarlo"
|
||||
},
|
||||
"character_types": {
|
||||
"character": "Personaggio giocante",
|
||||
"adversary": "Avversario",
|
||||
"minion": "Gregario"
|
||||
},
|
||||
"army": {
|
||||
"warlord": "Signore della guerra",
|
||||
"allies_backers": "Alleati e finanziatori",
|
||||
"purpose_mustering": "Scopo di adunata",
|
||||
"battle_readiness": {
|
||||
"title": "Preparazione alla battaglia",
|
||||
"strength": "Forza",
|
||||
"casualties": "Vittime",
|
||||
"discipline": "Disciplina",
|
||||
"panic": "Panico"
|
||||
},
|
||||
"commander": "Comandante",
|
||||
"commander_abilities": "Capacità rilevanti del comandante",
|
||||
"army_abilities": "Capacità delle Armate",
|
||||
"commander_standing": "Posizione del comandante",
|
||||
"supplies_logistics": "Rifornimenti e logistica",
|
||||
"past_battles": "Battaglie passate",
|
||||
"cohort": {
|
||||
"tab": "Drappelli",
|
||||
"title": "Drappello",
|
||||
"leader": "Condottiero",
|
||||
"abilities": "Capacità"
|
||||
},
|
||||
"fortification": {
|
||||
"tab": "Fortificazioni",
|
||||
"title": "Fortificazioni possedute",
|
||||
"difficulty": "Difficoltà",
|
||||
"attrition_reduction": "Riduzione dell'attrito"
|
||||
}
|
||||
},
|
||||
"twenty_questions": {
|
||||
"title": "Venti domande",
|
||||
"bt_abrev": "20D",
|
||||
"bt_next": "Prossimo",
|
||||
"increase_ring1": "Incremento di anello (1)",
|
||||
"increase_ring2": "Incremento di anello (2)",
|
||||
"increase_skill1": "Incremento di abilità (1)",
|
||||
"increase_skill2": "Incremento di abilità (2)",
|
||||
"increase_skill3": "Incremento di abilità (3-5)",
|
||||
"choose_one_ring": "Scegli uno",
|
||||
"choose_one_skill": "Scegli uno",
|
||||
"or": "O",
|
||||
"and": "E",
|
||||
"error": "Oops, sembra ci sia un errore:",
|
||||
"part0": {
|
||||
"intro": "Puoi usare questa scheda per rispondere alle domande del Gioco delle Venti Domande, e per prendere appunti per dopo!",
|
||||
"section": "La Leggenda dei Cinque Anelli, Manuale Base, Capitolo 2: Creare un Personaggio, pp. 41-95",
|
||||
"section_pow": "La Leggenda dei Cinque Anelli Sentiero delle Onde, Capitolo 2: Creare un Personaggio, pp. 30–82",
|
||||
"type": "Seleziona il template delle 20D che vuoi usare",
|
||||
"type_core": "Samurai (Manuale Base)",
|
||||
"type_pow": "Ronin (Sentiero delle Onde)"
|
||||
},
|
||||
"part1": {
|
||||
"title": "Parte I: Identità Generale (Clan e Famiglia)",
|
||||
"title_pow": "Parte I: Identità Generale (Regione e Educazione)",
|
||||
"q1": "1. A quale clan appartiene il personaggio? (p. 41)",
|
||||
"q1_pow": "1. Da quale regione arriva il tuo personaggio? (p. 31)",
|
||||
"status": "Status",
|
||||
"q2": "2. A quale famiglia appartiene il personaggio? (p. 49)",
|
||||
"q2_pow": "2. Qual è stata l'educazione del tuo personaggio? (p. 43)",
|
||||
"money": "Denao iniziale in Koku",
|
||||
"glory": "Gloria"
|
||||
},
|
||||
"part2": {
|
||||
"title": "Parte II: Ruolo e Scuola",
|
||||
"q3": "3. Qual è la scuola del personaggio e in quali ruoli ricade quella scuola? (p. 56)",
|
||||
"q3_pow": "3. Qual è la scuola del personaggio e in quali ruoli ricade quella scuola? (p. 46)",
|
||||
"school": "Scuola",
|
||||
"role": "Ruolo",
|
||||
"honor": "Onore",
|
||||
"access": "Tecniche Disponibili",
|
||||
"school_ability": "Abilità di Scuola",
|
||||
"starting_techniques": "Tecniche di Partenza (2-6)",
|
||||
"outfit": "Dotazione di Partenza",
|
||||
"q4": "4. Come si distingue il personaggio all’interno della sua scuola? (p. 88)",
|
||||
"q4_pow": "4. Che cosa mette nei guai il personaggio, e che cosa lo tira fuori dai guai? (p. 60)"
|
||||
},
|
||||
"part3": {
|
||||
"title": "Parte III: Onore e Gloria",
|
||||
"title_pow": "Parte III: Il Passato, il Futuro, e come interagiscono",
|
||||
"q5": "5. Chi è il suo signore e quali doveri ha il personaggio nei suoi confronti? (p. 88)",
|
||||
"q5_pow": "5. Qual è il passato del tuo personaggio, e come lo ha segnato? (p. 60)",
|
||||
"choose_giri": "Scegli il giri",
|
||||
"choose_past": "Scegli il passato",
|
||||
"q6": "6. Cosa desidera ardentemente il personaggio e come ciò potrebbe ostacolare il suo dovere? (p. 90)",
|
||||
"q6_pow": "6. Cosa desidera ardentemente il personaggio, e il suo passato come potrebbe ostacolare il suo ninjō? (p. 62)",
|
||||
"choose_ninjo": "Scegli ninjō",
|
||||
"q7": "7. Qual è il rapporto del personaggio con il suo clan? (p. 91)",
|
||||
"q7_pow": "7. Per cosa è conosciuto il tuo personaggio? (p. 61)",
|
||||
"increase_glory": "Aumento di Gloria",
|
||||
"q8": "8. Cosa pensa il personaggio del Bushidō? (p. 91)",
|
||||
"q8_pow": "8. Cosa pensa il personaggio del Bushidō? (p. 62)",
|
||||
"increase_honor": "Aumento di Onore",
|
||||
"tenets": "Scegli un principio del Bushidō come il più importante e uno come meno importante (vedi Come i clan vedono il Bushidō, p. 301 del Manuale Base):",
|
||||
"object": "Oggetto (Rarità 5 o minore)"
|
||||
},
|
||||
"part4": {
|
||||
"title": "Parte IV: Punti di Forza e Punti Deboli",
|
||||
"q9": "9. Qual è il traguardo più grande raggiunto dal personaggio finora? (p. 92)",
|
||||
"q9_pow": "9. Qual è il traguardo più grande raggiunto dal personaggio finora? (p. 64)",
|
||||
"distinction": "Distinzione (1)",
|
||||
"q10": "10. Cosa è di maggiore ostacolo al personaggio nella vita? (p. 92)",
|
||||
"q10_pow": "Cosa è di maggiore ostacolo al personaggio nella vita? (p. 64)",
|
||||
"adversity": "Avversità (1)",
|
||||
"q11": "11. Quale attività fa sentire in pace il personaggio? (p. 93)",
|
||||
"q11_pow": "11. Quale attività fa sentire in pace il personaggio? (p. 65)",
|
||||
"passion": "Passione (1)",
|
||||
"q12": "12. Quale dubbio, paura o debolezza preoccupa di più il personaggio? (p. 93)",
|
||||
"q12_pow": "12. Quale dubbio, paura o debolezza preoccupa di più il personaggio? (p. 65)",
|
||||
"anxiety": "Ansietà (1)",
|
||||
"q13": "13. Da chi ha imparato maggiormente il personaggio nel corso della sua vita? (p. 93)",
|
||||
"q13_pow": "13. Da chi ha imparato maggiormente il personaggio nel corso della sua vita? (p. 65)",
|
||||
"disadvantage": "Svantaggio (1)",
|
||||
"advantage": "Vantaggio (1)"
|
||||
},
|
||||
"part5": {
|
||||
"title": "Parte V: Personalità e Comportamento",
|
||||
"q14": "14. Che cosa notano prima le persone che incontrano il personaggio? (p. 93)",
|
||||
"q14_pow": "14. Qual è l'oggetto più importante per il personaggio? (p. 66)",
|
||||
"accoutrement": "Tocco personale",
|
||||
"q15": "15. Come reagisce il personaggio alle situazioni stressanti? (p. 94)",
|
||||
"q15_pow": "15. Come reagisce il personaggio alle situazioni stressanti? (p. 66)",
|
||||
"q16": "16. Quali sono le precedenti relazioni del personaggio con gli altri clan, famiglie, organizzazioni e tradizioni? (p. 94)",
|
||||
"q16_pow": "16. Che relazioni hai con la tua famiglia, i clan, i popolani, e gli altri? (p. 66)",
|
||||
"object": "Oggetto (Rarità 7 o minore)"
|
||||
},
|
||||
"part6": {
|
||||
"title": "Parte VI: Antenati e Famiglia",
|
||||
"title_pow": "Parte VI: Antenati e Legami",
|
||||
"q17": "17. Come descriverebbero il personaggio i suoi genitori? (p. 95)",
|
||||
"q17_pow": "17. Che genere di storia condividi con il tuo gruppo? (p. 66)",
|
||||
"bond": "Determina un legame appropriato per la vostra relazione",
|
||||
"q18": "18. Chi si intende onorare tramite il nome che è stato scelto per il personaggio? (p. 95)",
|
||||
"q18_pow": "18. Chi ti ha allevato? (p. 67)",
|
||||
"d10r1": "Risultato d10 (1/2)",
|
||||
"d10r1_choice": "Primo effetto del d10",
|
||||
"d10r2": "Risultato d10 (2/2)",
|
||||
"d10r2_choice": "Secondo effetto del d10",
|
||||
"d10r2_drop_items": "O una tecnica, un vantaggio, un oggetto...",
|
||||
"q19": "19. Qual è il nome proprio del personaggio? (p. 95)",
|
||||
"q19_pow": "19. Qual è il nome del personaggio? (p. 68)"
|
||||
},
|
||||
"part7": {
|
||||
"title": "Parte VII: Morte",
|
||||
"q20": "20. Come dovrebbe morire il personaggio? (p. 95)",
|
||||
"q20_pow": "20. Come dovrebbe morire il personaggio? (p. 68)",
|
||||
"summary": "Sintesi",
|
||||
"generchar": "Generare il personaggio",
|
||||
"generchar_disclaimer": "Attenzione, questo sovrascriverà tutti i dati del personaggio!",
|
||||
"generchar_errors": "Correggi gli errori prima di continuare!"
|
||||
}
|
||||
},
|
||||
"char_generator": {
|
||||
"title": "Generatore del personaggio",
|
||||
"head_bt_title": "Gen. Personaggio",
|
||||
"generate": "Crea",
|
||||
"average_value": "Valore medio",
|
||||
"identity": "Clan, genere, età, stato civile",
|
||||
"attributes": "Status sociale, Anelli, Attributi e Abilità",
|
||||
"demeanor": "Atteggiamento & Affinità di anelli",
|
||||
"peculiarities": "Vantaggi e Svantaggi",
|
||||
"items": "Armature, Armi, e Oggetti",
|
||||
"narrative": "Narrativa (Descrizione)"
|
||||
},
|
||||
"roles": {
|
||||
"title": "Ruolo",
|
||||
"artisan": "Artigiano",
|
||||
"bushi": "Bushi",
|
||||
"courtier": "Cortigiano",
|
||||
"monk": "Monaco",
|
||||
"sage": "Saggio",
|
||||
"shinobi": "Shinobi",
|
||||
"shugenja": "Shugenja"
|
||||
},
|
||||
"clans": {
|
||||
"title": "I Clan",
|
||||
"label": "Clan",
|
||||
"imperial": "Imperiale",
|
||||
"crab": "Granchio",
|
||||
"crane": "Gru",
|
||||
"dragon": "Drago",
|
||||
"lion": "Leone",
|
||||
"phoenix": "Fenice",
|
||||
"scorpion": "Scorpione",
|
||||
"unicorn": "Unicorno",
|
||||
"mantis": "Mantide",
|
||||
"ronin": "Ronin",
|
||||
"badger": "Tasso",
|
||||
"bat": "Pipistrello",
|
||||
"boar": "Cinghiale",
|
||||
"dragonfly": "Libellula",
|
||||
"firefly": "Lucciola",
|
||||
"hare": "Lepre",
|
||||
"monkey": "Scimmia",
|
||||
"oriole": "Oriolo",
|
||||
"ox": "Bue",
|
||||
"sparrow": "Passero",
|
||||
"tortoise": "Tartaruga",
|
||||
"ivory_kingdoms": "Regni d'Avorio",
|
||||
"qamarist": "Qamarista",
|
||||
"ujik": "Ujik"
|
||||
},
|
||||
"demeanor": {
|
||||
"adaptable": "Flessibile",
|
||||
"aggressive": "Aggressivo",
|
||||
"ambitious": "Ambizioso",
|
||||
"amiable": "Affabile",
|
||||
"analytical": "Analitico",
|
||||
"angry": "Iracondo",
|
||||
"arrogant": "Arrogante",
|
||||
"assertive": "Risoluto",
|
||||
"beguiling": "Ammaliante",
|
||||
"bitter": "Amaro",
|
||||
"bold": "Ardito",
|
||||
"calculating": "Calcolatore",
|
||||
"calm": "Calmo",
|
||||
"capricious": "Capriccioso",
|
||||
"cautious": "Cauto",
|
||||
"clever": "Furbo",
|
||||
"confused": "Confuso",
|
||||
"courageous": "Coraggioso",
|
||||
"cowardly": "Codardo",
|
||||
"curious": "Curioso",
|
||||
"dependable": "Affidabile",
|
||||
"detached": "Distaccato",
|
||||
"disheartened": "Sconfortato",
|
||||
"enraged": "Infuriato",
|
||||
"feral": "Selvaggio",
|
||||
"fickle": "Volubile",
|
||||
"fierce": "Agguerrito",
|
||||
"flighty": "Volubile",
|
||||
"flippant": "Irriverente",
|
||||
"friendly": "Amichevole",
|
||||
"gruff": "Burbero",
|
||||
"hungry": "Affamato",
|
||||
"intense": "Intenso",
|
||||
"intimidating": "Intimidatorio",
|
||||
"irritable": "Irritabile",
|
||||
"loyal": "Leale",
|
||||
"mischievous": "Malandrino",
|
||||
"morose": "Cupo",
|
||||
"nurturing": "Materno",
|
||||
"obstinate": "Ostinato",
|
||||
"opportunistic": "Opportunista",
|
||||
"passionate": "Appassionato",
|
||||
"playful": "Giocoso",
|
||||
"power_hungry": "Affamato di potere",
|
||||
"proud": "Orgoglioso",
|
||||
"restrained": "Contenuto",
|
||||
"scheming": "Cospiratore",
|
||||
"serene": "Sereno",
|
||||
"serious": "Serio",
|
||||
"shrewd": "Scaltro",
|
||||
"stubborn": "Testardo",
|
||||
"suspicious": "Sospettoso",
|
||||
"teasing": "Stuzzicante",
|
||||
"territorial": "Territoriale",
|
||||
"uncertain": "Incerto",
|
||||
"unenthused": "Non entusiasta",
|
||||
"vain": "Vanesio",
|
||||
"wary": "Diffidente"
|
||||
},
|
||||
"compendium": {
|
||||
"filter_rank": "Show Rank",
|
||||
"not_for_players": "Not shown to players",
|
||||
"filter": {
|
||||
"rank": "Rank",
|
||||
"rarity": "Rarity",
|
||||
"ring": "Ring"
|
||||
}
|
||||
},
|
||||
"source_reference": {
|
||||
"core_rulebook": "Core Rulebook",
|
||||
"emerald_empire": "Emerald Empire",
|
||||
"shadowlands": "Shadowlands",
|
||||
"court_of_stones": "Court of Stones",
|
||||
"path_of_waves": "Path of Waves",
|
||||
"celestial_realms": "Celestial Realms",
|
||||
"fields_of_victory": "Fields of Victory",
|
||||
"writ_of_the_wild": "Writ of the Wild",
|
||||
"gm_kit": "Game Master's Kit",
|
||||
"beginner_game": "Beginner Game",
|
||||
"the_mantis_clan": "The Mantis Clan",
|
||||
"mask_of_the_oni": "Mask of the Oni",
|
||||
"winters_embrace": "Winter's Embrace",
|
||||
"sins_of_regret": "Sins of Regret",
|
||||
"wheel_of_judgment": "Wheel of Judgment",
|
||||
"blood_of_the_lioness": "Blood of the Lioness",
|
||||
"imperfect_land": "Imperfect Land",
|
||||
"in_the_palace_of_the_emerald_champion": "In the Palace of the Emerald Champion",
|
||||
"the_highwayman": "The Highwayman",
|
||||
"wedding_at_kyotei_castle": "Wedding at Kyotei Castle",
|
||||
"the_knotted_tails": "The Knotted Tails",
|
||||
"cresting_waves": "Cresting Waves",
|
||||
"deathly_turns": "Deathly Turns",
|
||||
"the_scroll_or_the_blade": "The Scroll or the Blade",
|
||||
"legacies_of_war": "Legacies of War"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1,19 +0,0 @@
|
||||
{"_id":"L5RCoreArm000001","name":"Ashigaru Armor","permission":{"default":0},"type":"armor","data":{"equipped":false,"quantity":1,"weight":"1","rarity":"3","zeni":"5 koku","properties":[{"id":"L5RCorePro000011","name":"Wargear"}],"armor":{"physical":"3","supernatural":""},"description":"","source_reference":{"source":"core_rulebook","page":"239"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/armor.svg","effects":[]}
|
||||
{"_id":"L5RCoreArm000002","name":"Plated Armor","permission":{"default":0},"type":"armor","data":{"equipped":false,"quantity":1,"weight":"2","rarity":"8","zeni":"40 koku","properties":[{"id":"L5RCorePro000006","name":"Cumbersome"},{"id":"L5RCorePro000015","name":"Durable"},{"id":"L5RCorePro000011","name":"Wargear"}],"armor":{"physical":"5","supernatural":""},"description":"","source_reference":{"source":"core_rulebook","page":"239"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/armor.svg","effects":[]}
|
||||
{"_id":"L5RCoreArm000003","name":"Concealed Armor","permission":{"default":0},"type":"armor","data":{"equipped":false,"quantity":1,"weight":"1","rarity":"4","zeni":"5 koku","properties":[{"id":"L5RCorePro000005","name":"Concealable"}],"armor":{"physical":"2","supernatural":""},"description":"","source_reference":{"source":"core_rulebook","page":"239"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/armor.svg","effects":[]}
|
||||
{"_id":"L5RCoreArm000004","name":"Lacquered Armor","permission":{"default":0},"type":"armor","data":{"equipped":false,"quantity":1,"weight":"2","rarity":"6","zeni":"25 koku","properties":[{"id":"L5RCorePro000002","name":"Ceremonial"},{"id":"L5RCorePro000006","name":"Cumbersome"},{"id":"L5RCorePro000011","name":"Wargear"}],"armor":{"physical":"4","supernatural":""},"description":"","source_reference":{"source":"core_rulebook","page":"239"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/armor.svg","effects":[]}
|
||||
{"_id":"L5RCoreArm000005","name":"Ceremonial Clothes","permission":{"default":0},"type":"armor","data":{"equipped":false,"quantity":1,"weight":"1","rarity":"4","zeni":"1 koku","properties":[{"id":"L5RCorePro000002","name":"Ceremonial"},{"id":"L5RCorePro000010","name":"Resplendent"}],"armor":{"physical":"1","supernatural":""},"description":"","source_reference":{"source":"core_rulebook","page":"239"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/keikogi.svg","effects":[]}
|
||||
{"_id":"L5RCoreArm000006","name":"Traveling Clothes","permission":{"default":0},"type":"armor","data":{"equipped":false,"quantity":1,"weight":"1","rarity":"2","zeni":"2 bu","properties":[{"id":"L5RCorePro000015","name":"Durable"},{"id":"L5RCorePro000012","name":"Mundane"},{"id":"L5RCorePro000016","name":"Subtle"}],"armor":{"physical":"2","supernatural":""},"description":"","source_reference":{"source":"core_rulebook","page":"239"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/keikogi.svg","effects":[]}
|
||||
{"_id":"L5RCoreArm000007","name":"Sanctified Robes","permission":{"default":0},"type":"armor","data":{"equipped":false,"quantity":1,"weight":"1","rarity":"7","zeni":"4 koku","properties":[{"id":"L5RCorePro000002","name":"Ceremonial"}],"armor":{"physical":"1","supernatural":"3"},"description":"","source_reference":{"source":"core_rulebook","page":"239"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/keikogi.svg","effects":[]}
|
||||
{"_id":"L5RCoreArm000008","name":"Sleeping Garb","permission":{"default":0},"type":"armor","data":{"equipped":false,"quantity":1,"weight":"1","rarity":"2","zeni":"1 koku","properties":[],"armor":{"physical":"","supernatural":""},"description":"","source_reference":{"source":"core_rulebook","page":"239"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/keikogi.svg","effects":[]}
|
||||
{"_id":"L5RCoreArm000009","name":"Common Clothes","permission":{"default":0},"type":"armor","data":{"equipped":false,"quantity":1,"weight":"1","rarity":"1","zeni":"1 bu","properties":[{"id":"L5RCorePro000012","name":"Mundane"}],"armor":{"physical":"1","supernatural":""},"description":"","source_reference":{"source":"core_rulebook","page":"239"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/keikogi.svg","effects":[]}
|
||||
{"_id":"L5RCoreArm000010","name":"Inconspicuous garb","permission":{"default":0},"type":"armor","data":{"equipped":false,"quantity":1,"weight":"1","rarity":"3","zeni":"3 bu","properties":[{"id":"L5RCorePro000016","name":"Subtle"}],"armor":{"physical":"","supernatural":""},"description":"","source_reference":{"source":"core_rulebook","page":"80"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/keikogi.svg","effects":[]}
|
||||
{"_id":"L5RCoreArm000011","name":"Robes of Judgment","permission":{"default":0},"type":"armor","data":{"equipped":false,"quantity":1,"weight":"1","rarity":"9","zeni":"10","properties":[{"id":"L5RCorePro000002","name":"Ceremonial"},{"id":"L5RCorePro000006","name":"Cumbersome"},{"id":"L5RCorePro000011","name":"Wargear"}],"armor":{"physical":"1","supernatural":"4"},"description":"","source_reference":{"source":"celestial_realms","page":"97"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/armor.svg","effects":[]}
|
||||
{"_id":"L5RCoreArm000012","name":"Firefighter's Coat","permission":{"default":0},"type":"armor","data":{"equipped":false,"quantity":1,"weight":"2","rarity":"4","zeni":"6 bu","properties":[{"id":"L5RCorePro000006","name":"Cumbersome"}],"armor":{"physical":"2","supernatural":""},"description":"","source_reference":{"source":"court_of_stones","page":"112"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/keikogi.svg","effects":[]}
|
||||
{"_id":"L5RCoreArm000013","name":"Stealth Clothing","permission":{"default":0},"type":"armor","data":{"equipped":false,"quantity":1,"weight":"1","rarity":"7","zeni":"4 bu","properties":[{"id":"L5RCorePro000009","name":"Forbidden"},{"id":"L5RCorePro000016","name":"Subtle"}],"armor":{"physical":"2","supernatural":""},"description":"","source_reference":{"source":"court_of_stones","page":"112"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/keikogi.svg","effects":[]}
|
||||
{"_id":"L5RCoreArm000014","name":"O-yoroi","permission":{"default":0},"type":"armor","data":{"equipped":false,"quantity":1,"weight":"3","rarity":"8","zeni":"60 Koku","properties":[{"id":"L5RCorePro000006","name":"Cumbersome"},{"id":"L5RCorePro000010","name":"Resplendent"},{"id":"L5RCorePro000011","name":"Wargear"}],"armor":{"physical":"6","supernatural":""},"description":"","source_reference":{"source":"shadowlands","page":"105"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/armor.svg","effects":[]}
|
||||
{"_id":"L5RCoreArm000015","name":"Tatami Gusoku","permission":{"default":0},"type":"armor","data":{"equipped":false,"quantity":1,"weight":"1","rarity":"4","zeni":"7 koku","properties":[{"id":"L5RCorePro000011","name":"Wargear"}],"armor":{"physical":"3","supernatural":""},"description":"","source_reference":{"source":"shadowlands","page":"106"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/armor.svg","effects":[]}
|
||||
{"_id":"L5RCoreArm000016","name":"Tosei-Gusoku","permission":{"default":0},"type":"armor","data":{"equipped":false,"quantity":1,"weight":"2","rarity":"8","zeni":"50 koku","properties":[{"id":"L5RCorePro000006","name":"Cumbersome"},{"id":"L5RCorePro000015","name":"Durable"},{"id":"L5RCorePro000011","name":"Wargear"}],"armor":{"physical":"4","supernatural":""},"description":"","source_reference":{"source":"shadowlands","page":"106"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/armor.svg","effects":[]}
|
||||
{"_id":"L5RCoreArm000017","name":"Sailor's garb","permission":{"default":0},"type":"armor","data":{"equipped":false,"quantity":1,"weight":"1","rarity":"2","zeni":"1 bu","properties":[{"id":"L5RCorePro000012","name":"Mundane"},{"id":"L5RCorePro000015","name":"Durable"}],"armor":{"physical":"1","supernatural":""},"description":"","source_reference":{"source":"the_mantis_clan","page":"9"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/keikogi.svg","effects":[]}
|
||||
{"_id":"L5RCoreArm000018","name":"Shark leather armor","permission":{"default":0},"type":"armor","data":{"equipped":false,"quantity":1,"weight":"2","rarity":"7","zeni":"25 koku","properties":[{"id":"L5RCorePro000010","name":"Resplendent"}],"armor":{"physical":"2","supernatural":""},"description":"","source_reference":{"source":"the_mantis_clan","page":"9"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/armor.svg","effects":[]}
|
||||
{"_id":"L5RCoreArm000019","name":"The Golden Obi of the Sun Goddess [Blessed Treasure]","permission":{"default":0},"type":"armor","data":{"equipped":false,"quantity":1,"weight":"1","rarity":"10","zeni":"0","properties":[{"id":"L5RCorePro000002","name":"Ceremonial"},{"id":"L5RCorePro000016","name":"Subtle"},{"id":"L5RCorePro000010","name":"Resplendent"}],"armor":{"physical":"3","supernatural":"6"},"description":"","source_reference":{"source":"celestial_realms","page":"97"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/armor.svg","effects":[]}
|
||||
@@ -1,9 +0,0 @@
|
||||
{"_id":"L5RCoreBon000001","name":"Family","permission":{"default":0},"type":"bond","data":{"bond_type":"Family","in_curriculum":false,"xp_used":0,"rank":1,"bought_at_rank":0,"ring":"void","xp_cost":3,"description":"","source_reference":{"source":"court_of_stones","page":"136"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/bond.svg","effects":[]}
|
||||
{"_id":"L5RCoreBon000002","name":"Comrade","permission":{"default":0},"type":"bond","data":{"bond_type":"Comrade","in_curriculum":false,"xp_used":0,"rank":1,"bought_at_rank":0,"ring":"void","xp_cost":3,"description":"","source_reference":{"source":"court_of_stones","page":"137"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/bond.svg","effects":[]}
|
||||
{"_id":"L5RCoreBon000003","name":"Lover","permission":{"default":0},"type":"bond","data":{"bond_type":"Lover","in_curriculum":false,"xp_used":0,"rank":1,"bought_at_rank":0,"ring":"void","xp_cost":3,"description":"","source_reference":{"source":"court_of_stones","page":"137"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/bond.svg","effects":[]}
|
||||
{"_id":"L5RCoreBon000004","name":"Rival","permission":{"default":0},"type":"bond","data":{"bond_type":"Rival","in_curriculum":false,"xp_used":0,"rank":1,"bought_at_rank":0,"ring":"void","xp_cost":3,"description":"","source_reference":{"source":"court_of_stones","page":"138"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/bond.svg","effects":[]}
|
||||
{"_id":"L5RCoreBon000005","name":"Nemesis","permission":{"default":0},"type":"bond","data":{"bond_type":"Nemesis","in_curriculum":false,"xp_used":0,"rank":1,"bought_at_rank":0,"ring":"void","xp_cost":3,"description":"","source_reference":{"source":"court_of_stones","page":"138"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/bond.svg","effects":[]}
|
||||
{"_id":"L5RCoreBon000006","name":"Old Flame","permission":{"default":0},"type":"bond","data":{"bond_type":"Old Flame","in_curriculum":false,"xp_used":0,"rank":1,"bought_at_rank":0,"ring":"void","xp_cost":3,"description":"","source_reference":{"source":"path_of_waves","page":"188"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/bond.svg","effects":[]}
|
||||
{"_id":"L5RCoreBon000007","name":"Partner","permission":{"default":0},"type":"bond","data":{"bond_type":"Partner","in_curriculum":false,"xp_used":0,"rank":1,"bought_at_rank":0,"ring":"void","xp_cost":3,"description":"","source_reference":{"source":"path_of_waves","page":"189"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/bond.svg","effects":[]}
|
||||
{"_id":"L5RCoreBon000008","name":"Protector and Ward","permission":{"default":0},"type":"bond","data":{"bond_type":"Protector and Ward","in_curriculum":false,"xp_used":0,"rank":1,"bought_at_rank":0,"ring":"void","xp_cost":3,"description":"","source_reference":{"source":"path_of_waves","page":"189"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/bond.svg","effects":[]}
|
||||
{"_id":"L5RCoreBon000009","name":"Wanderers Fellowship","permission":{"default":0},"type":"bond","data":{"bond_type":"Wanderers Fellowship","in_curriculum":false,"xp_used":0,"rank":1,"bought_at_rank":0,"ring":"void","xp_cost":3,"description":"","source_reference":{"source":"path_of_waves","page":"191"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/bond.svg","effects":[]}
|
||||
@@ -1,40 +0,0 @@
|
||||
{"_id":"L5RCoreBoo000001","name":"Agility of Legend [Armor]","permission":{"default":0},"type":"property","data":{"properties":[],"description":"","source_reference":{"source":"path_of_waves","page":"104"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/techs/mantra.svg","effects":[]}
|
||||
{"_id":"L5RCoreBoo000002","name":"Animal Transformation [Projectile]","permission":{"default":0},"type":"property","data":{"properties":[],"description":"","source_reference":{"source":"path_of_waves","page":"102"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/techs/mantra.svg","effects":[]}
|
||||
{"_id":"L5RCoreBoo000003","name":"Aura of Power [General]","permission":{"default":0},"type":"property","data":{"properties":[],"description":"","source_reference":{"source":"path_of_waves","page":"101"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/techs/mantra.svg","effects":[]}
|
||||
{"_id":"L5RCoreBoo000004","name":"Beguile the Senses [General]","permission":{"default":0},"type":"property","data":{"properties":[],"description":"","source_reference":{"source":"path_of_waves","page":"101"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/techs/mantra.svg","effects":[]}
|
||||
{"_id":"L5RCoreBoo000005","name":"Binding [Projectile]","permission":{"default":0},"type":"property","data":{"properties":[],"description":"","source_reference":{"source":"path_of_waves","page":"102"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/techs/mantra.svg","effects":[]}
|
||||
{"_id":"L5RCoreBoo000006","name":"Blessed Revitalization [General]","permission":{"default":0},"type":"property","data":{"properties":[],"description":"","source_reference":{"source":"path_of_waves","page":"101"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/techs/mantra.svg","effects":[]}
|
||||
{"_id":"L5RCoreBoo000007","name":"Burst of Force [Armor]","permission":{"default":0},"type":"property","data":{"properties":[],"description":"","source_reference":{"source":"path_of_waves","page":"104"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/techs/mantra.svg","effects":[]}
|
||||
{"_id":"L5RCoreBoo000008","name":"Celestial Step [General]","permission":{"default":0},"type":"property","data":{"properties":[],"description":"","source_reference":{"source":"path_of_waves","page":"102"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/techs/mantra.svg","effects":[]}
|
||||
{"_id":"L5RCoreBoo000009","name":"Cosmic Devastation [General]","permission":{"default":0},"type":"property","data":{"properties":[],"description":"","source_reference":{"source":"path_of_waves","page":"102"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/techs/mantra.svg","effects":[]}
|
||||
{"_id":"L5RCoreBoo000010","name":"Deadly Venom [Projectile]","permission":{"default":0},"type":"property","data":{"properties":[],"description":"","source_reference":{"source":"path_of_waves","page":"103"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/techs/mantra.svg","effects":[]}
|
||||
{"_id":"L5RCoreBoo000011","name":"Defensive [General]","permission":{"default":0},"type":"property","data":{"properties":[],"description":"","source_reference":{"source":"path_of_waves","page":"102"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/techs/mantra.svg","effects":[]}
|
||||
{"_id":"L5RCoreBoo000012","name":"Detonation [Projectile]","permission":{"default":0},"type":"property","data":{"properties":[],"description":"","source_reference":{"source":"path_of_waves","page":"103"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/techs/mantra.svg","effects":[]}
|
||||
{"_id":"L5RCoreBoo000013","name":"Duplication [Projectile]","permission":{"default":0},"type":"property","data":{"properties":[],"description":"","source_reference":{"source":"path_of_waves","page":"103"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/techs/mantra.svg","effects":[]}
|
||||
{"_id":"L5RCoreBoo000014","name":"Earthshaker [General]","permission":{"default":0},"type":"property","data":{"properties":[],"description":"","source_reference":{"source":"path_of_waves","page":"102"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/techs/mantra.svg","effects":[]}
|
||||
{"_id":"L5RCoreBoo000015","name":"Flurry [General]","permission":{"default":0},"type":"property","data":{"properties":[],"description":"","source_reference":{"source":"path_of_waves","page":"102"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/techs/mantra.svg","effects":[]}
|
||||
{"_id":"L5RCoreBoo000016","name":"Fortress Breaker [Projectile]","permission":{"default":0},"type":"property","data":{"properties":[],"description":"","source_reference":{"source":"path_of_waves","page":"103"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/techs/mantra.svg","effects":[]}
|
||||
{"_id":"L5RCoreBoo000017","name":"Grand Inspiration [Utility Object]","permission":{"default":0},"type":"property","data":{"properties":[],"description":"","source_reference":{"source":"path_of_waves","page":"104"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/techs/mantra.svg","effects":[]}
|
||||
{"_id":"L5RCoreBoo000018","name":"Harm Returned [Armor]","permission":{"default":0},"type":"property","data":{"properties":[],"description":"","source_reference":{"source":"path_of_waves","page":"104"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/techs/mantra.svg","effects":[]}
|
||||
{"_id":"L5RCoreBoo000019","name":"Illusions Shattered [Utility Object]","permission":{"default":0},"type":"property","data":{"properties":[],"description":"","source_reference":{"source":"path_of_waves","page":"104"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/techs/mantra.svg","effects":[]}
|
||||
{"_id":"L5RCoreBoo000020","name":"Independence [Melee Weapon]","permission":{"default":0},"type":"property","data":{"properties":[],"description":"","source_reference":{"source":"path_of_waves","page":"103"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/techs/mantra.svg","effects":[]}
|
||||
{"_id":"L5RCoreBoo000021","name":"Inexorable [Melee Weapon]","permission":{"default":0},"type":"property","data":{"properties":[],"description":"","source_reference":{"source":"path_of_waves","page":"103"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/techs/mantra.svg","effects":[]}
|
||||
{"_id":"L5RCoreBoo000022","name":"Inviolable [Armor]","permission":{"default":0},"type":"property","data":{"properties":[],"description":"","source_reference":{"source":"path_of_waves","page":"104"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/techs/mantra.svg","effects":[]}
|
||||
{"_id":"L5RCoreBoo000023","name":"Mark of Doom [Utility Object]","permission":{"default":0},"type":"property","data":{"properties":[],"description":"","source_reference":{"source":"path_of_waves","page":"104"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/techs/mantra.svg","effects":[]}
|
||||
{"_id":"L5RCoreBoo000024","name":"Obliteration [Projectile]","permission":{"default":0},"type":"property","data":{"properties":[],"description":"","source_reference":{"source":"path_of_waves","page":"103"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/techs/mantra.svg","effects":[]}
|
||||
{"_id":"L5RCoreBoo000025","name":"Overwhelming Force [General]","permission":{"default":0},"type":"property","data":{"properties":[],"description":"","source_reference":{"source":"path_of_waves","page":"102"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/techs/mantra.svg","effects":[]}
|
||||
{"_id":"L5RCoreBoo000026","name":"Overwhelming Radiance [Armor]","permission":{"default":0},"type":"property","data":{"properties":[],"description":"","source_reference":{"source":"path_of_waves","page":"104"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/techs/mantra.svg","effects":[]}
|
||||
{"_id":"L5RCoreBoo000027","name":"Resounding Arrival [Melee Weapon]","permission":{"default":0},"type":"property","data":{"properties":[],"description":"","source_reference":{"source":"path_of_waves","page":"103"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/techs/mantra.svg","effects":[]}
|
||||
{"_id":"L5RCoreBoo000028","name":"Resounding Rhetoric [Utility Object]","permission":{"default":0},"type":"property","data":{"properties":[],"description":"","source_reference":{"source":"path_of_waves","page":"104"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/techs/mantra.svg","effects":[]}
|
||||
{"_id":"L5RCoreBoo000029","name":"Returning [Projectile]","permission":{"default":0},"type":"property","data":{"properties":[],"description":"","source_reference":{"source":"path_of_waves","page":"103"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/techs/mantra.svg","effects":[]}
|
||||
{"_id":"L5RCoreBoo000030","name":"Rising Power [Melee Weapon]","permission":{"default":0},"type":"property","data":{"properties":[],"description":"","source_reference":{"source":"path_of_waves","page":"103"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/techs/mantra.svg","effects":[]}
|
||||
{"_id":"L5RCoreBoo000031","name":"Root of Language [Utility Object]","permission":{"default":0},"type":"property","data":{"properties":[],"description":"","source_reference":{"source":"path_of_waves","page":"104"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/techs/mantra.svg","effects":[]}
|
||||
{"_id":"L5RCoreBoo000032","name":"Shifting Shape [General]","permission":{"default":0},"type":"property","data":{"properties":[],"description":"","source_reference":{"source":"path_of_waves","page":"102"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/techs/mantra.svg","effects":[]}
|
||||
{"_id":"L5RCoreBoo000033","name":"Soothing Words [Utility Object]","permission":{"default":0},"type":"property","data":{"properties":[],"description":"","source_reference":{"source":"path_of_waves","page":"105"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/techs/mantra.svg","effects":[]}
|
||||
{"_id":"L5RCoreBoo000034","name":"Subterranean Secrets [Utility Object]","permission":{"default":0},"type":"property","data":{"properties":[],"description":"","source_reference":{"source":"path_of_waves","page":"105"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/techs/mantra.svg","effects":[]}
|
||||
{"_id":"L5RCoreBoo000035","name":"Transfiguration [General]","permission":{"default":0},"type":"property","data":{"properties":[],"description":"","source_reference":{"source":"path_of_waves","page":"102"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/techs/mantra.svg","effects":[]}
|
||||
{"_id":"L5RCoreBoo000036","name":"Unassuming [General]","permission":{"default":0},"type":"property","data":{"properties":[],"description":"","source_reference":{"source":"path_of_waves","page":"102"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/techs/mantra.svg","effects":[]}
|
||||
{"_id":"L5RCoreBoo000037","name":"Unerring [Projectile]","permission":{"default":0},"type":"property","data":{"properties":[],"description":"","source_reference":{"source":"path_of_waves","page":"103"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/techs/mantra.svg","effects":[]}
|
||||
{"_id":"L5RCoreBoo000038","name":"Unleashed Fury [Melee Weapon]","permission":{"default":0},"type":"property","data":{"properties":[],"description":"","source_reference":{"source":"path_of_waves","page":"104"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/techs/mantra.svg","effects":[]}
|
||||
{"_id":"L5RCoreBoo000039","name":"Unlimited Negation [Utility Object]","permission":{"default":0},"type":"property","data":{"properties":[],"description":"","source_reference":{"source":"path_of_waves","page":"105"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/techs/mantra.svg","effects":[]}
|
||||
{"_id":"L5RCoreBoo000040","name":"Vitality [Utility Object]","permission":{"default":0},"type":"property","data":{"properties":[],"description":"","source_reference":{"source":"path_of_waves","page":"105"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/techs/mantra.svg","effects":[]}
|
||||
@@ -1,18 +0,0 @@
|
||||
{"_id":"L5RCoreItp000001","name":"Kakita Pattern","permission":{"default":0},"type":"item_pattern","data":{"in_curriculum":false,"xp_used":0,"rank":1,"bought_at_rank":0,"ring":"void","xp_cost":"6","rarity_modifier":"4","linked_property_id":"L5RCorePro000017","description":"","source_reference":{"source":"shadowlands","page":"109"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/item_pattern.svg","effects":[]}
|
||||
{"_id":"L5RCoreItp000002","name":"Kenzō Blade","permission":{"default":0},"type":"item_pattern","data":{"in_curriculum":false,"xp_used":0,"rank":1,"bought_at_rank":0,"ring":"void","xp_cost":"8","rarity_modifier":"5","linked_property_id":"L5RCorePro000018","description":"","source_reference":{"source":"shadowlands","page":"109"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/item_pattern.svg","effects":[]}
|
||||
{"_id":"L5RCoreItp000003","name":"Shirogane Jade Inlay","permission":{"default":0},"type":"item_pattern","data":{"in_curriculum":false,"xp_used":0,"rank":1,"bought_at_rank":0,"ring":"void","xp_cost":"3","rarity_modifier":"2","linked_property_id":"L5RCorePro000019","description":"","source_reference":{"source":"shadowlands","page":"109"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/item_pattern.svg","effects":[]}
|
||||
{"_id":"L5RCoreItp000004","name":"Uchema’s Technique","permission":{"default":0},"type":"item_pattern","data":{"in_curriculum":false,"xp_used":0,"rank":1,"bought_at_rank":0,"ring":"void","xp_cost":"4","rarity_modifier":"3","linked_property_id":"L5RCorePro000020","description":"","source_reference":{"source":"shadowlands","page":"109"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/item_pattern.svg","effects":[]}
|
||||
{"_id":"L5RCoreItp000005","name":"Yasunori Steel","permission":{"default":0},"type":"item_pattern","data":{"in_curriculum":false,"xp_used":0,"rank":1,"bought_at_rank":0,"ring":"void","xp_cost":"5","rarity_modifier":"4","linked_property_id":"L5RCorePro000021","description":"","source_reference":{"source":"shadowlands","page":"109"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/item_pattern.svg","effects":[]}
|
||||
{"_id":"L5RCoreItp000006","name":"Akodo Pattern","permission":{"default":0},"type":"item_pattern","data":{"in_curriculum":false,"xp_used":0,"rank":1,"bought_at_rank":0,"ring":"void","xp_cost":"6","rarity_modifier":"4","linked_property_id":"L5RCorePro000022","description":"","source_reference":{"source":"fields_of_victory","page":"93"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/item_pattern.svg","effects":[]}
|
||||
{"_id":"L5RCoreItp000007","name":"Burning Watter Pattern","permission":{"default":0},"type":"item_pattern","data":{"in_curriculum":false,"xp_used":0,"rank":1,"bought_at_rank":0,"ring":"void","xp_cost":"6","rarity_modifier":"4","linked_property_id":"L5RCorePro000023","description":"","source_reference":{"source":"fields_of_victory","page":"93"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/item_pattern.svg","effects":[]}
|
||||
{"_id":"L5RCoreItp000008","name":"Concealment Pattern","permission":{"default":0},"type":"item_pattern","data":{"in_curriculum":false,"xp_used":0,"rank":1,"bought_at_rank":0,"ring":"void","xp_cost":"6","rarity_modifier":"4","linked_property_id":"L5RCorePro000024","description":"","source_reference":{"source":"fields_of_victory","page":"93"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/item_pattern.svg","effects":[]}
|
||||
{"_id":"L5RCoreItp000009","name":"Deadly Fangs Pattern","permission":{"default":0},"type":"item_pattern","data":{"in_curriculum":false,"xp_used":0,"rank":1,"bought_at_rank":0,"ring":"void","xp_cost":"7","rarity_modifier":"4","linked_property_id":"L5RCorePro000025","description":"","source_reference":{"source":"fields_of_victory","page":"94"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/item_pattern.svg","effects":[]}
|
||||
{"_id":"L5RCoreItp000010","name":"Fearsome Snarl Pattern","permission":{"default":0},"type":"item_pattern","data":{"in_curriculum":false,"xp_used":0,"rank":1,"bought_at_rank":0,"ring":"void","xp_cost":"3","rarity_modifier":"1","linked_property_id":"L5RCorePro000026","description":"","source_reference":{"source":"fields_of_victory","page":"94"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/item_pattern.svg","effects":[]}
|
||||
{"_id":"L5RCoreItp000011","name":"Ichirō Pattern","permission":{"default":0},"type":"item_pattern","data":{"in_curriculum":false,"xp_used":0,"rank":1,"bought_at_rank":0,"ring":"void","xp_cost":"4","rarity_modifier":"-1","linked_property_id":"L5RCorePro000027","description":"","source_reference":{"source":"fields_of_victory","page":"94"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/item_pattern.svg","effects":[]}
|
||||
{"_id":"L5RCoreItp000012","name":"Mountain Silk Pattern","permission":{"default":0},"type":"item_pattern","data":{"in_curriculum":false,"xp_used":0,"rank":1,"bought_at_rank":0,"ring":"void","xp_cost":"6","rarity_modifier":"3","linked_property_id":"L5RCorePro000028","description":"","source_reference":{"source":"fields_of_victory","page":"94"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/item_pattern.svg","effects":[]}
|
||||
{"_id":"L5RCoreItp000013","name":"Screaming Fire Pattern","permission":{"default":0},"type":"item_pattern","data":{"in_curriculum":false,"xp_used":0,"rank":1,"bought_at_rank":0,"ring":"void","xp_cost":"6","rarity_modifier":"4","linked_property_id":"L5RCorePro000029","description":"","source_reference":{"source":"fields_of_victory","page":"94"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/item_pattern.svg","effects":[]}
|
||||
{"_id":"L5RCoreItp000014","name":"Toriyama's Endurance Pattern","permission":{"default":0},"type":"item_pattern","data":{"in_curriculum":false,"xp_used":0,"rank":1,"bought_at_rank":0,"ring":"void","xp_cost":"3","rarity_modifier":"3","linked_property_id":"L5RCorePro000030","description":"","source_reference":{"source":"fields_of_victory","page":"94"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/item_pattern.svg","effects":[]}
|
||||
{"_id":"L5RCoreItp000015","name":"Spirit of the Qamarist Pattern","permission":{"default":0},"type":"item_pattern","data":{"in_curriculum":false,"xp_used":0,"rank":1,"bought_at_rank":0,"ring":"void","xp_cost":"5","rarity_modifier":"4","linked_property_id":"L5RCorePro000031","description":"","source_reference":{"source":"path_of_waves","page":"117"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/item_pattern.svg","effects":[]}
|
||||
{"_id":"L5RCoreItp000016","name":"Ghostlands Yodhaniya Pattern","permission":{"default":0},"type":"item_pattern","data":{"in_curriculum":false,"xp_used":0,"rank":1,"bought_at_rank":0,"ring":"void","xp_cost":"6","rarity_modifier":"4","linked_property_id":"L5RCorePro000032","description":"","source_reference":{"source":"path_of_waves","page":"117"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/item_pattern.svg","effects":[]}
|
||||
{"_id":"L5RCoreItp000017","name":"Kökejin’s Heart of the Wind Pattern","permission":{"default":0},"type":"item_pattern","data":{"in_curriculum":false,"xp_used":0,"rank":1,"bought_at_rank":0,"ring":"void","xp_cost":"8","rarity_modifier":"5","linked_property_id":"L5RCorePro000033","description":"","source_reference":{"source":"path_of_waves","page":"117"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/item_pattern.svg","effects":[]}
|
||||
{"_id":"L5RCoreItp000018","name":"Agasha Pattern","permission":{"default":0},"type":"item_pattern","data":{"in_curriculum":false,"xp_used":0,"rank":1,"bought_at_rank":0,"ring":"void","xp_cost":"6","rarity_modifier":"4","linked_property_id":"L5RCorePro000034","description":"","source_reference":{"source":"celestial_realms","page":"105"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/item_pattern.svg","effects":[]}
|
||||
@@ -1,111 +0,0 @@
|
||||
{"_id":"L5RCoreIte000001","name":"Tattoo Needles","permission":{"default":0},"type":"item","data":{"equipped":false,"quantity":1,"weight":"0","rarity":"4","zeni":"1 bu","properties":[],"description":"","source_reference":{"source":"core_rulebook","page":"245"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/item.svg","effects":[]}
|
||||
{"_id":"L5RCoreIte000002","name":"Finger of Jade","permission":{"default":0},"type":"item","data":{"equipped":false,"quantity":1,"weight":"0","rarity":"6","zeni":"1 koku","properties":[{"id":"L5RCorePro000014","name":"Sacred"}],"description":"","source_reference":{"source":"core_rulebook","page":"242"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/item.svg","effects":[]}
|
||||
{"_id":"L5RCoreIte000003","name":"Chopsticks","permission":{"default":0},"type":"item","data":{"equipped":false,"quantity":1,"weight":"0","rarity":"1","zeni":"1 zeni","properties":[],"description":"","source_reference":{"source":"core_rulebook","page":"242"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/item.svg","effects":[]}
|
||||
{"_id":"L5RCoreIte000004","name":"Quiver of Arrow","permission":{"default":0},"type":"item","data":{"equipped":false,"quantity":1,"weight":"0","rarity":"1","zeni":"20 zeni","properties":[],"description":"","source_reference":{"source":"core_rulebook","page":"244"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/item.svg","effects":[]}
|
||||
{"_id":"L5RCoreIte000005","name":"Rope (By the Foot)","permission":{"default":0},"type":"item","data":{"equipped":false,"quantity":1,"weight":"0","rarity":"1","zeni":"5-20 zeni","properties":[],"description":"","source_reference":{"source":"core_rulebook","page":"244"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/item.svg","effects":[]}
|
||||
{"_id":"L5RCoreIte000006","name":"Sake Cup","permission":{"default":0},"type":"item","data":{"equipped":false,"quantity":1,"weight":"0","rarity":"2","zeni":"1 bu","properties":[],"description":"","source_reference":{"source":"core_rulebook","page":"245"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/item.svg","effects":[]}
|
||||
{"_id":"L5RCoreIte000007","name":"Lucky Cricket","permission":{"default":0},"type":"item","data":{"equipped":false,"quantity":1,"weight":"0","rarity":"4","zeni":"4 bu","properties":[],"description":"","source_reference":{"source":"core_rulebook","page":"242"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/item.svg","effects":[]}
|
||||
{"_id":"L5RCoreIte000008","name":"Bottle of Sake","permission":{"default":0},"type":"item","data":{"equipped":false,"quantity":1,"weight":"1","rarity":"1","zeni":"1 bu","properties":[],"description":"","source_reference":{"source":"core_rulebook","page":"242"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/item.svg","effects":[]}
|
||||
{"_id":"L5RCoreIte000009","name":"Dice and Cup","permission":{"default":0},"type":"item","data":{"equipped":false,"quantity":1,"weight":"0","rarity":"2","zeni":"25 zeni","properties":[],"description":"","source_reference":{"source":"core_rulebook","page":"242"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/item.svg","effects":[]}
|
||||
{"_id":"L5RCoreIte000010","name":"Sweets (Four Servings)","permission":{"default":0},"type":"item","data":{"equipped":false,"quantity":1,"weight":"0","rarity":"1","zeni":"1 bu","properties":[],"description":"","source_reference":{"source":"core_rulebook","page":"245"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/item.svg","effects":[]}
|
||||
{"_id":"L5RCoreIte000011","name":"Spices","permission":{"default":0},"type":"item","data":{"equipped":false,"quantity":1,"weight":"0","rarity":"5-7","zeni":"1-5 bu","properties":[],"description":"","source_reference":{"source":"core_rulebook","page":"245"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/item.svg","effects":[]}
|
||||
{"_id":"L5RCoreIte000012","name":"Musical Instrument","permission":{"default":0},"type":"item","data":{"equipped":false,"quantity":1,"weight":"1","rarity":"2-6","zeni":"1-5 bu","properties":[],"description":"","source_reference":{"source":"core_rulebook","page":"243"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/item.svg","effects":[]}
|
||||
{"_id":"L5RCoreIte000013","name":"Games","permission":{"default":0},"type":"item","data":{"equipped":false,"quantity":1,"weight":"0","rarity":"3","zeni":"1 bu","properties":[],"description":"","source_reference":{"source":"core_rulebook","page":"242"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/item.svg","effects":[]}
|
||||
{"_id":"L5RCoreIte000014","name":"Kubi Bukuro","permission":{"default":0},"type":"item","data":{"equipped":false,"quantity":1,"weight":"0","rarity":"2","zeni":"2 zeni","properties":[{"id":"L5RCorePro000011","name":"Wargear"}],"description":"","source_reference":{"source":"core_rulebook","page":"242"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/item.svg","effects":[]}
|
||||
{"_id":"L5RCoreIte000015","name":"Pillow Book","permission":{"default":0},"type":"item","data":{"equipped":false,"quantity":1,"weight":"0","rarity":"2","zeni":"3 zeni","properties":[],"description":"","source_reference":{"source":"core_rulebook","page":"243"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/item.svg","effects":[]}
|
||||
{"_id":"L5RCoreIte000016","name":"Bowyer’s Kit","permission":{"default":0},"type":"item","data":{"equipped":false,"quantity":1,"weight":"1","rarity":"1","zeni":"1 bu","properties":[],"description":"","source_reference":{"source":"core_rulebook","page":"242"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/item.svg","effects":[]}
|
||||
{"_id":"L5RCoreIte000017","name":"Calligraphy Set","permission":{"default":0},"type":"item","data":{"equipped":false,"quantity":1,"weight":"1","rarity":"3","zeni":"1 bu","properties":[],"description":"","source_reference":{"source":"core_rulebook","page":"242"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/item.svg","effects":[]}
|
||||
{"_id":"L5RCoreIte000018","name":"Divination Kit","permission":{"default":0},"type":"item","data":{"equipped":false,"quantity":1,"weight":"1","rarity":"4","zeni":"1 bu","properties":[],"description":"","source_reference":{"source":"core_rulebook","page":"242"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/item.svg","effects":[]}
|
||||
{"_id":"L5RCoreIte000019","name":"Medicine Kit","permission":{"default":0},"type":"item","data":{"equipped":false,"quantity":1,"weight":"1","rarity":"3","zeni":"1 bu","properties":[],"description":"","source_reference":{"source":"core_rulebook","page":"243"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/item.svg","effects":[]}
|
||||
{"_id":"L5RCoreIte000020","name":"Omamori","permission":{"default":0},"type":"item","data":{"equipped":false,"quantity":1,"weight":"0","rarity":"2","zeni":"5 bu","properties":[],"description":"","source_reference":{"source":"core_rulebook","page":"243"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/item.svg","effects":[]}
|
||||
{"_id":"L5RCoreIte000021","name":"Umbrella","permission":{"default":0},"type":"item","data":{"equipped":false,"quantity":1,"weight":"0","rarity":"4","zeni":"2 bu","properties":[],"description":"","source_reference":{"source":"core_rulebook","page":"245"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/item.svg","effects":[]}
|
||||
{"_id":"L5RCoreIte000022","name":"Whetstone","permission":{"default":0},"type":"item","data":{"equipped":false,"quantity":1,"weight":"0","rarity":"1","zeni":"1 zeni","properties":[],"description":"","source_reference":{"source":"core_rulebook","page":"245"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/item.svg","effects":[]}
|
||||
{"_id":"L5RCoreIte000023","name":"Poison (One Vial)","permission":{"default":0},"type":"item","data":{"equipped":false,"quantity":1,"weight":"0","rarity":"5","zeni":"30 zeni","properties":[{"id":"L5RCorePro000009","name":"Forbidden"}],"description":"","source_reference":{"source":"core_rulebook","page":"244"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/item.svg","effects":[]}
|
||||
{"_id":"L5RCoreIte000024","name":"Daishō Stand","permission":{"default":0},"type":"item","data":{"equipped":false,"quantity":1,"weight":"1","rarity":"4","zeni":"1 koku","properties":[],"description":"","source_reference":{"source":"core_rulebook","page":"242"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/item.svg","effects":[]}
|
||||
{"_id":"L5RCoreIte000025","name":"Traveling Rations","permission":{"default":0},"type":"item","data":{"equipped":false,"quantity":1,"weight":"1","rarity":"1","zeni":"5 zeni","properties":[],"description":"","source_reference":{"source":"core_rulebook","page":"245"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/item.svg","effects":[]}
|
||||
{"_id":"L5RCoreIte000026","name":"Personal Seal or Chop","permission":{"default":0},"type":"item","data":{"equipped":false,"quantity":1,"weight":"0","rarity":"6","zeni":"4 bu","properties":[{"id":"L5RCorePro000002","name":"Ceremonial"}],"description":"","source_reference":{"source":"core_rulebook","page":"243"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/item.svg","effects":[]}
|
||||
{"_id":"L5RCoreIte000027","name":"Tea Set (Portable)","permission":{"default":0},"type":"item","data":{"equipped":false,"quantity":1,"weight":"1","rarity":"6","zeni":"1 koku","properties":[],"description":"","source_reference":{"source":"core_rulebook","page":"245"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/item.svg","effects":[]}
|
||||
{"_id":"L5RCoreIte000028","name":"Tent (Chomchong)","permission":{"default":0},"type":"item","data":{"equipped":false,"quantity":1,"weight":"2","rarity":"7","zeni":"20 koku","properties":[],"description":"","source_reference":{"source":"core_rulebook","page":"245"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/item.svg","effects":[]}
|
||||
{"_id":"L5RCoreIte000029","name":"Tent (Small)","permission":{"default":0},"type":"item","data":{"equipped":false,"quantity":1,"weight":"1","rarity":"3","zeni":"1 koku","properties":[],"description":"","source_reference":{"source":"core_rulebook","page":"245"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/item.svg","effects":[]}
|
||||
{"_id":"L5RCoreIte000030","name":"Tent (Yurt)","permission":{"default":0},"type":"item","data":{"equipped":false,"quantity":1,"weight":"2","rarity":"5","zeni":"10 koku","properties":[],"description":"","source_reference":{"source":"core_rulebook","page":"245"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/item.svg","effects":[]}
|
||||
{"_id":"L5RCoreIte000031","name":"Scroll satchel","permission":{"default":0},"type":"item","data":{"equipped":false,"quantity":1,"weight":"0","rarity":"3","zeni":"1 bu","properties":[],"description":"","source_reference":{"source":"core_rulebook","page":"60"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/item.svg","effects":[]}
|
||||
{"_id":"L5RCoreIte000032","name":"Traveling pack","permission":{"default":0},"type":"item","data":{"equipped":false,"quantity":1,"weight":"0","rarity":"1","zeni":"10 koku","properties":[{"id":"L5RCorePro000012","name":"Mundane"}],"description":"","source_reference":{"source":"core_rulebook","page":"245"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/item.svg","effects":[]}
|
||||
{"_id":"L5RCoreIte000033","name":"Journal of observations","permission":{"default":0},"type":"item","data":{"equipped":false,"quantity":1,"weight":"0","rarity":"3","zeni":"1 bu","properties":[],"description":"","source_reference":{"source":"core_rulebook","page":"67"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/item.svg","effects":[]}
|
||||
{"_id":"L5RCoreIte000034","name":"Omamori (Boon of Jurojin)","permission":{"default":0},"type":"item","data":{"equipped":false,"quantity":1,"weight":"0","rarity":"2","zeni":"5 bu","properties":[],"description":"","source_reference":{"source":"celestial_realms","page":"97"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/item.svg","effects":[]}
|
||||
{"_id":"L5RCoreIte000035","name":"Omamori (Boon of Kisshoten)","permission":{"default":0},"type":"item","data":{"equipped":false,"quantity":1,"weight":"0","rarity":"2","zeni":"5 bu","properties":[],"description":"","source_reference":{"source":"celestial_realms","page":"97"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/item.svg","effects":[]}
|
||||
{"_id":"L5RCoreIte000036","name":"Omamori (Boon of Hotei)","permission":{"default":0},"type":"item","data":{"equipped":false,"quantity":1,"weight":"0","rarity":"2","zeni":"5 bu","properties":[],"description":"","source_reference":{"source":"celestial_realms","page":"97"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/item.svg","effects":[]}
|
||||
{"_id":"L5RCoreIte000037","name":"Makeup Kit","permission":{"default":0},"type":"item","data":{"equipped":false,"quantity":1,"weight":"1","rarity":"2","zeni":"1-3 bu","properties":[],"description":"","source_reference":{"source":"court_of_stones","page":"105"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/item.svg","effects":[]}
|
||||
{"_id":"L5RCoreIte000038","name":"Ceremonial Tea Set","permission":{"default":0},"type":"item","data":{"equipped":false,"quantity":1,"weight":"1","rarity":"8","zeni":"7 koku","properties":[{"id":"L5RCorePro000002","name":"Ceremonial"},{"id":"L5RCorePro000010","name":"Resplendent"}],"description":"","source_reference":{"source":"court_of_stones","page":"105"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/item.svg","effects":[]}
|
||||
{"_id":"L5RCoreIte000039","name":"Folding Fan","permission":{"default":0},"type":"item","data":{"equipped":false,"quantity":1,"weight":"0","rarity":"3","zeni":"1 koku","properties":[{"id":"L5RCorePro000010","name":"Resplendent"}],"description":"","source_reference":{"source":"court_of_stones","page":"105"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/item.svg","effects":[]}
|
||||
{"_id":"L5RCoreIte000040","name":"Mono Imi Fuda (Taboo Plaque)","permission":{"default":0},"type":"item","data":{"equipped":false,"quantity":1,"weight":"0","rarity":"6","zeni":"8 bu","properties":[{"id":"L5RCorePro000014","name":"Sacred"}],"description":"","source_reference":{"source":"court_of_stones","page":"106"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/item.svg","effects":[]}
|
||||
{"_id":"L5RCoreIte000041","name":"Mari (Ball)","permission":{"default":0},"type":"item","data":{"equipped":false,"quantity":1,"weight":"0","rarity":"3","zeni":"5 zeni","properties":[],"description":"","source_reference":{"source":"court_of_stones","page":"106"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/item.svg","effects":[]}
|
||||
{"_id":"L5RCoreIte000042","name":"Amigasa","permission":{"default":0},"type":"item","data":{"equipped":false,"quantity":1,"weight":"0","rarity":"2","zeni":"4 zeni","properties":[],"description":"","source_reference":{"source":"court_of_stones","page":"106"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/item.svg","effects":[]}
|
||||
{"_id":"L5RCoreIte000043","name":"Norimono (Planquin)","permission":{"default":0},"type":"item","data":{"equipped":false,"quantity":1,"weight":"18","rarity":"7","zeni":"12 koku","properties":[{"id":"L5RCorePro000010","name":"Resplendent"}],"description":"","source_reference":{"source":"court_of_stones","page":"106"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/item.svg","effects":[]}
|
||||
{"_id":"L5RCoreIte000044","name":"Performer's Boat","permission":{"default":0},"type":"item","data":{"equipped":false,"quantity":1,"weight":"8","rarity":"6","zeni":"20 koku","properties":[],"description":"","source_reference":{"source":"court_of_stones","page":"106"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/item.svg","effects":[]}
|
||||
{"_id":"L5RCoreIte000045","name":"Makibishi","permission":{"default":0},"type":"item","data":{"equipped":false,"quantity":1,"weight":"0","rarity":"4","zeni":"1 bu per handful","properties":[],"description":"","source_reference":{"source":"court_of_stones","page":"107"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/item.svg","effects":[]}
|
||||
{"_id":"L5RCoreIte000046","name":"Metsubushi","permission":{"default":0},"type":"item","data":{"equipped":false,"quantity":1,"weight":"0","rarity":"5","zeni":"6 zeni per dose","properties":[],"description":"","source_reference":{"source":"court_of_stones","page":"107"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/item.svg","effects":[]}
|
||||
{"_id":"L5RCoreIte000047","name":"Invisible Ink","permission":{"default":0},"type":"item","data":{"equipped":false,"quantity":1,"weight":"0","rarity":"8","zeni":"6 bu per inkwell","properties":[],"description":"","source_reference":{"source":"court_of_stones","page":"107"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/item.svg","effects":[]}
|
||||
{"_id":"L5RCoreIte000048","name":"Disguise Kit","permission":{"default":0},"type":"item","data":{"equipped":false,"quantity":1,"weight":"1","rarity":"6","zeni":"9 bu","properties":[],"description":"","source_reference":{"source":"court_of_stones","page":"107"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/item.svg","effects":[]}
|
||||
{"_id":"L5RCoreIte000049","name":"Demon Mask","permission":{"default":0},"type":"item","data":{"equipped":false,"quantity":1,"weight":"0","rarity":"5","zeni":"1 koku","properties":[{"id":"L5RCorePro000009","name":"Forbidden"}],"description":"","source_reference":{"source":"court_of_stones","page":"107"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/item.svg","effects":[]}
|
||||
{"_id":"L5RCoreIte000050","name":"Bamboo Cane","permission":{"default":0},"type":"item","data":{"equipped":false,"quantity":1,"weight":"0","rarity":"6","zeni":"6 bu","properties":[{"id":"L5RCorePro000005","name":"Concealable"},{"id":"L5RCorePro000012","name":"Mundane"}],"description":"","source_reference":{"source":"court_of_stones","page":"107"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/item.svg","effects":[]}
|
||||
{"_id":"L5RCoreIte000051","name":"Herbal Medicines","permission":{"default":0},"type":"item","data":{"equipped":false,"quantity":1,"weight":"0","rarity":"5","zeni":"1 bu per dose","properties":[],"description":"","source_reference":{"source":"court_of_stones","page":"107"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/item.svg","effects":[]}
|
||||
{"_id":"L5RCoreIte000052","name":"Modified Scabbard","permission":{"default":0},"type":"item","data":{"equipped":false,"quantity":1,"weight":"1","rarity":"6","zeni":"2 koku","properties":[{"id":"L5RCorePro000012","name":"Mundane"}],"description":"","source_reference":{"source":"court_of_stones","page":"108"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/item.svg","effects":[]}
|
||||
{"_id":"L5RCoreIte000053","name":"Portable Boat","permission":{"default":0},"type":"item","data":{"equipped":false,"quantity":1,"weight":"3","rarity":"2","zeni":"3 koku","properties":[],"description":"","source_reference":{"source":"court_of_stones","page":"108"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/item.svg","effects":[]}
|
||||
{"_id":"L5RCoreIte000054","name":"Rope Ladder","permission":{"default":0},"type":"item","data":{"equipped":false,"quantity":1,"weight":"1","rarity":"3","zeni":"2 bu","properties":[],"description":"","source_reference":{"source":"court_of_stones","page":"108"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/item.svg","effects":[]}
|
||||
{"_id":"L5RCoreIte000055","name":"Opening and Closing Tools","permission":{"default":0},"type":"item","data":{"equipped":false,"quantity":1,"weight":"0","rarity":"3","zeni":"5 bu","properties":[],"description":"","source_reference":{"source":"court_of_stones","page":"108"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/item.svg","effects":[]}
|
||||
{"_id":"L5RCoreIte000056","name":"Mizugumo (Water Spider)","permission":{"default":0},"type":"item","data":{"equipped":false,"quantity":1,"weight":"1","rarity":"6","zeni":"3 bu","properties":[],"description":"","source_reference":{"source":"court_of_stones","page":"108"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/item.svg","effects":[]}
|
||||
{"_id":"L5RCoreIte000057","name":"Sekihitsu","permission":{"default":0},"type":"item","data":{"equipped":false,"quantity":1,"weight":"0","rarity":"1","zeni":"3 zeni","properties":[],"description":"","source_reference":{"source":"court_of_stones","page":"109"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/item.svg","effects":[]}
|
||||
{"_id":"L5RCoreIte000058","name":"Tenugui","permission":{"default":0},"type":"item","data":{"equipped":false,"quantity":1,"weight":"0","rarity":"2","zeni":"3 zeni","properties":[],"description":"","source_reference":{"source":"court_of_stones","page":"109"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/item.svg","effects":[]}
|
||||
{"_id":"L5RCoreIte000059","name":"Uchitake","permission":{"default":0},"type":"item","data":{"equipped":false,"quantity":1,"weight":"0","rarity":"3","zeni":"12 zeni","properties":[{"id":"L5RCorePro000009","name":"Forbidden"}],"description":"","source_reference":{"source":"court_of_stones","page":"109"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/item.svg","effects":[]}
|
||||
{"_id":"L5RCoreIte000060","name":"Sokutoki","permission":{"default":0},"type":"item","data":{"equipped":false,"quantity":1,"weight":"0","rarity":"4","zeni":"2 bu","properties":[{"id":"L5RCorePro000005","name":"Concealable"},{"id":"L5RCorePro000013","name":"Prepare"},{"id":"L5RCorePro000016","name":"Subtle"}],"description":"","source_reference":{"source":"court_of_stones","page":"109"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/item.svg","effects":[]}
|
||||
{"_id":"L5RCoreIte000061","name":"Travel Rations","permission":{"default":0},"type":"item","data":{"equipped":false,"quantity":1,"weight":"1","rarity":"1","zeni":"1-3 bu","properties":[{"id":"L5RCorePro000012","name":"Mundane"}],"description":"","source_reference":{"source":"path_of_waves","page":"114"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/item.svg","effects":[]}
|
||||
{"_id":"L5RCoreIte000062","name":"Cooking Kit","permission":{"default":0},"type":"item","data":{"equipped":false,"quantity":1,"weight":"1","rarity":"2","zeni":"2 koku","properties":[{"id":"L5RCorePro000012","name":"Mundane"}],"description":"","source_reference":{"source":"path_of_waves","page":"114"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/item.svg","effects":[]}
|
||||
{"_id":"L5RCoreIte000063","name":"Dice Kit","permission":{"default":0},"type":"item","data":{"equipped":false,"quantity":1,"weight":"0","rarity":"2","zeni":"6 zeni","properties":[{"id":"L5RCorePro000005","name":"Concealable"},{"id":"L5RCorePro000012","name":"Mundane"}],"description":"","source_reference":{"source":"path_of_waves","page":"114"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/item.svg","effects":[]}
|
||||
{"_id":"L5RCoreIte000064","name":"Alchemy Kit","permission":{"default":0},"type":"item","data":{"equipped":false,"quantity":1,"weight":"1","rarity":"0","zeni":"10 koku","properties":[],"description":"","source_reference":{"source":"path_of_waves","page":"114"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/item.svg","effects":[]}
|
||||
{"_id":"L5RCoreIte000065","name":"Fishing kit","permission":{"default":0},"type":"item","data":{"equipped":false,"quantity":1,"weight":"1","rarity":"3","zeni":"1 koku","properties":[{"id":"L5RCorePro000012","name":"Mundane"}],"description":"","source_reference":{"source":"path_of_waves","page":"115"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/item.svg","effects":[]}
|
||||
{"_id":"L5RCoreIte000066","name":"Tailor's Kit","permission":{"default":0},"type":"item","data":{"equipped":false,"quantity":1,"weight":"1","rarity":"5","zeni":"3 koku","properties":[{"id":"L5RCorePro000012","name":"Mundane"}],"description":"","source_reference":{"source":"path_of_waves","page":"115"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/item.svg","effects":[]}
|
||||
{"_id":"L5RCoreIte000067","name":"Weaver's Kit","permission":{"default":0},"type":"item","data":{"equipped":false,"quantity":1,"weight":"1","rarity":"3","zeni":"1 koku","properties":[{"id":"L5RCorePro000012","name":"Mundane"}],"description":"","source_reference":{"source":"path_of_waves","page":"115"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/item.svg","effects":[]}
|
||||
{"_id":"L5RCoreIte000068","name":"Mason's Kit","permission":{"default":0},"type":"item","data":{"equipped":false,"quantity":1,"weight":"1","rarity":"5","zeni":"2 koku","properties":[{"id":"L5RCorePro000012","name":"Mundane"}],"description":"","source_reference":{"source":"path_of_waves","page":"115"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/item.svg","effects":[]}
|
||||
{"_id":"L5RCoreIte000069","name":"Chandu","permission":{"default":0},"type":"item","data":{"equipped":false,"quantity":1,"weight":"0","rarity":"6","zeni":"4 bu per use","properties":[{"id":"L5RCorePro000009","name":"Forbidden"}],"description":"","source_reference":{"source":"path_of_waves","page":"116"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/item.svg","effects":[]}
|
||||
{"_id":"L5RCoreIte000070","name":"Thievery Kit","permission":{"default":0},"type":"item","data":{"equipped":false,"quantity":1,"weight":"1","rarity":"6","zeni":"2 koku","properties":[{"id":"L5RCorePro000005","name":"Concealable"},{"id":"L5RCorePro000009","name":"Forbidden"},{"id":"L5RCorePro000016","name":"Subtle"}],"description":"","source_reference":{"source":"path_of_waves","page":"116"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/item.svg","effects":[]}
|
||||
{"_id":"L5RCoreIte000071","name":"Poppy Tea","permission":{"default":0},"type":"item","data":{"equipped":false,"quantity":1,"weight":"0","rarity":"7","zeni":"6 bu per cup","properties":[{"id":"L5RCorePro000009","name":"Forbidden"}],"description":"","source_reference":{"source":"path_of_waves","page":"116"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/item.svg","effects":[]}
|
||||
{"_id":"L5RCoreIte000072","name":"Shikomizue","permission":{"default":0},"type":"item","data":{"equipped":false,"quantity":1,"weight":"0","rarity":"7","zeni":"2 koku","properties":[{"id":"L5RCorePro000009","name":"Forbidden"},{"id":"L5RCorePro000016","name":"Subtle"}],"description":"","source_reference":{"source":"path_of_waves","page":"116"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/item.svg","effects":[]}
|
||||
{"_id":"L5RCoreIte000073","name":"Climbing Kit","permission":{"default":0},"type":"item","data":{"equipped":false,"quantity":1,"weight":"1","rarity":"3","zeni":"2 bu","properties":[],"description":"","source_reference":{"source":"shadowlands","page":"106"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/item.svg","effects":[]}
|
||||
{"_id":"L5RCoreIte000074","name":"Spyglass","permission":{"default":0},"type":"item","data":{"equipped":false,"quantity":1,"weight":"0","rarity":"5","zeni":"2 koku","properties":[],"description":"","source_reference":{"source":"shadowlands","page":"107"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/item.svg","effects":[]}
|
||||
{"_id":"L5RCoreIte000075","name":"Tate","permission":{"default":0},"type":"item","data":{"equipped":false,"quantity":1,"weight":"1","rarity":"3","zeni":"3 bu","properties":[],"description":"","source_reference":{"source":"shadowlands","page":"107"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/item.svg","effects":[]}
|
||||
{"_id":"L5RCoreIte000076","name":"Taketaba","permission":{"default":0},"type":"item","data":{"equipped":false,"quantity":1,"weight":"1","rarity":"4","zeni":"4 bu","properties":[],"description":"","source_reference":{"source":"shadowlands","page":"107"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/item.svg","effects":[]}
|
||||
{"_id":"L5RCoreIte000077","name":"Smithy's Kit","permission":{"default":0},"type":"item","data":{"equipped":false,"quantity":1,"weight":"2","rarity":"3","zeni":"3 bu","properties":[{"id":"L5RCorePro000006","name":"Cumbersome"}],"description":"","source_reference":{"source":"shadowlands","page":"107"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/item.svg","effects":[]}
|
||||
{"_id":"L5RCoreIte000078","name":"Sapper's Kit","permission":{"default":0},"type":"item","data":{"equipped":false,"quantity":1,"weight":"1","rarity":"3","zeni":"1 bu","properties":[],"description":"","source_reference":{"source":"shadowlands","page":"107"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/item.svg","effects":[]}
|
||||
{"_id":"L5RCoreIte000079","name":"Engineer's Kit","permission":{"default":0},"type":"item","data":{"equipped":false,"quantity":1,"weight":"1","rarity":"3","zeni":"3 bu","properties":[],"description":"","source_reference":{"source":"shadowlands","page":"107"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/item.svg","effects":[]}
|
||||
{"_id":"L5RCoreIte000080","name":"Smoke Arrows","permission":{"default":0},"type":"item","data":{"equipped":false,"quantity":1,"weight":"0","rarity":"4","zeni":"3 bu","properties":[],"description":"","source_reference":{"source":"shadowlands","page":"107"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/item.svg","effects":[]}
|
||||
{"_id":"L5RCoreIte000081","name":"Astrolabe","permission":{"default":0},"type":"item","data":{"equipped":false,"quantity":1,"weight":"0","rarity":"10","zeni":"30 koku","properties":[],"description":"","source_reference":{"source":"the_mantis_clan","page":"9"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/item.svg","effects":[]}
|
||||
{"_id":"L5RCoreIte000082","name":"Fishing Rod and Line","permission":{"default":0},"type":"item","data":{"equipped":false,"quantity":1,"weight":"1","rarity":"1","zeni":"1 bu","properties":[],"description":"","source_reference":{"source":"the_mantis_clan","page":"9"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/item.svg","effects":[]}
|
||||
{"_id":"L5RCoreIte000083","name":"TaraiBune","permission":{"default":0},"type":"item","data":{"equipped":false,"quantity":1,"weight":"3","rarity":"4","zeni":"1 koku","properties":[],"description":"","source_reference":{"source":"the_mantis_clan","page":"9"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/item.svg","effects":[]}
|
||||
{"_id":"L5RCoreIte000084","name":"Animal Helm","permission":{"default":0},"type":"item","data":{"equipped":false,"quantity":1,"weight":"0","rarity":"5","zeni":"1 koku","properties":[{"id":"L5RCorePro000011","name":"Wargear"}],"description":"","source_reference":{"source":"fields_of_victory","page":"90"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/item.svg","effects":[]}
|
||||
{"_id":"L5RCoreIte000085","name":"Blasting Powder (1 charge)","permission":{"default":0},"type":"item","data":{"equipped":false,"quantity":1,"weight":"0","rarity":"9","zeni":"20 koku","properties":[{"id":"L5RCorePro000002","name":"Ceremonial"},{"id":"L5RCorePro000009","name":"Forbidden"}],"description":"","source_reference":{"source":"fields_of_victory","page":"90"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/item.svg","effects":[]}
|
||||
{"_id":"L5RCoreIte000086","name":"Battlefield Heirloom","permission":{"default":0},"type":"item","data":{"equipped":false,"quantity":1,"weight":"0","rarity":"GM dependant","zeni":"GM dependant","properties":[],"description":"","source_reference":{"source":"fields_of_victory","page":"90"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/item.svg","effects":[]}
|
||||
{"_id":"L5RCoreIte000087","name":"Battlefield Medical Pack","permission":{"default":0},"type":"item","data":{"equipped":false,"quantity":1,"weight":"0","rarity":"3","zeni":"2 bu","properties":[],"description":"","source_reference":{"source":"fields_of_victory","page":"90"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/item.svg","effects":[]}
|
||||
{"_id":"L5RCoreIte000088","name":"Brilliant Flare","permission":{"default":0},"type":"item","data":{"equipped":false,"quantity":1,"weight":"0","rarity":"6","zeni":"1 koku","properties":[{"id":"L5RCorePro000011","name":"Wargear"}],"description":"","source_reference":{"source":"fields_of_victory","page":"90"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/item.svg","effects":[]}
|
||||
{"_id":"L5RCoreIte000089","name":"Mempō","permission":{"default":0},"type":"item","data":{"equipped":false,"quantity":1,"weight":"0","rarity":"4","zeni":"5 koku","properties":[{"id":"L5RCorePro000002","name":"Ceremonial"},{"id":"L5RCorePro000011","name":"Wargear"}],"description":"","source_reference":{"source":"fields_of_victory","page":"91"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/item.svg","effects":[]}
|
||||
{"_id":"L5RCoreIte000090","name":"Saihai","permission":{"default":0},"type":"item","data":{"equipped":false,"quantity":1,"weight":"0","rarity":"3","zeni":"4 bu","properties":[{"id":"L5RCorePro000002","name":"Ceremonial"},{"id":"L5RCorePro000011","name":"Wargear"}],"description":"","source_reference":{"source":"fields_of_victory","page":"91"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/item.svg","effects":[]}
|
||||
{"_id":"L5RCoreIte000091","name":"Sashimono","permission":{"default":0},"type":"item","data":{"equipped":false,"quantity":1,"weight":"0","rarity":"2","zeni":"6 bu","properties":[{"id":"L5RCorePro000011","name":"Wargear"}],"description":"","source_reference":{"source":"fields_of_victory","page":"91"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/item.svg","effects":[]}
|
||||
{"_id":"L5RCoreIte000092","name":"Smoking Pipe","permission":{"default":0},"type":"item","data":{"equipped":false,"quantity":1,"weight":"0","rarity":"2","zeni":"1 bu","properties":[],"description":"","source_reference":{"source":"fields_of_victory","page":"91"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/item.svg","effects":[]}
|
||||
{"_id":"L5RCoreIte000093","name":"Tetsubishi","permission":{"default":0},"type":"item","data":{"equipped":false,"quantity":1,"weight":"0","rarity":"4","zeni":"5 bu","properties":[],"description":"","source_reference":{"source":"fields_of_victory","page":"91"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/item.svg","effects":[]}
|
||||
{"_id":"L5RCoreIte000094","name":"Uma-Jirushi","permission":{"default":0},"type":"item","data":{"equipped":false,"quantity":1,"weight":"0","rarity":"7","zeni":"3 koku","properties":[{"id":"L5RCorePro000010","name":"Resplendent"},{"id":"L5RCorePro000011","name":"Wargear"}],"description":"","source_reference":{"source":"fields_of_victory","page":"91"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/item.svg","effects":[]}
|
||||
{"_id":"L5RCoreIte000095","name":"Banner of Amaterasu [Blessed Treasure]","permission":{"default":0},"type":"item","data":{"equipped":false,"quantity":1,"weight":"0","rarity":"10","zeni":"0","properties":[{"id":"L5RCorePro000015","name":"Durable"},{"id":"L5RCorePro000014","name":"Sacred"}],"description":"","source_reference":{"source":"fields_of_victory","page":"92"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/blessed.svg","effects":[]}
|
||||
{"_id":"L5RCoreIte000096","name":"The Claws of the Kitsu [Blessed Treasure]","permission":{"default":0},"type":"item","data":{"equipped":false,"quantity":1,"weight":"0","rarity":"10","zeni":"0","properties":[{"id":"L5RCorePro000015","name":"Durable"},{"id":"L5RCorePro000014","name":"Sacred"}],"description":"","source_reference":{"source":"fields_of_victory","page":"92"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/blessed.svg","effects":[]}
|
||||
{"_id":"L5RCoreIte000098","name":"Leadership Scrolls [Blessed Treasure]","permission":{"default":0},"type":"item","data":{"equipped":false,"quantity":1,"weight":"0","rarity":"10","zeni":"0","properties":[{"id":"L5RCorePro000015","name":"Durable"},{"id":"L5RCorePro000014","name":"Sacred"}],"description":"","source_reference":{"source":"fields_of_victory","page":"92"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/blessed.svg","effects":[]}
|
||||
{"_id":"L5RCoreIte000099","name":"The Anvil of Despair [Concealed Horror]","permission":{"default":0},"type":"item","data":{"equipped":false,"quantity":1,"weight":"3","rarity":"10","zeni":"0","properties":[{"id":"L5RCorePro000009","name":"Forbidden"},{"id":"L5RCorePro000008","name":"Unholy"}],"description":"","source_reference":{"source":"shadowlands","page":"111"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/cursed.svg","effects":[]}
|
||||
{"_id":"L5RCoreIte000100","name":"The Black Pearls of Fu Leng [Concealed Horror]","permission":{"default":0},"type":"item","data":{"equipped":false,"quantity":1,"weight":"0","rarity":"10","zeni":"0","properties":[{"id":"L5RCorePro000009","name":"Forbidden"},{"id":"L5RCorePro000008","name":"Unholy"}],"description":"","source_reference":{"source":"shadowlands","page":"111"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/cursed.svg","effects":[]}
|
||||
{"_id":"L5RCoreIte000101","name":"The Henge-Okurimono [Concealed Horror]","permission":{"default":0},"type":"item","data":{"equipped":false,"quantity":1,"weight":"0","rarity":"10","zeni":"0","properties":[{"id":"L5RCorePro000009","name":"Forbidden"},{"id":"L5RCorePro000008","name":"Unholy"}],"description":"","source_reference":{"source":"shadowlands","page":"111"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/cursed.svg","effects":[]}
|
||||
{"_id":"L5RCoreIte000102","name":"The Porcelain Mask of Fu Leng [Concealed Horror]","permission":{"default":0},"type":"item","data":{"equipped":false,"quantity":1,"weight":"0","rarity":"10","zeni":"0","properties":[{"id":"L5RCorePro000009","name":"Forbidden"},{"id":"L5RCorePro000008","name":"Unholy"}],"description":"","source_reference":{"source":"shadowlands","page":"111"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/cursed.svg","effects":[]}
|
||||
{"_id":"L5RCoreIte000103","name":"The Jade Cups of Taira [Blessed Treasure]","permission":{"default":0},"type":"item","data":{"equipped":false,"quantity":1,"weight":"0","rarity":"10","zeni":"0","properties":[{"id":"L5RCorePro000014","name":"Sacred"},{"id":"L5RCorePro000015","name":"Durable"}],"description":"","source_reference":{"source":"shadowlands","page":"112"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/blessed.svg","effects":[]}
|
||||
{"_id":"L5RCoreIte000104","name":"Jade Petal Tea [Blessed Treasure]","permission":{"default":0},"type":"item","data":{"equipped":false,"quantity":1,"weight":"0","rarity":"10","zeni":"0","properties":[{"id":"L5RCorePro000014","name":"Sacred"}],"description":"","source_reference":{"source":"shadowlands","page":"113"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/blessed.svg","effects":[]}
|
||||
{"_id":"L5RCoreIte000106","name":"Obsidian Ink [Blessed Treasure]","permission":{"default":0},"type":"item","data":{"equipped":false,"quantity":1,"weight":"0","rarity":"10","zeni":"0","properties":[{"id":"L5RCorePro000014","name":"Sacred"}],"description":"","source_reference":{"source":"shadowlands","page":"113"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/blessed.svg","effects":[]}
|
||||
{"_id":"L5RCoreIte000107","name":"Arrows","permission":{"default":0},"type":"item","data":{"equipped":false,"quantity":1,"weight":"0","rarity":"1","zeni":"0","properties":[],"description":"","source_reference":{"source":"core_rulebook","page":"236"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/item.svg","effects":[]}
|
||||
{"_id":"L5RCoreIte000108","name":"Arrows : Fire-Blossom","permission":{"default":0},"type":"item","data":{"equipped":false,"quantity":1,"weight":"0","rarity":"6","zeni":"5 Bu","properties":[],"description":"","source_reference":{"source":"celestial_realms","page":"97"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/item.svg","effects":[]}
|
||||
{"_id":"L5RCoreIte000109","name":"Arrows : Hamaya","permission":{"default":0},"type":"item","data":{"equipped":false,"quantity":1,"weight":"0","rarity":"8","zeni":"1 Koku","properties":[],"description":"","source_reference":{"source":"celestial_realms","page":"97"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/item.svg","effects":[]}
|
||||
{"_id":"L5RCoreIte000110","name":"Arrows : Soul-Star","permission":{"default":0},"type":"item","data":{"equipped":false,"quantity":1,"weight":"0","rarity":"8","zeni":"2 Koku","properties":[],"description":"","source_reference":{"source":"celestial_realms","page":"97"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/item.svg","effects":[]}
|
||||
{"_id":"L5RCoreIte000111","name":"The horagai of Sacred Rains","permission":{"default":0},"type":"item","data":{"equipped":false,"quantity":1,"weight":"0","rarity":"10","zeni":"0","properties":[{"id":"L5RCorePro000010","name":"Resplendent"},{"id":"L5RCorePro000014","name":"Sacred"}],"description":"","source_reference":{"source":"celestial_realms","page":"96"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/item.svg","effects":[]}
|
||||
{"_id":"L5RCoreIte000112","name":"Daikoku's Mallet","permission":{"default":0},"type":"item","data":{"equipped":false,"quantity":1,"weight":"0","rarity":"10","zeni":"0","properties":[{"id":"L5RCorePro000015","name":"Durable"},{"id":"L5RCorePro000014","name":"Sacred"},{"id":"L5RCorePro000016","name":"Subtle"}],"description":"","source_reference":{"source":"celestial_realms","page":"96"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/item.svg","effects":[]}
|
||||
{"_id":"L5RCoreIte000113","name":"Candles of the Moth","permission":{"default":0},"type":"item","data":{"equipped":false,"quantity":1,"weight":"0","rarity":"9","zeni":"10 Koku","properties":[{"id":"L5RCorePro000002","name":"Ceremonial"},{"id":"L5RCorePro000014","name":"Sacred"},{"id":"L5RCorePro000016","name":"Subtle"}],"description":"","source_reference":{"source":"celestial_realms","page":"96"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/item.svg","effects":[]}
|
||||
@@ -1,21 +0,0 @@
|
||||
{"_id":"L5RCoreCon000001","name":"Afflicted","content":"<blockquote>Core Rulebook p.271</blockquote>","img":"icons/svg/sun.svg","folder":null,"sort":100001,"permission":{"default":0},"flags":{}}
|
||||
{"_id":"L5RCoreCon000002","name":"Bleeding","content":"<blockquote>Core Rulebook p.271</blockquote>","img":"icons/svg/blood.svg","folder":null,"sort":100001,"permission":{"default":0},"flags":{}}
|
||||
{"_id":"L5RCoreCon000003","name":"Burning","content":"<blockquote>Core Rulebook p.272</blockquote>","img":"icons/svg/fire.svg","folder":null,"sort":100001,"permission":{"default":0},"flags":{}}
|
||||
{"_id":"L5RCoreCon000004","name":"Compromised","content":"<blockquote>Core Rulebook p.272</blockquote>","img":"icons/svg/terror.svg","folder":null,"sort":100001,"permission":{"default":0},"flags":{}}
|
||||
{"_id":"L5RCoreCon000005","name":"Dazed","content":"<blockquote>Core Rulebook p.272</blockquote>","img":"icons/svg/eye.svg","folder":null,"sort":100001,"permission":{"default":0},"flags":{}}
|
||||
{"_id":"L5RCoreCon000006","name":"Disoriented","content":"<blockquote>Core Rulebook p.272</blockquote>","img":"icons/svg/daze.svg","folder":null,"sort":100001,"permission":{"default":0},"flags":{}}
|
||||
{"_id":"L5RCoreCon000007","name":"Dying [X Rounds]","content":"<blockquote>Core Rulebook p.272</blockquote>","img":"icons/svg/skull.svg","folder":null,"sort":100001,"permission":{"default":0},"flags":{}}
|
||||
{"_id":"L5RCoreCon000008","name":"Enraged","content":"<blockquote>Core Rulebook p.272</blockquote>","img":"icons/svg/lightning.svg","folder":null,"sort":100001,"permission":{"default":0},"flags":{}}
|
||||
{"_id":"L5RCoreCon000009","name":"Exhausted","content":"<blockquote>Core Rulebook p.272</blockquote>","img":"icons/svg/sleep.svg","folder":null,"sort":100001,"permission":{"default":0},"flags":{}}
|
||||
{"_id":"L5RCoreCon000010","name":"Immobilized","content":"<blockquote>Core Rulebook p.272</blockquote>","img":"icons/svg/net.svg","folder":null,"sort":100001,"permission":{"default":0},"flags":{}}
|
||||
{"_id":"L5RCoreCon000011","name":"Incapacitated","content":"<blockquote>Core Rulebook p.272</blockquote>","img":"icons/svg/downgrade.svg","folder":null,"sort":100001,"permission":{"default":0},"flags":{}}
|
||||
{"_id":"L5RCoreCon000012","name":"Intoxicated","content":"<blockquote>Core Rulebook p.273</blockquote>","img":"icons/svg/poison.svg","folder":null,"sort":100001,"permission":{"default":0},"flags":{}}
|
||||
{"_id":"L5RCoreCon000013","name":"Prone","content":"<blockquote>Core Rulebook p.273</blockquote>","img":"icons/svg/falling.svg","folder":null,"sort":100001,"permission":{"default":0},"flags":{}}
|
||||
{"_id":"L5RCoreCon000014","name":"Silenced","content":"<blockquote>Core Rulebook p.273</blockquote>","img":"icons/svg/silenced.svg","folder":null,"sort":100001,"permission":{"default":0},"flags":{}}
|
||||
{"_id":"L5RCoreCon000015","name":"Unconscious","content":"<blockquote>Core Rulebook p.273</blockquote>","img":"icons/svg/unconscious.svg","folder":null,"sort":100001,"permission":{"default":0},"flags":{}}
|
||||
{"_id":"L5RCoreCon000016","name":"Wounded","content":"<blockquote>Core Rulebook p.273</blockquote>","img":"icons/svg/degen.svg","folder":null,"sort":100001,"permission":{"default":0},"flags":{}}
|
||||
{"_id":"L5RCoreCon000017","name":"Illness: Oozing Sore Disease","content":"<blockquote>Writ of the Wild p.140</blockquote>","img":"systems/l5r5e/assets/icons/social.svg","folder":null,"sort":100001,"permission":{"default":0},"flags":{}}
|
||||
{"_id":"L5RCoreCon000018","name":"Illness: Gut Sickness","content":"<blockquote>Writ of the Wild p.141</blockquote>","img":"systems/l5r5e/assets/icons/social.svg","folder":null,"sort":100001,"permission":{"default":0},"flags":{}}
|
||||
{"_id":"L5RCoreCon000019","name":"Illness: Coughing Illness","content":"<blockquote>Writ of the Wild p.141</blockquote>","img":"systems/l5r5e/assets/icons/social.svg","folder":null,"sort":100001,"permission":{"default":0},"flags":{}}
|
||||
{"_id":"L5RCoreCon000020","name":"Illness: Unsteady Illness","content":"<blockquote>Writ of the Wild p.141</blockquote>","img":"systems/l5r5e/assets/icons/social.svg","folder":null,"sort":100001,"permission":{"default":0},"flags":{}}
|
||||
{"_id":"L5RCoreCon000021","name":"Illness: Fire Rash","content":"<blockquote>Writ of the Wild p.141</blockquote>","img":"systems/l5r5e/assets/icons/social.svg","folder":null,"sort":100001,"permission":{"default":0},"flags":{}}
|
||||
@@ -1,14 +0,0 @@
|
||||
{"_id":"L5RCoreOpp000001","name":"General Use","content":"<blockquote>Core Rulebook p.328</blockquote><br><h2>All</h2><ul><li><strong>(op) :</strong> If you failed, determine the easiest way to accomplish the task you were attempting (skill and approach).</li><li><strong>(op)+ :</strong> Remove 1 strife you gained from this check per (op) spent this way.</li><li><strong>(op)(op) :</strong> Provide assistance to the next character to attempt a check to accomplish something similar.</li></ul><br><br><h2>(air) Air (Precision, Stealth, Subtlety, Trickery, Detail, Emotion)</h2><ul><li><strong>(op) :</strong> Learn another character in the scene’s demeanor (if an NPC) and current strife.</li><li><strong>(op)+ :</strong> Act subtly to attract minimal attention in your efforts. Extra (op) makes the attempt even subtler.</li><li><strong>(op)(op) :</strong> Notice an interesting detail about a character in the scene, such as an advantage or disadvantage. At the GM’s discretion, you may establish a new detail for an NPC.</li></ul><br><br><h2>(earth) Earth (Caution, Calm, Thoroughness, Memory, Defense)</h2><ul><li><strong>(op) :</strong> Reassure another character in the scene with your presence, allowing them to remove 2 strife.</li><li><strong>(op)+ :</strong> Act carefully to minimize consequences of failure or other dangers that could arise from the task. Extra (op) makes the attempt even safer.</li><li><strong>(op)(op) :</strong> Suddenly recall an important piece of information not directly related to the task. At the GM’s discretion, you may establish a small preparatory action you took earlier, such as bringing along a common useful item.</li></ul><br><br><h2>(fire) Fire (Creativity, Intimidation, Attention, Motivation, Insight, Absence)</h2><ul><li><strong>(op) :</strong> Inflame another character in the scene with your presence, causing them to receive 2 strife.</li><li><strong>(op)+ :</strong> Perform the task in a flashy way, drawing attention to yourself. Extra (op) attracts even more notice.</li><li><strong>(op)(op) :</strong> Notice something missing or out of place in the vicinity that is not directly related to the task. At the GM’s discretion, you may establish an absence, such as a lack of shoes outside indicating the occupant’s absence.</li></ul><br><br><h2>(water) Water (Efficiency, Flexibility, Friendliness, Environmental awareness)</h2><ul><li><strong>(op) :</strong> Remove 2 strife from yourself.</li><li><strong>(op)+ :</strong> Perform the task efficiently, completing it more quickly or saving supplies. Extra (op) further reduces the time or materials expended.</li><li><strong>(op)(op) :</strong> Spot an interesting physical detail present in your environment not directly related to your check. At the GM’s discretion, you may establish a piece of terrain or a mundane object nearby.</li></ul><br><br><h2>(void) Void (Instinct, Inscrutability, Mystery, the Supernatural)</h2><ul><li><strong>(op) :</strong> Choose a ring other than Void. Reduce the TN of your next check by 1 if it uses that ring.</li><li><strong>(op)+ :</strong> Feel a chill down your spine, notice a sudden silence, or detect another sign of the supernatural if there is a spiritual disturbance in the scene. Extra (op) gives an increasingly precise location for the supernatural occurrence.</li><li><strong>(op)(op) :</strong> Gain spiritual insight into the nature of the universe or your own heart. At the GM’s discretion, you may establish a fact about your character that has not been previously revealed but relates to the situation.</li></ul>","img":"systems/l5r5e/assets/icons/social.svg","folder":null,"sort":100001,"permission":{"default":0},"flags":{}}
|
||||
{"_id":"L5RCoreOpp000002","name":"Conflict and Martial Skills Use","content":"<blockquote>Core Rulebook p.328</blockquote><br><h2>(air) Air (Precision, Stealth, Subtlety, Trickery, Detail, Emotion)</h2><ul><li><strong>(op) :</strong> Add a kept (ring) set to an (op) result to your next Martial skill check.</li><li><strong>(op)+ :</strong> During a Movement action check, up to 1 range band of any distance you move per (op) spent this way may be along a vertical surface.</li><li><strong>(op)(op) :</strong> Increase the TN of the next Martial Arts [Ranged] check targeting you before the start of your next turn by 2.</li></ul><br><br><h2>(earth) Earth (Caution, Calm, Thoroughness, Memory, Defense)</h2><ul><li><strong>(op) :</strong> During a Movement action, ignore one terrain quality (see page 267) of your choice.</li><li><strong>(op)+ :</strong> Reduce the severity of the next critical strike you suffer before the start of your next turn by 1 per spent this way.</li><li><strong>(op)(op) :</strong> Do not apply one of your disadvantages to checks until the end of your next turn.</li></ul><br><br><h2>(fire) Fire (Creativity, Intimidation, Attention, Motivation, Insight, Absence)</h2><ul><li><strong>(op) :</strong> Choose another character in the scene; increase the TN of the next check they make before the end of their next turn by 1 if it does not include you as a target.</li><li><strong>(op)+ :</strong> During an Attack action check, increase the TN of the next check the target makes to resist a critical strike they suffer before the start of your next turn by 1 per spent this way.</li><li><strong>(op)(op) :</strong> Other characters must receive 2 strife to choose you as the target of their Attack and Scheme actions until the start of your next turn.</li></ul><br><br><h2>(water) Water (Efficiency, Flexibility, Friendliness, Environmental awareness)</h2><ul><li><strong>(op) :</strong> Remove 1 fatigue.</li><li><strong>(op)+ :</strong> During an Attack action check, ignore 1 point of target’s physical resistance per spent this way.</li><li><strong>(op)(op) :</strong> Move 1 range band.</li></ul><br><br><h2>(void) Void (Instinct, Inscrutability, Mystery, the Supernatural)</h2><ul><li><strong>(op) :</strong> During the next Attack action check you make before the end of your next turn, ignore one terrain quality (see page 267) of your choice.</li><li><strong>(op)+ :</strong> During a Support action check, increase your Initiative value by 1 per (op) spent this way.</li><li><strong>(op)(op) :</strong> Ignore the effects of one condition you are suffering until the end of your next turn.</li></ul>","img":"systems/l5r5e/assets/icons/social.svg","folder":null,"sort":100001,"permission":{"default":0},"flags":{}}
|
||||
{"_id":"L5RCoreOpp000003","name":"Initiative Check Use","content":"<blockquote>Core Rulebook p.329</blockquote><br><h2>(air) Air (Precision, Stealth, Subtlety, Trickery, Detail, Emotion)</h2><p><strong>(op) :</strong> On an Initiative check, assess one foe’s weakness. Learn one of their disadvantages of that foe’s choice.</p><br><br><h2>(earth) Earth (Caution, Calm, Thoroughness, Memory, Defense)</h2><p><strong>(op) :</strong> On an Initiative check, choose another character’s disadvantage you know. They do not apply that disadvantage to their checks this scene.</p><br><br><h2>(fire) Fire (Creativity, Intimidation, Attention, Motivation, Insight, Absence)</h2><p><strong>(op) :</strong> On an Initiative check, use your focus instead of your vigilance for your initiative when surprised.</p><br><br><h2>(water) Water (Efficiency, Flexibility, Friendliness, Environmental awareness)</h2><p><strong>(op) :</strong> On an Initiative check, assess the qualities of all terrain in the scene (see page 267).</p><br><br><h2>(void) Void (Instinct, Inscrutability, Mystery, the Supernatural)</h2><p><strong>(op) :</strong> On an Initiative check, sense if there is an Otherworldly being in the scene.</p>","img":"systems/l5r5e/assets/icons/social.svg","folder":null,"sort":100001,"permission":{"default":0},"flags":{}}
|
||||
{"_id":"L5RCoreOpp000004","name":"Skill Use","content":"<blockquote>Core Rulebook p.329</blockquote><br><h2>(air) Air (Precision, Stealth, Subtlety, Trickery, Detail, Emotion)</h2><ul><li><strong>(op) Artisan :</strong> If you succeed, add the Resplendent or Subtle quality to an item you are refining.</li><li><strong>(op) Scholar :</strong> Learn a something about a character who created or used the item you are studying (such as one of their advantages or disadvantages of the GM’s choice that affected their creation or use of the item).</li><li><strong>(op) Social :</strong> Learn if the honor, glory, or status attribute of a character in the scene is higher, lower, or equal to yours.</li><li><strong>(op) Trade :</strong> Convince a buyer to pay an additional 10% for an item you are selling.</li></ul><br><br><h2>(earth) Earth (Caution, Calm, Thoroughness, Memory, Defense)</h2><ul><li><strong>(op) Artisan :</strong> If you succeed, add the Durable quality to an item that you are restoring.</li><li><strong>(op) Scholar :</strong> Remember a place where you can research or study the topic you were attempting to recall.</li><li><strong>(op) Social :</strong> Increase the TN of the next Social check another character makes before the end of the scene by 1.</li><li><strong>(op) Trade :</strong> Reduce the TN of the next check another character makes with the same skill before the end of the scene by 1.</li></ul><br><br><h2>(fire) Fire (Creativity, Intimidation, Attention, Motivation, Insight, Absence)</h2><ul><li><strong>(op) Artisan :</strong> If you succeed, make one additional copy of the item you are creating.</li><li><strong>(op) Scholar :</strong> Extrapolate the motivations or desires of another character in the scene or wider situation.</li><li><strong>(op) Social :</strong> Reduce the TN of the next Social check another character makes before the end of the scene by 1.</li><li><strong>(op) Trade :</strong> Unusual inspiration strikes; add a kept Ring Dice set to an (op) result to the next check you make with another skill.</li></ul><br><br><h2>(water) Water (Efficiency, Flexibility, Friendliness, Environmental awareness)</h2><ul><li><strong>(op) Artisan :</strong> Add a kept Ring Dice set to an (op) result to the next Artisan skill check you make before the end of the game session.</li><li><strong>(op) Scholar :</strong> Spot a unique or identifying quality, aspect, or ability of something that you are identifying.</li><li><strong>(op) Social :</strong> Add a kept Ring Dice set to an (op) result to your next Social check before the end of the scene.</li><li><strong>(op) Trade :</strong> Convince a seller to give you an additional 10% discount for an item you are buying.</li></ul><br><br><h2>(void) Void (Instinct, Inscrutability, Mystery, the Supernatural)</h2><ul><li><strong>(op) Artisan :</strong> Reduce the TN of the next check you make using the item you are attuning yourself to by 1.</li><li><strong>(op) Scholar :</strong> Intuit whether you can learn anything of value from your current course of inquiry.</li><li><strong>(op) Social :</strong> Discern the objective of another character in the scene.</li><li><strong>(op) Trade :</strong> Reduce any effect you have on your environment (and physical traces of your efforts) to a minimum.</li></ul>","img":"systems/l5r5e/assets/icons/social.svg","folder":null,"sort":100001,"permission":{"default":0},"flags":{}}
|
||||
{"_id":"L5RCoreOpp000005","name":"During Downtime Use","content":"<blockquote>Core Rulebook p.329</blockquote><br><h2>(air) Air (Precision, Stealth, Subtlety, Trickery, Detail, Emotion)</h2><ul><li><strong>(op)+ :</strong> Learn a detail about one person in your company (such as an advantage or disadvantage of their choice) per (op) spent this way. You can learn only one detail about each person this way in a single downtime scene.</li><li><strong>(op)(op) :</strong> Perform your downtime activity without letting one or more others of your choice know that you did.</li></ul><br><br><h2>(earth) Earth (Caution, Calm, Thoroughness, Memory, Defense)</h2><ul><li><strong>(op)+ :</strong> Another character in your company may remove 1 strife or fatigue per (op) spent this way.</li><li><strong>(op)(op) :</strong> Memorize a small but vital detail from to your activity; you can recall it later without a check.</li></ul><br><br><h2>(fire) Fire (Creativity, Intimidation, Attention, Motivation, Insight, Absence)</h2><ul><li><strong>(op)+ :</strong> Assist one other character per (op) spent this way with their next downtime activity check this session.</li><li><strong>(op)(op) :</strong> Energize another character in your company with your efforts; they may perform 1 additional downtime action this downtime (to a maximum of 2).</li></ul><br><br><h2>(water) Water (Efficiency, Flexibility, Friendliness, Environmental awareness)</h2><ul><li><strong>(op)+ :</strong> Remove 1 strife or fatigue per (op) spent this way.</li><li><strong>(op)(op) :</strong> Make a new friend while undertaking your downtime activity.</li></ul><br><br><h2>(void) Void (Instinct, Inscrutability, Mystery, the Supernatural)</h2><ul><li><strong>(op)+ :</strong> Reserve 1 dropped die from your check, to a maximum of your ranks in the skill you used. Add that die to your next check with the same skill as a kept die instead of rolling it.</li><li><strong>(op)(op) :</strong> Have a brief premonition of a possible future event while undertaking your downtime activity.</li></ul>","img":"systems/l5r5e/assets/icons/social.svg","folder":null,"sort":100001,"permission":{"default":0},"flags":{}}
|
||||
{"_id":"L5RCoreOpp000006","name":"Invocations Use","content":"<blockquote>Core Rulebook p.191</blockquote><br><h2>(air) Air (Precision, Stealth, Subtlety, Trickery, Detail, Emotion)</h2><ul><li><strong>(op)(op)+ :</strong> Choose one additional target per (op)(op) spent this way.</li><li><strong>(op)+ :</strong> Treat the maximum range of this technique as 1 higher per (op) spent this way.</li><li><strong>(op) :</strong> Reduce the TN of the next Movement action check you make by 1. This effect persists until the end of your next turn.</li><li><strong>(op)(op)+ :</strong> If this technique can target characters other than you, choose additional target per (op)(op) spent this way..</li><li><strong>(op)(op)+ :</strong> If this technique targets all characters in an area, choose 1 character in range to exclude as a target per <strong>(op)(op)</strong> spent this way.</li></ul><br><br><h2>(earth) Earth (Caution, Calm, Thoroughness, Memory, Defense)</h2><ul><li><strong>(op) :</strong> Increase your physical resistance by 1. This effect persists until the end of the beginning of your next turn. </li><li><strong>(op)+ :</strong> If this technique can target characters other than you, choose additional target per (op) spent this way.</li><li><strong>(op)+ :</strong> Treat the maximum range of this technique as 1 higher per (op) spent this way.</li><li><strong>(op) :</strong> This effect inflicts physical damage instead of supernatural damage.</li><li><strong>(op) :</strong> The damage inflicted by this technique has the Sacred quality (see page 241).</li></ul><br><br><h2>(fire) Fire (Creativity, Intimidation, Attention, Motivation, Insight, Absence)</h2><ul><li><strong>(op)+ :</strong> Treat the maximum range of this technique as 1 higher per (op) spent this way</li><li><strong>(op)+ :</strong> If this technique can target characters other than you, choose additional target per (op) spent this way</li><li><strong>(op) :</strong> Reduce the TN of the next Attack action check you make by 1. This effect persists until the end of your next turn.</li><li><strong>(op)+ :</strong> Increase the TN of checks to resist this effect by 1 per (op) spent this way.</li><li><strong>(op)(op)+ :</strong> One target per (op)(op) spent this way must resist with a TN 3 Fitness check (Air 4, Water 1) or suffer the Burning condition.</li></ul><br><br><h2>(water) Water (Efficiency, Flexibility, Friendliness, Environmental awareness)</h2><ul><li><strong>(op) :</strong> Increase your supernatural resistance by 1 until the end of your next turn.</li><li><strong>(op)+ :</strong> If this technique can target characters other than you, choose additional target per (op) spent this way.</li><li><strong>(op)(op)+ :</strong> Treat the maximum or minimum range of this technique as 1 higher or lower per (op)(op) spent this way.</li><li><strong>(op)(op) :</strong> Remove 1 fatigue from the target or yourself.</li><li><strong>(op) : </strong>Reduce the TN of the next Support action check you make by 1. This effect persists until the end of your next turn.</li></ul>","img":"systems/l5r5e/assets/icons/social.svg","folder":null,"sort":100001,"permission":{"default":0},"flags":{}}
|
||||
{"_id":"L5RCoreOpp000007","name":"In Shadowlands Use","content":"<blockquote>Shadowlands p.130</blockquote><br><h2>(air) Air (Precision, Stealth, Subtlety, Trickery, Detail, Emotion)</h2><p><strong>(op)+ :</strong> You detect a subtle sign in your environment that lets you get your bearings, such as a stream that runs slightly less Tainted than the environment around it or the growths on the twisted trees that point toward the Festering Pit. This landmark helps guide you for one scene, plus one additional scene in the Shadowlands per (op) spent this way.</p><br><br><h2>(earth) Earth (Caution, Calm, Thoroughness, Memory, Defense)</h2><p><strong>(op)(op) :</strong> Your resolute nature steels you against the unstable environment of the Shadowlands. You count your vigilance as 1 higher the next time you seek to notice or avoid a hazardous situation or creature.</p><br><br><h2>(fire) Fire (Creativity, Intimidation, Attention, Motivation, Insight, Absence)</h2><p><strong>(op)+ :</strong> You spur your comrades on with pleasing encouragement or biting criticism. One other character in the scene per (op) you spend this way reduces their next TN to resist physical hardship or the influence of the Shadowlands by 1.</p><br><br><h2>(water) Water (Efficiency, Flexibility, Friendliness, Environmental awareness)</h2><p><strong>(op)(op)+ :</strong> By luck or careful scavenging, you are able to find a useful item not yet corrupted by the Shadowlands. Such items have a maximum rarity of 3, plus 1 for each additional (op)(op) spent. The GM should modify this depending on the exact nature of the item as well.</p><br><br><h2>(void) Void (Instinct, Inscrutability, Mystery, the Supernatural)</h2><p><strong>(op)(op)(op) :</strong> Though Jigoku’s power weighs heavily upon them, you are undeterred. By drawing on memories of the un-Tainted lands north of the wall, you can keep yourself focused and ignore all (st) results on your next check.</p>","img":"systems/l5r5e/assets/icons/social.svg","folder":null,"sort":100001,"permission":{"default":0},"flags":{}}
|
||||
{"_id":"L5RCoreOpp000008","name":"Against Tainted Threats Use","content":"<blockquote>Shadowlands p.131</blockquote><br><h2>(air) Air (Precision, Stealth, Subtlety, Trickery, Detail, Emotion)</h2><p><strong>(op)(op) :</strong> Confronted with the horrors of the Taint, you remain alert and able to discern a weakness in your foe. Reduce the TN of your next check made to oppose or harm a Tainted character by 1, as you examine the threat before you and formulate an appropriate response.</p><br><br><h2>(earth) Earth (Caution, Calm, Thoroughness, Memory, Defense)</h2><p><strong>(op)(op) :</strong> You are able to weather such terrible things as the revelation of a secret mahō-tsukai or the summoning of an oni. The next time you suffer strife this scene, you suffer 2 fewer strife, to a minimum of 0.</p><br><br><h2>(fire) Fire (Creativity, Intimidation, Attention, Motivation, Insight, Absence)</h2><p><strong>(op)+ :</strong> The righteous fury you display can cow even the most terrible of Tainted fiends. Each Tainted being in the scene gains 1 strife, plus 1 additional strife for every spent. If you are unaware if another character is Tainted, the GM should record this strife secretly.</p><br><br><h2>(water) Water (Efficiency, Flexibility, Friendliness, Environmental awareness)</h2><p><strong>(op) :</strong> You adapt yourself to better fight the corrupted power before you. Once before the end of current the game session you may either reduce the TN of a check to resist a Tainted power, such as a mahō technique, assailing you by 1 or increase the TN of another character’s check to target or affect you with such a power by 1.</p><br><br><h2>(void) Void (Instinct, Inscrutability, Mystery, the Supernatural)</h2><p><strong>(op)(op)</strong> or <strong>(op)(op)(op) : </strong>If the character spends (op)(op), they discern that the kami have fled, as well as the type of disturbance (mahō, kansen, or similar).</p><br><p>If the character spends <strong>(op)(op)(op)</strong>, they can also determine the total combat (bushi) threat rating of all Tainted beings that caused the kami to flee</p>","img":"systems/l5r5e/assets/icons/social.svg","folder":null,"sort":100001,"permission":{"default":0},"flags":{}}
|
||||
{"_id":"L5RCoreOpp000009","name":"While Tainted Use","content":"<blockquote>Shadowlands p.131</blockquote><br><h2>(air) Air (Precision, Stealth, Subtlety, Trickery, Detail, Emotion)</h2><p><strong>(op)(op) :</strong> Your newfound cunning is able to redirect attention away from you, potentially concealing your Tainted nature or letting you avoid scrutiny. The TN of the next check made to scrutinize you or your actions is increased by 1.</p><br><br><h2>(earth) Earth (Caution, Calm, Thoroughness, Memory, Defense)</h2><p><strong>(op)(op) :</strong> No mortal concern can slow you, as you already endure worse than most can even imagine. For the rest of the scene, whenever you suffer fatigue reduce the value suffered by 2, to a minimum of 0.</p><br><br><h2>(fire) Fire (Creativity, Intimidation, Attention, Motivation, Insight, Absence)</h2><p><strong>(op)(op) :</strong> The furious power of Jigoku flows through you, granting you unnatural might. Add 1 kept (ring) showing a (st) result to the next Martial Arts check you make. This effect persists until the start of their next turn.</p><br><br><h2>(water) Water (Efficiency, Flexibility, Friendliness, Environmental awareness)</h2><p><strong>(op)(op) :</strong> You briefly become fluid in mind or body, shaking off disorientation or even injury. You remove one of the following conditions: Dazed, Disoriented, Immobilized, Intoxicated, Lightly Wounded, or Prone.</p><br><br><h2>(void) Void (Instinct, Inscrutability, Mystery, the Supernatural)</h2><p><strong>(op)+ :</strong> The unnatural insights of the kansen voice themselves wordlessly to you, granting knowledge you could not possibly have known otherwise. You learn something relevant to the current situation, appropriate in scope to the number of (op) spent. For each (op) spent in this way, you receive 1 strife due to the unnatural means by which you gained this knowledge.</p>","img":"systems/l5r5e/assets/icons/social.svg","folder":null,"sort":100001,"permission":{"default":0},"flags":{}}
|
||||
{"_id":"L5RCoreOpp000010","name":"Negotiations Use","content":"<blockquote>Court of Stones p.132</blockquote><br><h2>(air) Air (Precision, Stealth, Subtlety, Trickery, Detail, Emotion)</h2><p><strong>(op)(op)+ :</strong> Your careful verbal trap ensnares someone in a position in which they must either give up ground or give you a boon. They must offer you a minor concession unrelated to your current social objective unless they give up 1 momentum point per (op)(op) spent this way.</p><br><br><h2>(earth) Earth (Caution, Calm, Thoroughness, Memory, Defense)</h2><p><strong>(op)(op)(op) :</strong> Your uncompromising dedication to your bottom line stalls the conversation. Choose a character in the scene: that character cannot gain momentum points toward any social objective until the end of your next turn.</p><br><br><h2>(fire) Fire (Creativity, Intimidation, Attention, Motivation, Insight, Absence)</h2><p><strong>(op)(op) :</strong> You set someone else on the defense with fast-paced questions and demands. Choose a demand or statement another character in the scene has made. Their player (or the GM, for NPCs) must tell you any hidden motivations behind that demand or statement.</p><br><br><h2>(water) Water (Efficiency, Flexibility, Friendliness, Environmental awareness)</h2><p><strong>(op)(op) :</strong> You break the tension with a well-timed joke or clever comment. You may ask one personal question of a character in the scene with a different social objective. The question must be unrelated to the subject of the negotiations. If the character answers honestly, they gain 1 momentum point toward their current objective and may ask you a personal question in turn. If they do, you gain 1 momentum point toward your current objective.</p><br><br><h2>(void) Void (Instinct, Inscrutability, Mystery, the Supernatural)</h2><p><strong>(op)(op)(op) :</strong> You briefly shake someone’s conviction with a deep insight into their character or circumstances, causing them to speak without certainty. Until the end of your next turn, any momentum points they score are added to your current social objective instead of to their own.</p>","img":"systems/l5r5e/assets/icons/social.svg","folder":null,"sort":100001,"permission":{"default":0},"flags":{}}
|
||||
{"_id":"L5RCoreOpp000011","name":"Romance Use","content":"<blockquote>Court of Stones p.132</blockquote><br><h2>(air) Air (Precision, Stealth, Subtlety, Trickery, Detail, Emotion)</h2><p><strong>(op)(op) :</strong> The conversation turns to mutual friends or acquaintances. Name a character you and your intended both know. They must tell you what they think of that character, revealing one of that person’s advantages or disadvantages.</p><br><br><h2>(earth) Earth (Caution, Calm, Thoroughness, Memory, Defense)</h2><p><strong>(op)(op) :</strong> An offhand comment reveals that you and your intended share some common ground: an odd hobby, a favorite actor, or a core belief. Make three suggestions to your intended’s player; they must tell you which one it is. You and your intended may each remove 2 strife.</p><br><br><h2>(fire) Fire (Creativity, Intimidation, Attention, Motivation, Insight, Absence)</h2><p><strong>(op)(op) :</strong> A detail of your appearance catches your intended’s interest. Their player must tell you which of your physical attributes they find most captivating. You and your intended each receive 1 strife, and you each reduce the TN of your next Social skill check by 1.</p><br><br><h2>(water) Water (Efficiency, Flexibility, Friendliness, Environmental awareness)</h2><p><strong>(op)(op) :</strong> Your interaction is pleasant enough that your intended, not you, suggests another meeting within the next day or two. They offer you several options for the next time you and they spend personal time together; choose whichever you like the best, and don’t be late.</p><br><br><h2>(void) Void (Instinct, Inscrutability, Mystery, the Supernatural)</h2><p><strong>(op)(op)(op) :</strong> Due to circumstances beyond your control—a gust of wind or an earth tremor, perhaps—you and your intended find yourselves unexpectedly aware of one another! Your intended decides what kind of contact it was, from a fateful meeting of the eyes to a brush of your hands against one another as you both reach for a dropped scroll. They also decide how they react, although they will not blame you for anything untoward (after all, it wasn’t your fault).</p>","img":"systems/l5r5e/assets/icons/social.svg","folder":null,"sort":100001,"permission":{"default":0},"flags":{}}
|
||||
{"_id":"L5RCoreOpp000012","name":"Espionage Use","content":"<blockquote>Court of Stones p.133</blockquote><br><h2>(air) Air (Precision, Stealth, Subtlety, Trickery, Detail, Emotion)</h2><p><strong>(op)+ :</strong> Your subtlety allows you to step out of sight of people, whether by hiding in a crowd or within convenient terrain. Designate a number of Minion NPCs equal to (op) spent this way or a single Adversary NPC with vigilance lower than or equal to spent this way. Those characters lose sight of you (and do not notice your absence unless actively looking for you).</p><br><br><h2>(earth) Earth (Caution, Calm, Thoroughness, Memory, Defense)</h2><p><strong>(op)+ :</strong> You locate an excellent hiding place, either a place where no one questions your cover identity or a concealed location no one checks. While hiding in this location, you reduce the TN of your checks to avoid notice by (op) spent this way.</p><br><br><h2>(fire) Fire (Creativity, Intimidation, Attention, Motivation, Insight, Absence)</h2><p><strong>(op)(op)(op) :</strong> A stray motion of yours catches the attention of a person or creature—but unexpectedly, they are sympathetic or helpful to you when they notice you. Who are they, and how do they offer to help? Do they think you are someone you’re not?</p><br><br><h2>(water) Water (Efficiency, Flexibility, Friendliness, Environmental awareness)</h2><p><strong>(op) :</strong> You observe a clue or hint that indicates to you that information about your target or goal might also be found elsewhere. The GM reveals another viable avenue for espionage on the same subject, unrelated to your current operation.</p><br><br><h2>(Void (Instinct, Inscrutability, Mystery, the Supernatural)</h2><p><strong>(op) :</strong> Your understanding of stealth clues you in on the possibility that you are not the first spy to pass this way. The GM reveals whether another spy has traversed your location and, if so, what trace they unwittingly left behind.</p>","img":"systems/l5r5e/assets/icons/social.svg","folder":null,"sort":100001,"permission":{"default":0},"flags":{}}
|
||||
{"_id":"L5RCoreOpp000013","name":"Mass Battles Use","content":"<blockquote>Fields of Victory p.138</blockquote><br><h2>(air) Air (Precision, Stealth, Subtlety, Trickery, Detail, Emotion)</h2><ul><li><strong>(op)+ :</strong> Choose an allied leader other than yourself. Reduce the TN of that leader’s next check for a Scheme action by 1 per (op) spent this way. This persists until the end of the scene.</li><li><strong>(op)(op) :</strong> Choose a leader in a fortification. That leader’s cohort loses the benefits of the fortification until the beginning of your next turn.</li></ul><br><br><h2>(earth) Earth (Caution, Calm, Thoroughness, Memory, Defense)</h2><ul><li><strong>(op)+ :</strong> Remove 1 panic from your army per (op) spent this way.</li><li><strong>(op)(op) :</strong> Choose an allied leader other than yourself. That leader’s cohort cannot be targeted by Attack actions until the beginning of your next turn.</li></ul><br><br><h2>(fire) Fire (Creativity, Intimidation, Attention, Motivation, Insight, Absence)</h2><ul><li><strong>(op)+ :</strong> The enemy army suffers 1 panic per (op) spent this way.</li><li><strong>(op)+ :</strong> When performing an Attack action against the cohort of an enemy leader with vigilance lower than or equal to (op) spent this way, after its effects are resolved, inflict a critical strike with severity equal to the deadliness of one of your weapons on that leader.</li></ul><br><br><h2>(water) Water (Efficiency, Flexibility, Friendliness, Environmental awareness)</h2><ul><li><strong>(op)+ :</strong> Choose an allied leader other than yourself. Reduce the TN of that leader’s next check for a Movement action by 1 per (op) spent this way.</li><li><strong>(op)(op) :</strong> Choose an enemy leader. That leader’s cohort cannot perform Movement actions until the beginning of your next turn.</li></ul><br><br><h2>(void) Void (Instinct, Inscrutability, Mystery, the Supernatural)</h2><ul><li><strong>(op)+ :</strong> Your army and each enemy army suffer 2 attrition per (op) spent this way. </li><li><strong>(op)(op) :</strong> When you perform a Support action, after its effects are resolved, you may immediately perform a Challenge action targeting an enemy cohort’s leader.</li><li><strong>(op)(op) :</strong> Increase the army’s strength and discipline by 3. This persists until the end of the scene.</li></ul>","img":"systems/l5r5e/assets/icons/social.svg","folder":null,"sort":100001,"permission":{"default":0},"flags":{}}
|
||||
{"_id":"L5RCoreOpp000014","name":"Contested Territory Use","content":"<blockquote>Fields of Victory p.139</blockquote><br><h2>(air) Air (Precision, Stealth, Subtlety, Trickery, Detail, Emotion)</h2><ul><li><strong>(op) :</strong> You discern subtle signs of incoming trouble and can take steps to avoid it. The next time you enter a conflict scene this session, you may add a kept die showing (op) to your Initiative check.</li><li><strong>(op)(op) or (op)(op)(op) :</strong> You create a clever disguise or ruse to get the jump on potential foes. The next time you enter a conflict scene this game session, after Initiative has been determined, choose one character in the scene. On that character’s next check, they must reroll all results containing (su) symbols.</li></ul><br><br><h2>(earth) Earth (Caution, Calm, Thoroughness, Memory, Defense)</h2><ul><li><strong>(op) :</strong> Not even the chaos of war or the strangeness of foreign lands can faze you. Reduce the TN of the next check you make to deal with an unfamiliar situation or opponent by 1.</li><li><strong>(op) :</strong> You hold fast to the thought of home while in distant locales and dangerous situations. You may remove 1 strife for each condition you are currently suffering.</li></ul><br><br><h2>(fire) Fire (Creativity, Intimidation, Attention, Motivation, Insight, Absence)</h2><ul><li><strong>(op)(op) :</strong> A clever theory fills in the gaps in your knowledge. You may immediately attempt a Scholar skill check of your choice to learn about your current situation or an NPC who is present, lowering the TN by 1 (to a minimum of 1).</li><li><strong>(op)+ :</strong> As you incite your allies to great fervor, any number of them may remove 1 strife for each (op) you spend. For each character affected, you receive 1 strife as you let your passion overtake you.</li></ul><br><br><h2>(water) Water (Efficiency, Flexibility, Friendliness, Environmental awareness)</h2><ul><li><strong>(op)(op)+ :</strong> Your charm wins over even enemies. For each (op) (op) spent, one hostile character within the scene becomes friendlier toward you. What exactly that means depends on context, it may defuse an imminent conflict, or encourage your foes to try to take you alive, but it won’t stop bloodshed altogether once blades have been drawn.</li><li><strong>(op)(op) :</strong> With cunning, you flow smoothly from one conclusion to the next. You learn of one key feature, fortification, or terrain quality present in the surrounding area, and whether or not enemies have passed through recently.</li></ul><br><br><h2>(void) Void (Instinct, Inscrutability, Mystery, the Supernatural)</h2><ul><li><strong>(op)+ :</strong> In all things, one can find balance, even in a duel of words or blades. You and a hostile character of the GM’s choice in the same scene each recover 2 strife for each (op) spent in this way.</li><li><strong>(op)(op) :</strong> You find serenity amid adversity. You discover a neutral meeting place, protective legal precedent, or similar safe haven applicable to your situation.</li></ul>","img":"systems/l5r5e/assets/icons/social.svg","folder":null,"sort":100001,"permission":{"default":0},"flags":{}}
|
||||
@@ -1,11 +0,0 @@
|
||||
{"_id":"L5RCoreTer000001","name":"Dangerous","content":"<blockquote>Core Rulebook p.267</blockquote>","img":"icons/svg/trap.svg","folder":null,"sort":100001,"permission":{"default":0},"flags":{}}
|
||||
{"_id":"L5RCoreTer000002","name":"Defiled","content":"<blockquote>Core Rulebook p.267</blockquote>","img":"icons/svg/ruins.svg","folder":null,"sort":100001,"permission":{"default":0},"flags":{}}
|
||||
{"_id":"L5RCoreTer000003","name":"Entangling","content":"<blockquote>Core Rulebook p.267</blockquote>","img":"icons/svg/lightning.svg","folder":null,"sort":100001,"permission":{"default":0},"flags":{}}
|
||||
{"_id":"L5RCoreTer000004","name":"Hallowed (One or More Elements)","content":"<blockquote>Core Rulebook p.267</blockquote>","img":"icons/svg/oak.svg","folder":null,"sort":100001,"permission":{"default":0},"flags":{}}
|
||||
{"_id":"L5RCoreTer000005","name":"Imbalanced (One or More Elements)","content":"<blockquote>Core Rulebook p.267</blockquote>","img":"icons/svg/stoned.svg","folder":null,"sort":100001,"permission":{"default":0},"flags":{}}
|
||||
{"_id":"L5RCoreTer000006","name":"Obscuring","content":"<blockquote>Core Rulebook p.267</blockquote>","img":"icons/svg/cowled.svg","folder":null,"sort":100001,"permission":{"default":0},"flags":{}}
|
||||
{"_id":"L5RCoreTer000007","name":"Confining","content":"<blockquote>Fields of Victory p.122</blockquote>","img":"icons/svg/stone-path.svg","folder":null,"sort":100001,"permission":{"default":0},"flags":{}}
|
||||
{"_id":"L5RCoreTer000008","name":"Elevated","content":"<blockquote>Fields of Victory p.122</blockquote>","img":"icons/svg/up.svg","folder":null,"sort":100001,"permission":{"default":0},"flags":{}}
|
||||
{"_id":"L5RCoreTer000009","name":"Open","content":"<blockquote>Fields of Victory p.122</blockquote>","img":"icons/svg/mountain.svg","folder":null,"sort":100001,"permission":{"default":0},"flags":{}}
|
||||
{"_id":"L5RCoreTer000010","name":"Recessed","content":"<blockquote>Fields of Victory p.122</blockquote>","img":"icons/svg/down.svg","folder":null,"sort":100001,"permission":{"default":0},"flags":{}}
|
||||
{"_id":"L5RCoreTer000011","name":"Imbalanced (One or More Elements) Variant","content":"<blockquote>Writ of the Wild p.139</blockquote>","img":"icons/svg/stoned.svg","folder":null,"sort":100001,"permission":{"default":0},"flags":{}}
|
||||
@@ -1,9 +0,0 @@
|
||||
{"_id":"akSnaBrDnz8ZAVHR","name":"Draw 5 Japanese names (village)","type":"script","author":"Rv52pj6itbOX14wX","img":"icons/environment/settlement/ldoge.webp","scope":"global","command":"game.l5r5e.HelpersL5r5e.drawManyFromPack(\"l5r5e.core-name-tables\", \"L5RCoreTblJpNamV\", 5);","folder":null,"sort":0,"permission":{"default":0},"flags":{}}
|
||||
{"_id":"avRx8SlktnoCzQQu","name":"Draw 5 Ivory Kingdoms names","type":"script","author":"Rv52pj6itbOX14wX","img":"systems/l5r5e/assets/icons/actors/character.svg","scope":"global","command":"game.l5r5e.HelpersL5r5e.drawManyFromPack(\"l5r5e.core-name-tables\", \"aTVXI5Y5t7cBfyUE\", 5);","folder":null,"sort":0,"permission":{"default":0},"flags":{}}
|
||||
{"_id":"bm7cokBEhIvelmYt","name":"Draw 5 Qamarist names","type":"script","author":"Rv52pj6itbOX14wX","img":"systems/l5r5e/assets/icons/actors/character.svg","scope":"global","command":"game.l5r5e.HelpersL5r5e.drawManyFromPack(\"l5r5e.core-name-tables\", \"bXaEmt72GLUeoyzz\", 5);","folder":null,"sort":0,"permission":{"default":0},"flags":{}}
|
||||
{"_id":"cHV4W2eAk96bj1MC","name":"Draw 5 Rokugani names","type":"script","author":"Rv52pj6itbOX14wX","img":"systems/l5r5e/assets/icons/actors/character.svg","scope":"global","command":"game.l5r5e.HelpersL5r5e.drawManyFromPack(\"l5r5e.core-name-tables\", \"cgjfjbHmQuNV668k\", 5);","folder":null,"sort":0,"permission":{"default":0},"flags":{}}
|
||||
{"_id":"dz61B4h3iJwOC0Ob","name":"Draw 5 Ujik names","type":"script","author":"Rv52pj6itbOX14wX","img":"systems/l5r5e/assets/icons/actors/character.svg","scope":"global","command":"game.l5r5e.HelpersL5r5e.drawManyFromPack(\"l5r5e.core-name-tables\", \"d9lU98NE8G2YuN48\", 5);","folder":null,"sort":0,"permission":{"default":0},"flags":{}}
|
||||
{"_id":"ed0HRLOWSKm6YTUS","name":"Draw 5 Japanese names (male)","type":"script","author":"Rv52pj6itbOX14wX","img":"systems/l5r5e/assets/icons/actors/traditional-japanese-man.svg","scope":"global","command":"game.l5r5e.HelpersL5r5e.drawManyFromPack(\"l5r5e.core-name-tables\", \"L5RCoreTblJpNamM\", 5);","folder":null,"sort":0,"permission":{"default":0},"flags":{}}
|
||||
{"_id":"fk2naBrDnz8ZAVHR","name":"Draw 5 Japanese names (female)","type":"script","author":"Rv52pj6itbOX14wX","img":"systems/l5r5e/assets/icons/actors/traditional-japanese-woman.svg","scope":"global","command":"game.l5r5e.HelpersL5r5e.drawManyFromPack(\"l5r5e.core-name-tables\", \"L5RCoreTblJpNamF\", 5);","folder":null,"sort":0,"permission":{"default":0},"flags":{}}
|
||||
{"_id":"ggs1eiqkfVWlm5JM","name":"Draw Names Dialog","type":"script","author":"Rv52pj6itbOX14wX","img":"systems/l5r5e/assets/icons/actors/army.svg","scope":"global","command":"const pack = \"l5r5e.core-name-tables\";\nconst comp = await game.packs.get(pack);\nif (!comp) { console.log(`L5R5E | Macro | Pack not found[${pack}]`); return; }\nawait comp.getDocuments();\n\nlet radioTablesHtml = \"\";\ncomp.index.forEach(obj => { radioTablesHtml += `<label><input type=\"radio\" id=\"${obj._id}\" name=\"tableName\" value=\"${obj.name}\" ${radioTablesHtml === \"\" ? 'checked' : ''}> ${obj.name}</label>`; });\n\nnew Dialog({\n title: \"L5R5E Draw Names\",\n content: `\n <form class=\"noflex\" autocomplete=\"off\">\n <div class=\"form-group\">\n <label>${game.i18n.localize('DOCUMENT.RollTable')}:</label>\n <div class=\"form-fields\" style=\"flex-direction: column;align-items: flex-start\">\n ${radioTablesHtml}\n </div>\n </div>\n <hr>\n <div class=\"form-group\">\n <label><i class=\"d6\"></i> ${game.i18n.localize('l5r5e.sheets.quantity')}:</label>\n <div class=\"form-fields\">\n <input type=\"number\" name=\"drawNumber\" value=\"5\" min=\"0\" max=\"99\"/>\n </div>\n </div>\n </form>\n `,\n buttons: {\n no: {\n icon: \"<i class='fas fa-times'></i>\",\n label: game.i18n.localize('Cancel')\n },\n yes: {\n icon: \"<i class='fas fa-check'></i>\",\n label: game.i18n.localize('TABLE.Roll'),\n callback: (html) => {\n const tableName = html.find('input[name=\"tableName\"]:checked')[0]?.value || null;\n const drawNumber = html.find('input[name=\"drawNumber\"]')[0]?.value || null;\n if (!tableName || !drawNumber || drawNumber < 1) {return;}\n game.l5r5e.HelpersL5r5e.drawManyFromPack(pack, tableName, drawNumber);\n }\n },\n },\n default: \"no\"\n}).render(true);","folder":null,"sort":0,"permission":{"default":0},"flags":{}}
|
||||
{"_id":"hpfDGUS48dA2pkUB","name":"Open Character Sheet (linked actor)","type":"script","author":"Rv52pj6itbOX14wX","img":"systems/l5r5e/assets/icons/actors/character.svg","scope":"global","command":"game.user.character?.sheet.render(true);","folder":null,"sort":0,"permission":{"default":0},"flags":{}}
|
||||
@@ -1,85 +0,0 @@
|
||||
{"_id":"L5RCoreAdv000001","name":"Benten’s Curse","permission":{"default":0},"type":"peculiarity","data":{"in_curriculum":false,"xp_used":0,"rank":0,"bought_at_rank":0,"ring":"air","peculiarity_type":"adversity","types":"Interpersonal, Spiritual","description":"","source_reference":{"source":"core_rulebook","page":"116"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/peculiarity.svg","effects":[]}
|
||||
{"_id":"L5RCoreAdv000002","name":"Bishamon’s Curse","permission":{"default":0},"type":"peculiarity","data":{"in_curriculum":false,"xp_used":0,"rank":0,"bought_at_rank":0,"ring":"water","peculiarity_type":"adversity","types":"Physical, Spiritual","description":"","source_reference":{"source":"core_rulebook","page":"117"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/peculiarity.svg","effects":[]}
|
||||
{"_id":"L5RCoreAdv000003","name":"Bitter Betrothal","permission":{"default":0},"type":"peculiarity","data":{"in_curriculum":false,"xp_used":0,"rank":0,"bought_at_rank":0,"ring":"water","peculiarity_type":"adversity","types":"Interpersonal","description":"","source_reference":{"source":"core_rulebook","page":"117"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/peculiarity.svg","effects":[]}
|
||||
{"_id":"L5RCoreAdv000004","name":"Blackmailed by [Character’s Name]","permission":{"default":0},"type":"peculiarity","data":{"in_curriculum":false,"xp_used":0,"rank":0,"bought_at_rank":0,"ring":"air","peculiarity_type":"adversity","types":"Interpersonal","description":"","source_reference":{"source":"core_rulebook","page":"117"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/peculiarity.svg","effects":[]}
|
||||
{"_id":"L5RCoreAdv000005","name":"Blindness","permission":{"default":0},"type":"peculiarity","data":{"in_curriculum":false,"xp_used":0,"rank":0,"bought_at_rank":0,"ring":"water","peculiarity_type":"adversity","types":"Physical, Scar","description":"","source_reference":{"source":"core_rulebook","page":"118"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/peculiarity.svg","effects":[]}
|
||||
{"_id":"L5RCoreAdv000006","name":"Bluntness","permission":{"default":0},"type":"peculiarity","data":{"in_curriculum":false,"xp_used":0,"rank":0,"bought_at_rank":0,"ring":"air","peculiarity_type":"adversity","types":"Interpersonal","description":"","source_reference":{"source":"core_rulebook","page":"118"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/peculiarity.svg","effects":[]}
|
||||
{"_id":"L5RCoreAdv000007","name":"Clumsiness","permission":{"default":0},"type":"peculiarity","data":{"in_curriculum":false,"xp_used":0,"rank":0,"bought_at_rank":0,"ring":"fire","peculiarity_type":"adversity","types":"Physical","description":"","source_reference":{"source":"core_rulebook","page":"118"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/peculiarity.svg","effects":[]}
|
||||
{"_id":"L5RCoreAdv000008","name":"Cognitive Lapses","permission":{"default":0},"type":"peculiarity","data":{"in_curriculum":false,"xp_used":0,"rank":0,"bought_at_rank":0,"ring":"void","peculiarity_type":"adversity","types":"Mental, Scar","description":"","source_reference":{"source":"core_rulebook","page":"118"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/peculiarity.svg","effects":[]}
|
||||
{"_id":"L5RCoreAdv000009","name":"Daikoku’s Curse","permission":{"default":0},"type":"peculiarity","data":{"in_curriculum":false,"xp_used":0,"rank":0,"bought_at_rank":0,"ring":"water","peculiarity_type":"adversity","types":"Interpersonal","description":"","source_reference":{"source":"core_rulebook","page":"119"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/peculiarity.svg","effects":[]}
|
||||
{"_id":"L5RCoreAdv000010","name":"Damaged Heart or Organ","permission":{"default":0},"type":"peculiarity","data":{"in_curriculum":false,"xp_used":0,"rank":0,"bought_at_rank":0,"ring":"earth","peculiarity_type":"adversity","types":"Physical, Scar","description":"","source_reference":{"source":"core_rulebook","page":"119"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/peculiarity.svg","effects":[]}
|
||||
{"_id":"L5RCoreAdv000011","name":"Deafness","permission":{"default":0},"type":"peculiarity","data":{"in_curriculum":false,"xp_used":0,"rank":0,"bought_at_rank":0,"ring":"air","peculiarity_type":"adversity","types":"Physical, Scar","description":"","source_reference":{"source":"core_rulebook","page":"119"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/peculiarity.svg","effects":[]}
|
||||
{"_id":"L5RCoreAdv000012","name":"Discomfiting Countenance","permission":{"default":0},"type":"peculiarity","data":{"in_curriculum":false,"xp_used":0,"rank":0,"bought_at_rank":0,"ring":"air","peculiarity_type":"adversity","types":"Interpersonal, Physical","description":"","source_reference":{"source":"core_rulebook","page":"120"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/peculiarity.svg","effects":[]}
|
||||
{"_id":"L5RCoreAdv000013","name":"Disdain for Compassion","permission":{"default":0},"type":"peculiarity","data":{"in_curriculum":false,"xp_used":0,"rank":0,"bought_at_rank":0,"ring":"water","peculiarity_type":"adversity","types":"Flaw, Mental","description":"","source_reference":{"source":"core_rulebook","page":"120"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/peculiarity.svg","effects":[]}
|
||||
{"_id":"L5RCoreAdv000014","name":"Disdain for Courage","permission":{"default":0},"type":"peculiarity","data":{"in_curriculum":false,"xp_used":0,"rank":0,"bought_at_rank":0,"ring":"fire","peculiarity_type":"adversity","types":"Flaw, Mental","description":"","source_reference":{"source":"core_rulebook","page":"120"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/peculiarity.svg","effects":[]}
|
||||
{"_id":"L5RCoreAdv000015","name":"Disdain for Courtesy","permission":{"default":0},"type":"peculiarity","data":{"in_curriculum":false,"xp_used":0,"rank":0,"bought_at_rank":0,"ring":"air","peculiarity_type":"adversity","types":"Flaw, Mental","description":"","source_reference":{"source":"core_rulebook","page":"120"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/peculiarity.svg","effects":[]}
|
||||
{"_id":"L5RCoreAdv000016","name":"Disdain for Duty and Loyalty","permission":{"default":0},"type":"peculiarity","data":{"in_curriculum":false,"xp_used":0,"rank":0,"bought_at_rank":0,"ring":"earth","peculiarity_type":"adversity","types":"Flaw, Mental","description":"","source_reference":{"source":"core_rulebook","page":"120"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/peculiarity.svg","effects":[]}
|
||||
{"_id":"L5RCoreAdv000017","name":"Disdain for Honor","permission":{"default":0},"type":"peculiarity","data":{"in_curriculum":false,"xp_used":0,"rank":0,"bought_at_rank":0,"ring":"void","peculiarity_type":"adversity","types":"Flaw, Mental","description":"","source_reference":{"source":"core_rulebook","page":"120"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/peculiarity.svg","effects":[]}
|
||||
{"_id":"L5RCoreAdv000018","name":"Disdain for Righteousness","permission":{"default":0},"type":"peculiarity","data":{"in_curriculum":false,"xp_used":0,"rank":0,"bought_at_rank":0,"ring":"void","peculiarity_type":"adversity","types":"Flaw, Mental","description":"","source_reference":{"source":"core_rulebook","page":"120"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/peculiarity.svg","effects":[]}
|
||||
{"_id":"L5RCoreAdv000019","name":"Disdain for Sincerity","permission":{"default":0},"type":"peculiarity","data":{"in_curriculum":false,"xp_used":0,"rank":0,"bought_at_rank":0,"ring":"void","peculiarity_type":"adversity","types":"Flaw, Mental","description":"","source_reference":{"source":"core_rulebook","page":"120"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/peculiarity.svg","effects":[]}
|
||||
{"_id":"L5RCoreAdv000020","name":"Ebisu’s Curse","permission":{"default":0},"type":"peculiarity","data":{"in_curriculum":false,"xp_used":0,"rank":0,"bought_at_rank":0,"ring":"earth","peculiarity_type":"adversity","types":"Physical, Spiritual","description":"","source_reference":{"source":"core_rulebook","page":"120"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/peculiarity.svg","effects":[]}
|
||||
{"_id":"L5RCoreAdv000021","name":"Fractured Spine","permission":{"default":0},"type":"peculiarity","data":{"in_curriculum":false,"xp_used":0,"rank":0,"bought_at_rank":0,"ring":"earth","peculiarity_type":"adversity","types":"Physical, Scar","description":"","source_reference":{"source":"core_rulebook","page":"120"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/peculiarity.svg","effects":[]}
|
||||
{"_id":"L5RCoreAdv000022","name":"Fukurokujin’s Curse","permission":{"default":0},"type":"peculiarity","data":{"in_curriculum":false,"xp_used":0,"rank":0,"bought_at_rank":0,"ring":"fire","peculiarity_type":"adversity","types":"Mental, Spiritual","description":"","source_reference":{"source":"core_rulebook","page":"121"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/peculiarity.svg","effects":[]}
|
||||
{"_id":"L5RCoreAdv000023","name":"Gaijin Name, Culture, or Appearance","permission":{"default":0},"type":"peculiarity","data":{"in_curriculum":false,"xp_used":0,"rank":0,"bought_at_rank":0,"ring":"fire","peculiarity_type":"adversity","types":"Interpersonal (Culture) or Physical (Appearance), Interpersonal (Name), Mental","description":"","source_reference":{"source":"core_rulebook","page":"121"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/peculiarity.svg","effects":[]}
|
||||
{"_id":"L5RCoreAdv000024","name":"Haunting","permission":{"default":0},"type":"peculiarity","data":{"in_curriculum":false,"xp_used":0,"rank":0,"bought_at_rank":0,"ring":"void","peculiarity_type":"adversity","types":"Interpersonal, Spiritual","description":"","source_reference":{"source":"core_rulebook","page":"122"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/peculiarity.svg","effects":[]}
|
||||
{"_id":"L5RCoreAdv000025","name":"Incurable Illness","permission":{"default":0},"type":"peculiarity","data":{"in_curriculum":false,"xp_used":0,"rank":0,"bought_at_rank":0,"ring":"earth","peculiarity_type":"adversity","types":"Physical","description":"","source_reference":{"source":"core_rulebook","page":"122"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/peculiarity.svg","effects":[]}
|
||||
{"_id":"L5RCoreAdv000026","name":"Jurōjin’s Curse","permission":{"default":0},"type":"peculiarity","data":{"in_curriculum":false,"xp_used":0,"rank":0,"bought_at_rank":0,"ring":"void","peculiarity_type":"adversity","types":"Physical, Spiritual","description":"","source_reference":{"source":"core_rulebook","page":"123"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/peculiarity.svg","effects":[]}
|
||||
{"_id":"L5RCoreAdv000027","name":"Kisshōten’s Curse","permission":{"default":0},"type":"peculiarity","data":{"in_curriculum":false,"xp_used":0,"rank":0,"bought_at_rank":0,"ring":"water","peculiarity_type":"adversity","types":"Physical, Spiritual","description":"","source_reference":{"source":"core_rulebook","page":"123"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/peculiarity.svg","effects":[]}
|
||||
{"_id":"L5RCoreAdv000028","name":"Lost Arm or Lost Hand","permission":{"default":0},"type":"peculiarity","data":{"in_curriculum":false,"xp_used":0,"rank":0,"bought_at_rank":0,"ring":"fire","peculiarity_type":"adversity","types":"Physical, Scar","description":"","source_reference":{"source":"core_rulebook","page":"123"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/peculiarity.svg","effects":[]}
|
||||
{"_id":"L5RCoreAdv000029","name":"Lost Eye","permission":{"default":0},"type":"peculiarity","data":{"in_curriculum":false,"xp_used":0,"rank":0,"bought_at_rank":0,"ring":"water","peculiarity_type":"adversity","types":"Physical, Scar","description":"","source_reference":{"source":"core_rulebook","page":"124"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/peculiarity.svg","effects":[]}
|
||||
{"_id":"L5RCoreAdv000030","name":"Lost Fingers","permission":{"default":0},"type":"peculiarity","data":{"in_curriculum":false,"xp_used":0,"rank":0,"bought_at_rank":0,"ring":"fire","peculiarity_type":"adversity","types":"Physical, Scar","description":"","source_reference":{"source":"core_rulebook","page":"124"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/peculiarity.svg","effects":[]}
|
||||
{"_id":"L5RCoreAdv000031","name":"Lost Leg","permission":{"default":0},"type":"peculiarity","data":{"in_curriculum":false,"xp_used":0,"rank":0,"bought_at_rank":0,"ring":"water","peculiarity_type":"adversity","types":"Physical, Scar","description":"","source_reference":{"source":"core_rulebook","page":"124"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/peculiarity.svg","effects":[]}
|
||||
{"_id":"L5RCoreAdv000032","name":"Lost Memories","permission":{"default":0},"type":"peculiarity","data":{"in_curriculum":false,"xp_used":0,"rank":0,"bought_at_rank":0,"ring":"void","peculiarity_type":"adversity","types":"Mental, Scar","description":"","source_reference":{"source":"core_rulebook","page":"124"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/peculiarity.svg","effects":[]}
|
||||
{"_id":"L5RCoreAdv000033","name":"Maimed Arm","permission":{"default":0},"type":"peculiarity","data":{"in_curriculum":false,"xp_used":0,"rank":0,"bought_at_rank":0,"ring":"fire","peculiarity_type":"adversity","types":"Physical, Scar","description":"","source_reference":{"source":"core_rulebook","page":"125"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/peculiarity.svg","effects":[]}
|
||||
{"_id":"L5RCoreAdv000034","name":"Maimed Visage","permission":{"default":0},"type":"peculiarity","data":{"in_curriculum":false,"xp_used":0,"rank":0,"bought_at_rank":0,"ring":"air","peculiarity_type":"adversity","types":"Interpersonal, Physical, Scar","description":"","source_reference":{"source":"core_rulebook","page":"125"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/peculiarity.svg","effects":[]}
|
||||
{"_id":"L5RCoreAdv000035","name":"Momoku","permission":{"default":0},"type":"peculiarity","data":{"in_curriculum":false,"xp_used":0,"rank":0,"bought_at_rank":0,"ring":"void","peculiarity_type":"adversity","types":"Spiritual","description":"","source_reference":{"source":"core_rulebook","page":"126"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/peculiarity.svg","effects":[]}
|
||||
{"_id":"L5RCoreAdv000036","name":"Muteness","permission":{"default":0},"type":"peculiarity","data":{"in_curriculum":false,"xp_used":0,"rank":0,"bought_at_rank":0,"ring":"air","peculiarity_type":"adversity","types":"Interpersonal, Physical or Mental, Scar","description":"","source_reference":{"source":"core_rulebook","page":"126"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/peculiarity.svg","effects":[]}
|
||||
{"_id":"L5RCoreAdv000037","name":"Nerve Damage","permission":{"default":0},"type":"peculiarity","data":{"in_curriculum":false,"xp_used":0,"rank":0,"bought_at_rank":0,"ring":"air","peculiarity_type":"adversity","types":"Physical, Scar","description":"","source_reference":{"source":"core_rulebook","page":"126"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/peculiarity.svg","effects":[]}
|
||||
{"_id":"L5RCoreAdv000038","name":"Scorn of [One Group]","permission":{"default":0},"type":"peculiarity","data":{"in_curriculum":false,"xp_used":0,"rank":0,"bought_at_rank":0,"ring":"water","peculiarity_type":"adversity","types":"Interpersonal","description":"","source_reference":{"source":"core_rulebook","page":"127"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/peculiarity.svg","effects":[]}
|
||||
{"_id":"L5RCoreAdv000039","name":"Shadowlands Taint (Air)","permission":{"default":0},"type":"peculiarity","data":{"in_curriculum":false,"xp_used":0,"rank":0,"bought_at_rank":0,"ring":"air","peculiarity_type":"adversity","types":"Curse, Interpersonal, Spiritual","description":"","source_reference":{"source":"core_rulebook","page":"127"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/peculiarity.svg","effects":[]}
|
||||
{"_id":"L5RCoreAdv000040","name":"Shadowlands Taint (Earth)","permission":{"default":0},"type":"peculiarity","data":{"in_curriculum":false,"xp_used":0,"rank":0,"bought_at_rank":0,"ring":"earth","peculiarity_type":"adversity","types":"Curse, Physical, Spiritual","description":"","source_reference":{"source":"core_rulebook","page":"127"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/peculiarity.svg","effects":[]}
|
||||
{"_id":"L5RCoreAdv000041","name":"Shadowlands Taint (Fire)","permission":{"default":0},"type":"peculiarity","data":{"in_curriculum":false,"xp_used":0,"rank":0,"bought_at_rank":0,"ring":"fire","peculiarity_type":"adversity","types":"Curse, Mental, Spiritual","description":"","source_reference":{"source":"core_rulebook","page":"128"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/peculiarity.svg","effects":[]}
|
||||
{"_id":"L5RCoreAdv000042","name":"Shadowlands Taint (Void)","permission":{"default":0},"type":"peculiarity","data":{"in_curriculum":false,"xp_used":0,"rank":0,"bought_at_rank":0,"ring":"void","peculiarity_type":"adversity","types":"Curse, Spiritual","description":"","source_reference":{"source":"core_rulebook","page":"128"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/peculiarity.svg","effects":[]}
|
||||
{"_id":"L5RCoreAdv000043","name":"Shadowlands Taint (Water)","permission":{"default":0},"type":"peculiarity","data":{"in_curriculum":false,"xp_used":0,"rank":0,"bought_at_rank":0,"ring":"water","peculiarity_type":"adversity","types":"Curse, Physical, Spiritual","description":"","source_reference":{"source":"core_rulebook","page":"128"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/peculiarity.svg","effects":[]}
|
||||
{"_id":"L5RCoreAdv000044","name":"Sworn Enemy","permission":{"default":0},"type":"peculiarity","data":{"in_curriculum":false,"xp_used":0,"rank":0,"bought_at_rank":0,"ring":"earth","peculiarity_type":"adversity","types":"Interpersonal","description":"","source_reference":{"source":"core_rulebook","page":"129"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/peculiarity.svg","effects":[]}
|
||||
{"_id":"L5RCoreAdv000045","name":"Whispers of Cruelty","permission":{"default":0},"type":"peculiarity","data":{"in_curriculum":false,"xp_used":0,"rank":0,"bought_at_rank":0,"ring":"earth","peculiarity_type":"adversity","types":"Infamy, Interpersonal","description":"","source_reference":{"source":"core_rulebook","page":"129"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/peculiarity.svg","effects":[]}
|
||||
{"_id":"L5RCoreAdv000046","name":"Whispers of Doom","permission":{"default":0},"type":"peculiarity","data":{"in_curriculum":false,"xp_used":0,"rank":0,"bought_at_rank":0,"ring":"void","peculiarity_type":"adversity","types":"Infamy, Interpersonal","description":"","source_reference":{"source":"core_rulebook","page":"129"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/peculiarity.svg","effects":[]}
|
||||
{"_id":"L5RCoreAdv000047","name":"Whispers of Failure","permission":{"default":0},"type":"peculiarity","data":{"in_curriculum":false,"xp_used":0,"rank":0,"bought_at_rank":0,"ring":"fire","peculiarity_type":"adversity","types":"Infamy, Interpersonal","description":"","source_reference":{"source":"core_rulebook","page":"130"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/peculiarity.svg","effects":[]}
|
||||
{"_id":"L5RCoreAdv000048","name":"Whispers of Poverty","permission":{"default":0},"type":"peculiarity","data":{"in_curriculum":false,"xp_used":0,"rank":0,"bought_at_rank":0,"ring":"water","peculiarity_type":"adversity","types":"Infamy, Interpersonal","description":"","source_reference":{"source":"core_rulebook","page":"130"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/peculiarity.svg","effects":[]}
|
||||
{"_id":"L5RCoreAdv000049","name":"Whispers of Treachery","permission":{"default":0},"type":"peculiarity","data":{"in_curriculum":false,"xp_used":0,"rank":0,"bought_at_rank":0,"ring":"air","peculiarity_type":"adversity","types":"Infamy, Interpersonal","description":"","source_reference":{"source":"core_rulebook","page":"130"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/peculiarity.svg","effects":[]}
|
||||
{"_id":"L5RCoreAdv000050","name":"Elemental Deficiency (Air)","permission":{"default":0},"type":"peculiarity","data":{"in_curriculum":false,"xp_used":0,"rank":0,"bought_at_rank":0,"ring":"air","peculiarity_type":"adversity","types":"Mental, Physical, Spiritual","description":"","source_reference":{"source":"celestial_realms","page":"93"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/peculiarity.svg","effects":[]}
|
||||
{"_id":"L5RCoreAdv000051","name":"Elemental Deficiency (Earth)","permission":{"default":0},"type":"peculiarity","data":{"in_curriculum":false,"xp_used":0,"rank":0,"bought_at_rank":0,"ring":"earth","peculiarity_type":"adversity","types":"Mental, Physical, Spiritual","description":"","source_reference":{"source":"celestial_realms","page":"93"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/peculiarity.svg","effects":[]}
|
||||
{"_id":"L5RCoreAdv000052","name":"Elemental Deficiency (Fire)","permission":{"default":0},"type":"peculiarity","data":{"in_curriculum":false,"xp_used":0,"rank":0,"bought_at_rank":0,"ring":"fire","peculiarity_type":"adversity","types":"Mental, Physical, Spiritual","description":"","source_reference":{"source":"celestial_realms","page":"94"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/peculiarity.svg","effects":[]}
|
||||
{"_id":"L5RCoreAdv000053","name":"Elemental Deficiency (Water)","permission":{"default":0},"type":"peculiarity","data":{"in_curriculum":false,"xp_used":0,"rank":0,"bought_at_rank":0,"ring":"water","peculiarity_type":"adversity","types":"Mental, Physical, Spiritual","description":"","source_reference":{"source":"celestial_realms","page":"94"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/peculiarity.svg","effects":[]}
|
||||
{"_id":"L5RCoreAdv000054","name":"Lackluster","permission":{"default":0},"type":"peculiarity","data":{"in_curriculum":false,"xp_used":0,"rank":0,"bought_at_rank":0,"ring":"fire","peculiarity_type":"adversity","types":"Interpersonal","description":"","source_reference":{"source":"court_of_stones","page":"101"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/peculiarity.svg","effects":[]}
|
||||
{"_id":"L5RCoreAdv000055","name":"Overconfidence in Creativity","permission":{"default":0},"type":"peculiarity","data":{"in_curriculum":false,"xp_used":0,"rank":0,"bought_at_rank":0,"ring":"fire","peculiarity_type":"adversity","types":"Mental","description":"","source_reference":{"source":"court_of_stones","page":"101"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/peculiarity.svg","effects":[]}
|
||||
{"_id":"L5RCoreAdv000056","name":"Overconfidence in Spiritual Sensitivity","permission":{"default":0},"type":"peculiarity","data":{"in_curriculum":false,"xp_used":0,"rank":0,"bought_at_rank":0,"ring":"void","peculiarity_type":"adversity","types":"Spiritual","description":"","source_reference":{"source":"court_of_stones","page":"101"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/peculiarity.svg","effects":[]}
|
||||
{"_id":"L5RCoreAdv000057","name":"Overconfidence in Charm","permission":{"default":0},"type":"peculiarity","data":{"in_curriculum":false,"xp_used":0,"rank":0,"bought_at_rank":0,"ring":"water","peculiarity_type":"adversity","types":"Interpersonal","description":"","source_reference":{"source":"court_of_stones","page":"101"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/peculiarity.svg","effects":[]}
|
||||
{"_id":"L5RCoreAdv000058","name":"Overconfidence in Subtlety","permission":{"default":0},"type":"peculiarity","data":{"in_curriculum":false,"xp_used":0,"rank":0,"bought_at_rank":0,"ring":"air","peculiarity_type":"adversity","types":"Interpersonal","description":"","source_reference":{"source":"court_of_stones","page":"101"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/peculiarity.svg","effects":[]}
|
||||
{"_id":"L5RCoreAdv000059","name":"Overconfidence in Toughness","permission":{"default":0},"type":"peculiarity","data":{"in_curriculum":false,"xp_used":0,"rank":0,"bought_at_rank":0,"ring":"earth","peculiarity_type":"adversity","types":"Physical","description":"","source_reference":{"source":"court_of_stones","page":"101"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/peculiarity.svg","effects":[]}
|
||||
{"_id":"L5RCoreAdv000060","name":"Unsavory Past","permission":{"default":0},"type":"peculiarity","data":{"in_curriculum":false,"xp_used":0,"rank":0,"bought_at_rank":0,"ring":"water","peculiarity_type":"adversity","types":"Interpersonal","description":"","source_reference":{"source":"court_of_stones","page":"102"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/peculiarity.svg","effects":[]}
|
||||
{"_id":"L5RCoreAdv000061","name":"Allergy","permission":{"default":0},"type":"peculiarity","data":{"in_curriculum":false,"xp_used":0,"rank":0,"bought_at_rank":0,"ring":"air","peculiarity_type":"adversity","types":"Physical","description":"","source_reference":{"source":"emerald_empire","page":"245"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/peculiarity.svg","effects":[]}
|
||||
{"_id":"L5RCoreAdv000062","name":"Cursed Lineage","permission":{"default":0},"type":"peculiarity","data":{"in_curriculum":false,"xp_used":0,"rank":0,"bought_at_rank":0,"ring":"void","peculiarity_type":"adversity","types":"Interpersonal, Spiritual","description":"","source_reference":{"source":"emerald_empire","page":"245"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/peculiarity.svg","effects":[]}
|
||||
{"_id":"L5RCoreAdv000063","name":"Adopted Peasant","permission":{"default":0},"type":"peculiarity","data":{"in_curriculum":false,"xp_used":0,"rank":0,"bought_at_rank":0,"ring":"fire","peculiarity_type":"adversity","types":"Interpersonal","description":"","source_reference":{"source":"emerald_empire","page":"245"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/peculiarity.svg","effects":[]}
|
||||
{"_id":"L5RCoreAdv000064","name":"Despise in [City]","permission":{"default":0},"type":"peculiarity","data":{"in_curriculum":false,"xp_used":0,"rank":0,"bought_at_rank":0,"ring":"water","peculiarity_type":"adversity","types":"Fame, Interpersonal","description":"","source_reference":{"source":"emerald_empire","page":"246"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/peculiarity.svg","effects":[]}
|
||||
{"_id":"L5RCoreAdv000065","name":"Hunted by Chikusho-Do","permission":{"default":0},"type":"peculiarity","data":{"in_curriculum":false,"xp_used":0,"rank":0,"bought_at_rank":0,"ring":"earth","peculiarity_type":"adversity","types":"Spiritual","description":"","source_reference":{"source":"emerald_empire","page":"246"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/peculiarity.svg","effects":[]}
|
||||
{"_id":"L5RCoreAdv000066","name":"Skepticism","permission":{"default":0},"type":"peculiarity","data":{"in_curriculum":false,"xp_used":0,"rank":0,"bought_at_rank":0,"ring":"void","peculiarity_type":"adversity","types":"Mental, Spiritual","description":"","source_reference":{"source":"emerald_empire","page":"246"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/peculiarity.svg","effects":[]}
|
||||
{"_id":"L5RCoreAdv000067","name":"Debt to [Person or Organization]","permission":{"default":0},"type":"peculiarity","data":{"in_curriculum":false,"xp_used":0,"rank":0,"bought_at_rank":0,"ring":"water","peculiarity_type":"adversity","types":"Interpersonal","description":"","source_reference":{"source":"path_of_waves","page":"71"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/peculiarity.svg","effects":[]}
|
||||
{"_id":"L5RCoreAdv000068","name":"Bullheaded","permission":{"default":0},"type":"peculiarity","data":{"in_curriculum":false,"xp_used":0,"rank":0,"bought_at_rank":0,"ring":"earth","peculiarity_type":"adversity","types":"Mental","description":"","source_reference":{"source":"path_of_waves","page":"71"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/peculiarity.svg","effects":[]}
|
||||
{"_id":"L5RCoreAdv000069","name":"Many Mouths","permission":{"default":0},"type":"peculiarity","data":{"in_curriculum":false,"xp_used":0,"rank":0,"bought_at_rank":0,"ring":"earth","peculiarity_type":"adversity","types":"Interpersonal, Mental","description":"","source_reference":{"source":"path_of_waves","page":"72"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/peculiarity.svg","effects":[]}
|
||||
{"_id":"L5RCoreAdv000070","name":"Horrible Scar","permission":{"default":0},"type":"peculiarity","data":{"in_curriculum":false,"xp_used":0,"rank":0,"bought_at_rank":0,"ring":"air","peculiarity_type":"adversity","types":"Interpersonal, Mental","description":"","source_reference":{"source":"path_of_waves","page":"72"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/peculiarity.svg","effects":[]}
|
||||
{"_id":"L5RCoreAdv000071","name":"Pursued by [Individual or Group]","permission":{"default":0},"type":"peculiarity","data":{"in_curriculum":false,"xp_used":0,"rank":0,"bought_at_rank":0,"ring":"water","peculiarity_type":"adversity","types":"Interpersonal, Mental","description":"","source_reference":{"source":"path_of_waves","page":"72"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/peculiarity.svg","effects":[]}
|
||||
{"_id":"L5RCoreAdv000072","name":"Encompassing Duty","permission":{"default":0},"type":"peculiarity","data":{"in_curriculum":false,"xp_used":0,"rank":0,"bought_at_rank":0,"ring":"earth","peculiarity_type":"adversity","types":"Mental","description":"","source_reference":{"source":"path_of_waves","page":"72"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/peculiarity.svg","effects":[]}
|
||||
{"_id":"L5RCoreAdv000073","name":"Stained Lineage","permission":{"default":0},"type":"peculiarity","data":{"in_curriculum":false,"xp_used":0,"rank":0,"bought_at_rank":0,"ring":"void","peculiarity_type":"adversity","types":"Interpersonal, Mental","description":"","source_reference":{"source":"path_of_waves","page":"73"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/peculiarity.svg","effects":[]}
|
||||
{"_id":"L5RCoreAdv000074","name":"Shadowlands Taint [One with the Darkness]","permission":{"default":0},"type":"peculiarity","data":{"in_curriculum":false,"xp_used":0,"rank":0,"bought_at_rank":0,"ring":"void","peculiarity_type":"adversity","types":"Curse, Physical, Spiritual","description":"","source_reference":{"source":"shadowlands","page":"100"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/peculiarity.svg","effects":[]}
|
||||
{"_id":"L5RCoreAdv000075","name":"Shadowlands Taint [Unnatural Skin]","permission":{"default":0},"type":"peculiarity","data":{"in_curriculum":false,"xp_used":0,"rank":0,"bought_at_rank":0,"ring":"fire","peculiarity_type":"adversity","types":"Curse, Physical","description":"","source_reference":{"source":"shadowlands","page":"100"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/peculiarity.svg","effects":[]}
|
||||
{"_id":"L5RCoreAdv000076","name":"Shadowlands Taint [Blasphemous Appetites]","permission":{"default":0},"type":"peculiarity","data":{"in_curriculum":false,"xp_used":0,"rank":0,"bought_at_rank":0,"ring":"water","peculiarity_type":"adversity","types":"Curse, Mental, Spiritual","description":"","source_reference":{"source":"shadowlands","page":"100"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/peculiarity.svg","effects":[]}
|
||||
{"_id":"L5RCoreAdv000077","name":"Lost Name","permission":{"default":0},"type":"peculiarity","data":{"in_curriculum":false,"xp_used":0,"rank":0,"bought_at_rank":0,"ring":"void","peculiarity_type":"adversity","types":"Spiritual","description":"","source_reference":{"source":"shadowlands","page":"97"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/peculiarity.svg","effects":[]}
|
||||
{"_id":"L5RCoreAdv000078","name":"Demon Wound","permission":{"default":0},"type":"peculiarity","data":{"in_curriculum":false,"xp_used":0,"rank":0,"bought_at_rank":0,"ring":"earth","peculiarity_type":"adversity","types":"Scar, Spiritual","description":"","source_reference":{"source":"shadowlands","page":"97"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/peculiarity.svg","effects":[]}
|
||||
{"_id":"L5RCoreAdv000079","name":"Shadowlands Taint [Kansen Whispers]","permission":{"default":0},"type":"peculiarity","data":{"in_curriculum":false,"xp_used":0,"rank":0,"bought_at_rank":0,"ring":"air","peculiarity_type":"adversity","types":"Curse, Mental","description":"","source_reference":{"source":"shadowlands","page":"99"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/peculiarity.svg","effects":[]}
|
||||
{"_id":"L5RCoreAdv000080","name":"Shadowlands Taint [Distorted Limbs]","permission":{"default":0},"type":"peculiarity","data":{"in_curriculum":false,"xp_used":0,"rank":0,"bought_at_rank":0,"ring":"earth","peculiarity_type":"adversity","types":"Curse, Physical","description":"","source_reference":{"source":"shadowlands","page":"99"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/peculiarity.svg","effects":[]}
|
||||
{"_id":"L5RCoreAdv000081","name":"Sailor’s Tongue","permission":{"default":0},"type":"peculiarity","data":{"in_curriculum":false,"xp_used":0,"rank":0,"bought_at_rank":0,"ring":"air","peculiarity_type":"adversity","types":"Interpersonal, Mental","description":"","source_reference":{"source":"the_mantis_clan","page":"7"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/peculiarity.svg","effects":[]}
|
||||
{"_id":"L5RCoreAdv000082","name":"Blood Feud","permission":{"default":0},"type":"peculiarity","data":{"in_curriculum":false,"xp_used":0,"rank":0,"bought_at_rank":0,"ring":"water","peculiarity_type":"adversity","types":"Interpersonal, Social","description":"","source_reference":{"source":"fields_of_victory","page":"83"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/peculiarity.svg","effects":[]}
|
||||
{"_id":"L5RCoreAdv000083","name":"Insomniac","permission":{"default":0},"type":"peculiarity","data":{"in_curriculum":false,"xp_used":0,"rank":0,"bought_at_rank":0,"ring":"void","peculiarity_type":"adversity","types":"Mental","description":"","source_reference":{"source":"writ_of_the_wild","page":"104"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/peculiarity.svg","effects":[]}
|
||||
{"_id":"L5RCoreAdv000084","name":"Out of Shape","permission":{"default":0},"type":"peculiarity","data":{"in_curriculum":false,"xp_used":0,"rank":0,"bought_at_rank":0,"ring":"earth","peculiarity_type":"adversity","types":"Physical","description":"","source_reference":{"source":"writ_of_the_wild","page":"105"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/peculiarity.svg","effects":[]}
|
||||
{"_id":"L5RCoreAdv000085","name":"Stalked by [Creature]","permission":{"default":0},"type":"peculiarity","data":{"in_curriculum":false,"xp_used":0,"rank":0,"bought_at_rank":0,"ring":"earth","peculiarity_type":"adversity","types":"Interpersonal, Mental, Spiritual","description":"","source_reference":{"source":"writ_of_the_wild","page":"105"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/peculiarity.svg","effects":[]}
|
||||
@@ -1,42 +0,0 @@
|
||||
{"_id":"L5RCoreAnx000001","name":"Addiction","permission":{"default":0},"type":"peculiarity","data":{"in_curriculum":false,"xp_used":0,"rank":0,"bought_at_rank":0,"ring":"earth","peculiarity_type":"anxiety","types":"Mental, Physical","description":"","source_reference":{"source":"core_rulebook","page":"131"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/peculiarity.svg","effects":[]}
|
||||
{"_id":"L5RCoreAnx000002","name":"Battle Trauma","permission":{"default":0},"type":"peculiarity","data":{"in_curriculum":false,"xp_used":0,"rank":0,"bought_at_rank":0,"ring":"fire","peculiarity_type":"anxiety","types":"Mental, Physical","description":"","source_reference":{"source":"core_rulebook","page":"131"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/peculiarity.svg","effects":[]}
|
||||
{"_id":"L5RCoreAnx000003","name":"Cynicism","permission":{"default":0},"type":"peculiarity","data":{"in_curriculum":false,"xp_used":0,"rank":0,"bought_at_rank":0,"ring":"fire","peculiarity_type":"anxiety","types":"Interpersonal, Mental","description":"","source_reference":{"source":"core_rulebook","page":"131"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/peculiarity.svg","effects":[]}
|
||||
{"_id":"L5RCoreAnx000004","name":"Dark Secret","permission":{"default":0},"type":"peculiarity","data":{"in_curriculum":false,"xp_used":0,"rank":0,"bought_at_rank":0,"ring":"void","peculiarity_type":"anxiety","types":"Interpersonal","description":"","source_reference":{"source":"core_rulebook","page":"132"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/peculiarity.svg","effects":[]}
|
||||
{"_id":"L5RCoreAnx000005","name":"Delusions of Grandeur","permission":{"default":0},"type":"peculiarity","data":{"in_curriculum":false,"xp_used":0,"rank":0,"bought_at_rank":0,"ring":"void","peculiarity_type":"anxiety","types":"Interpersonal, Mental","description":"","source_reference":{"source":"core_rulebook","page":"132"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/peculiarity.svg","effects":[]}
|
||||
{"_id":"L5RCoreAnx000006","name":"Fear of Death","permission":{"default":0},"type":"peculiarity","data":{"in_curriculum":false,"xp_used":0,"rank":0,"bought_at_rank":0,"ring":"earth","peculiarity_type":"anxiety","types":"Mental, Physical","description":"","source_reference":{"source":"core_rulebook","page":"132"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/peculiarity.svg","effects":[]}
|
||||
{"_id":"L5RCoreAnx000007","name":"Ferocity","permission":{"default":0},"type":"peculiarity","data":{"in_curriculum":false,"xp_used":0,"rank":0,"bought_at_rank":0,"ring":"air","peculiarity_type":"anxiety","types":"Mental, Physical","description":"","source_reference":{"source":"core_rulebook","page":"132"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/peculiarity.svg","effects":[]}
|
||||
{"_id":"L5RCoreAnx000008","name":"Impatience","permission":{"default":0},"type":"peculiarity","data":{"in_curriculum":false,"xp_used":0,"rank":0,"bought_at_rank":0,"ring":"earth","peculiarity_type":"anxiety","types":"Mental","description":"","source_reference":{"source":"core_rulebook","page":"133"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/peculiarity.svg","effects":[]}
|
||||
{"_id":"L5RCoreAnx000009","name":"Intolerance","permission":{"default":0},"type":"peculiarity","data":{"in_curriculum":false,"xp_used":0,"rank":0,"bought_at_rank":0,"ring":"water","peculiarity_type":"anxiety","types":"Interpersonal","description":"","source_reference":{"source":"core_rulebook","page":"133"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/peculiarity.svg","effects":[]}
|
||||
{"_id":"L5RCoreAnx000010","name":"Irrepressible Flirtation","permission":{"default":0},"type":"peculiarity","data":{"in_curriculum":false,"xp_used":0,"rank":0,"bought_at_rank":0,"ring":"earth","peculiarity_type":"anxiety","types":"Interpersonal","description":"","source_reference":{"source":"core_rulebook","page":"134"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/peculiarity.svg","effects":[]}
|
||||
{"_id":"L5RCoreAnx000011","name":"Jealousy","permission":{"default":0},"type":"peculiarity","data":{"in_curriculum":false,"xp_used":0,"rank":0,"bought_at_rank":0,"ring":"air","peculiarity_type":"anxiety","types":"Mental, Physical","description":"","source_reference":{"source":"core_rulebook","page":"134"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/peculiarity.svg","effects":[]}
|
||||
{"_id":"L5RCoreAnx000012","name":"Materialism","permission":{"default":0},"type":"peculiarity","data":{"in_curriculum":false,"xp_used":0,"rank":0,"bought_at_rank":0,"ring":"void","peculiarity_type":"anxiety","types":"Mental","description":"","source_reference":{"source":"core_rulebook","page":"134"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/peculiarity.svg","effects":[]}
|
||||
{"_id":"L5RCoreAnx000013","name":"Meekness","permission":{"default":0},"type":"peculiarity","data":{"in_curriculum":false,"xp_used":0,"rank":0,"bought_at_rank":0,"ring":"fire","peculiarity_type":"anxiety","types":"Interpersonal","description":"","source_reference":{"source":"core_rulebook","page":"134"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/peculiarity.svg","effects":[]}
|
||||
{"_id":"L5RCoreAnx000014","name":"Painful Honesty","permission":{"default":0},"type":"peculiarity","data":{"in_curriculum":false,"xp_used":0,"rank":0,"bought_at_rank":0,"ring":"air","peculiarity_type":"anxiety","types":"Interpersonal","description":"","source_reference":{"source":"core_rulebook","page":"135"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/peculiarity.svg","effects":[]}
|
||||
{"_id":"L5RCoreAnx000015","name":"Paranoia","permission":{"default":0},"type":"peculiarity","data":{"in_curriculum":false,"xp_used":0,"rank":0,"bought_at_rank":0,"ring":"water","peculiarity_type":"anxiety","types":"Mental, Physical","description":"","source_reference":{"source":"core_rulebook","page":"135"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/peculiarity.svg","effects":[]}
|
||||
{"_id":"L5RCoreAnx000016","name":"Perfectionism","permission":{"default":0},"type":"peculiarity","data":{"in_curriculum":false,"xp_used":0,"rank":0,"bought_at_rank":0,"ring":"water","peculiarity_type":"anxiety","types":"Mental, Physical","description":"","source_reference":{"source":"core_rulebook","page":"135"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/peculiarity.svg","effects":[]}
|
||||
{"_id":"L5RCoreAnx000017","name":"Phobia","permission":{"default":0},"type":"peculiarity","data":{"in_curriculum":false,"xp_used":0,"rank":0,"bought_at_rank":0,"ring":"water","peculiarity_type":"anxiety","types":"Mental, Physical","description":"","source_reference":{"source":"core_rulebook","page":"136"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/peculiarity.svg","effects":[]}
|
||||
{"_id":"L5RCoreAnx000018","name":"Softheartedness","permission":{"default":0},"type":"peculiarity","data":{"in_curriculum":false,"xp_used":0,"rank":0,"bought_at_rank":0,"ring":"fire","peculiarity_type":"anxiety","types":"Interpersonal, Mental","description":"","source_reference":{"source":"core_rulebook","page":"136"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/peculiarity.svg","effects":[]}
|
||||
{"_id":"L5RCoreAnx000019","name":"Superstition","permission":{"default":0},"type":"peculiarity","data":{"in_curriculum":false,"xp_used":0,"rank":0,"bought_at_rank":0,"ring":"void","peculiarity_type":"anxiety","types":"Mental, Spiritual","description":"","source_reference":{"source":"core_rulebook","page":"136"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/peculiarity.svg","effects":[]}
|
||||
{"_id":"L5RCoreAnx000020","name":"Conspiracy","permission":{"default":0},"type":"peculiarity","data":{"in_curriculum":false,"xp_used":0,"rank":0,"bought_at_rank":0,"ring":"earth","peculiarity_type":"anxiety","types":"Interpersonal, Mental","description":"","source_reference":{"source":"celestial_realms","page":"91"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/peculiarity.svg","effects":[]}
|
||||
{"_id":"L5RCoreAnx000021","name":"Omen of Bad Luck","permission":{"default":0},"type":"peculiarity","data":{"in_curriculum":false,"xp_used":0,"rank":0,"bought_at_rank":0,"ring":"water","peculiarity_type":"anxiety","types":"Interpersonal, Mental","description":"","source_reference":{"source":"celestial_realms","page":"92"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/peculiarity.svg","effects":[]}
|
||||
{"_id":"L5RCoreAnx000022","name":"Uncleanliness","permission":{"default":0},"type":"peculiarity","data":{"in_curriculum":false,"xp_used":0,"rank":0,"bought_at_rank":0,"ring":"air","peculiarity_type":"anxiety","types":"Mental","description":"","source_reference":{"source":"celestial_realms","page":"92"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/peculiarity.svg","effects":[]}
|
||||
{"_id":"L5RCoreAnx000023","name":"Vanity","permission":{"default":0},"type":"peculiarity","data":{"in_curriculum":false,"xp_used":0,"rank":0,"bought_at_rank":0,"ring":"void","peculiarity_type":"anxiety","types":"Interpersonal, Mental","description":"","source_reference":{"source":"celestial_realms","page":"92"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/peculiarity.svg","effects":[]}
|
||||
{"_id":"L5RCoreAnx000024","name":"Isolation","permission":{"default":0},"type":"peculiarity","data":{"in_curriculum":false,"xp_used":0,"rank":0,"bought_at_rank":0,"ring":"earth","peculiarity_type":"anxiety","types":"Interpersonal, Mental","description":"","source_reference":{"source":"court_of_stones","page":"103"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/peculiarity.svg","effects":[]}
|
||||
{"_id":"L5RCoreAnx000025","name":"Web of Lies","permission":{"default":0},"type":"peculiarity","data":{"in_curriculum":false,"xp_used":0,"rank":0,"bought_at_rank":0,"ring":"air","peculiarity_type":"anxiety","types":"Interpersonal","description":"","source_reference":{"source":"court_of_stones","page":"103"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/peculiarity.svg","effects":[]}
|
||||
{"_id":"L5RCoreAnx000026","name":"Accustomed to Luxury","permission":{"default":0},"type":"peculiarity","data":{"in_curriculum":false,"xp_used":0,"rank":0,"bought_at_rank":0,"ring":"earth","peculiarity_type":"anxiety","types":"Mental","description":"","source_reference":{"source":"emerald_empire","page":"246"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/peculiarity.svg","effects":[]}
|
||||
{"_id":"L5RCoreAnx000027","name":"Claustrophobia","permission":{"default":0},"type":"peculiarity","data":{"in_curriculum":false,"xp_used":0,"rank":0,"bought_at_rank":0,"ring":"water","peculiarity_type":"anxiety","types":"Mental","description":"","source_reference":{"source":"emerald_empire","page":"247"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/peculiarity.svg","effects":[]}
|
||||
{"_id":"L5RCoreAnx000028","name":"False Identity","permission":{"default":0},"type":"peculiarity","data":{"in_curriculum":false,"xp_used":0,"rank":0,"bought_at_rank":0,"ring":"air","peculiarity_type":"anxiety","types":"Interpersonal","description":"","source_reference":{"source":"emerald_empire","page":"247"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/peculiarity.svg","effects":[]}
|
||||
{"_id":"L5RCoreAnx000029","name":"Loathing for Peasants","permission":{"default":0},"type":"peculiarity","data":{"in_curriculum":false,"xp_used":0,"rank":0,"bought_at_rank":0,"ring":"water","peculiarity_type":"anxiety","types":"Interpersonal, Mental","description":"","source_reference":{"source":"emerald_empire","page":"247"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/peculiarity.svg","effects":[]}
|
||||
{"_id":"L5RCoreAnx000030","name":"Loneliness","permission":{"default":0},"type":"peculiarity","data":{"in_curriculum":false,"xp_used":0,"rank":0,"bought_at_rank":0,"ring":"void","peculiarity_type":"anxiety","types":"Interpersonal, Mental","description":"","source_reference":{"source":"emerald_empire","page":"248"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/peculiarity.svg","effects":[]}
|
||||
{"_id":"L5RCoreAnx000031","name":"Eyes of Many","permission":{"default":0},"type":"peculiarity","data":{"in_curriculum":false,"xp_used":0,"rank":0,"bought_at_rank":0,"ring":"air","peculiarity_type":"anxiety","types":"Mental","description":"","source_reference":{"source":"path_of_waves","page":"73"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/peculiarity.svg","effects":[]}
|
||||
{"_id":"L5RCoreAnx000032","name":"Coming Storm","permission":{"default":0},"type":"peculiarity","data":{"in_curriculum":false,"xp_used":0,"rank":0,"bought_at_rank":0,"ring":"void","peculiarity_type":"anxiety","types":"Mental","description":"","source_reference":{"source":"path_of_waves","page":"73"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/peculiarity.svg","effects":[]}
|
||||
{"_id":"L5RCoreAnx000033","name":"Fear of Stagnation","permission":{"default":0},"type":"peculiarity","data":{"in_curriculum":false,"xp_used":0,"rank":0,"bought_at_rank":0,"ring":"earth","peculiarity_type":"anxiety","types":"Mental","description":"","source_reference":{"source":"path_of_waves","page":"74"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/peculiarity.svg","effects":[]}
|
||||
{"_id":"L5RCoreAnx000034","name":"Failure","permission":{"default":0},"type":"peculiarity","data":{"in_curriculum":false,"xp_used":0,"rank":0,"bought_at_rank":0,"ring":"water","peculiarity_type":"anxiety","types":"Mental","description":"","source_reference":{"source":"path_of_waves","page":"74"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/peculiarity.svg","effects":[]}
|
||||
{"_id":"L5RCoreAnx000035","name":"Fallen Ancestor","permission":{"default":0},"type":"peculiarity","data":{"in_curriculum":false,"xp_used":0,"rank":0,"bought_at_rank":0,"ring":"void","peculiarity_type":"anxiety","types":"Interpersonal, Spiritual","description":"","source_reference":{"source":"shadowlands","page":"98"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/peculiarity.svg","effects":[]}
|
||||
{"_id":"L5RCoreAnx000036","name":"Obtuse","permission":{"default":0},"type":"peculiarity","data":{"in_curriculum":false,"xp_used":0,"rank":0,"bought_at_rank":0,"ring":"air","peculiarity_type":"anxiety","types":"Mental","description":"","source_reference":{"source":"shadowlands","page":"98"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/peculiarity.svg","effects":[]}
|
||||
{"_id":"L5RCoreAnx000037","name":"Reformed Maho-Tsukai","permission":{"default":0},"type":"peculiarity","data":{"in_curriculum":false,"xp_used":0,"rank":0,"bought_at_rank":0,"ring":"water","peculiarity_type":"anxiety","types":"Interpersonal","description":"","source_reference":{"source":"shadowlands","page":"99"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/peculiarity.svg","effects":[]}
|
||||
{"_id":"L5RCoreAnx000038","name":"Belligerent","permission":{"default":0},"type":"peculiarity","data":{"in_curriculum":false,"xp_used":0,"rank":0,"bought_at_rank":0,"ring":"earth","peculiarity_type":"anxiety","types":"Interpersonal","description":"","source_reference":{"source":"fields_of_victory","page":"85"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/peculiarity.svg","effects":[]}
|
||||
{"_id":"L5RCoreAnx000039","name":"Braggart","permission":{"default":0},"type":"peculiarity","data":{"in_curriculum":false,"xp_used":0,"rank":0,"bought_at_rank":0,"ring":"water","peculiarity_type":"anxiety","types":"Interpersonal","description":"","source_reference":{"source":"fields_of_victory","page":"85"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/peculiarity.svg","effects":[]}
|
||||
{"_id":"L5RCoreAnx000040","name":"Fear of [Common Creature]","permission":{"default":0},"type":"peculiarity","data":{"in_curriculum":false,"xp_used":0,"rank":0,"bought_at_rank":0,"ring":"earth","peculiarity_type":"anxiety","types":"Mental","description":"","source_reference":{"source":"writ_of_the_wild","page":"105"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/peculiarity.svg","effects":[]}
|
||||
{"_id":"L5RCoreAnx000041","name":"Fear of Mediocrity","permission":{"default":0},"type":"peculiarity","data":{"in_curriculum":false,"xp_used":0,"rank":0,"bought_at_rank":0,"ring":"fire","peculiarity_type":"anxiety","types":"Interpersonal, Mental","description":"","source_reference":{"source":"writ_of_the_wild","page":"106"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/peculiarity.svg","effects":[]}
|
||||
{"_id":"L5RCoreAnx000042","name":"Fear of Poison","permission":{"default":0},"type":"peculiarity","data":{"in_curriculum":false,"xp_used":0,"rank":0,"bought_at_rank":0,"ring":"air","peculiarity_type":"anxiety","types":"Mental","description":"","source_reference":{"source":"writ_of_the_wild","page":"106"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/peculiarity.svg","effects":[]}
|
||||
@@ -1,71 +0,0 @@
|
||||
{"_id":"L5RCoreDis000001","name":"Ally [Name]","permission":{"default":0},"type":"peculiarity","data":{"in_curriculum":false,"xp_used":0,"rank":0,"bought_at_rank":0,"ring":"water","peculiarity_type":"distinction","types":"Interpersonal","description":"","source_reference":{"source":"core_rulebook","page":"101"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/peculiarity.svg","effects":[]}
|
||||
{"_id":"L5RCoreDis000002","name":"Ambidexterity","permission":{"default":0},"type":"peculiarity","data":{"in_curriculum":false,"xp_used":0,"rank":0,"bought_at_rank":0,"ring":"air","peculiarity_type":"distinction","types":"Physical","description":"","source_reference":{"source":"core_rulebook","page":"102"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/peculiarity.svg","effects":[]}
|
||||
{"_id":"L5RCoreDis000003","name":"Benten’s Blessing","permission":{"default":0},"type":"peculiarity","data":{"in_curriculum":false,"xp_used":0,"rank":0,"bought_at_rank":0,"ring":"air","peculiarity_type":"distinction","types":"Interpersonal, Spiritual","description":"","source_reference":{"source":"core_rulebook","page":"102"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/peculiarity.svg","effects":[]}
|
||||
{"_id":"L5RCoreDis000004","name":"Bishamon’s Blessing","permission":{"default":0},"type":"peculiarity","data":{"in_curriculum":false,"xp_used":0,"rank":0,"bought_at_rank":0,"ring":"water","peculiarity_type":"distinction","types":"Physical, Spiritual","description":"","source_reference":{"source":"core_rulebook","page":"102"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/peculiarity.svg","effects":[]}
|
||||
{"_id":"L5RCoreDis000005","name":"Blackmail on [Name]","permission":{"default":0},"type":"peculiarity","data":{"in_curriculum":false,"xp_used":0,"rank":0,"bought_at_rank":0,"ring":"fire","peculiarity_type":"distinction","types":"Interpersonal","description":"","source_reference":{"source":"core_rulebook","page":"102"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/peculiarity.svg","effects":[]}
|
||||
{"_id":"L5RCoreDis000006","name":"Blessed Lineage","permission":{"default":0},"type":"peculiarity","data":{"in_curriculum":false,"xp_used":0,"rank":0,"bought_at_rank":0,"ring":"void","peculiarity_type":"distinction","types":"Interpersonal, Spiritual","description":"","source_reference":{"source":"core_rulebook","page":"103"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/peculiarity.svg","effects":[]}
|
||||
{"_id":"L5RCoreDis000007","name":"Blissful Betrothal","permission":{"default":0},"type":"peculiarity","data":{"in_curriculum":false,"xp_used":0,"rank":0,"bought_at_rank":0,"ring":"water","peculiarity_type":"distinction","types":"Interpersonal","description":"","source_reference":{"source":"core_rulebook","page":"103"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/peculiarity.svg","effects":[]}
|
||||
{"_id":"L5RCoreDis000008","name":"Daikoku’s Blessing","permission":{"default":0},"type":"peculiarity","data":{"in_curriculum":false,"xp_used":0,"rank":0,"bought_at_rank":0,"ring":"water","peculiarity_type":"distinction","types":"Interpersonal, Spiritual","description":"","source_reference":{"source":"core_rulebook","page":"103"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/peculiarity.svg","effects":[]}
|
||||
{"_id":"L5RCoreDis000009","name":"Dangerous Allure","permission":{"default":0},"type":"peculiarity","data":{"in_curriculum":false,"xp_used":0,"rank":0,"bought_at_rank":0,"ring":"fire","peculiarity_type":"distinction","types":"Interpersonal, Physical","description":"","source_reference":{"source":"core_rulebook","page":"103"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/peculiarity.svg","effects":[]}
|
||||
{"_id":"L5RCoreDis000010","name":"Ebisu’s Blessing","permission":{"default":0},"type":"peculiarity","data":{"in_curriculum":false,"xp_used":0,"rank":0,"bought_at_rank":0,"ring":"earth","peculiarity_type":"distinction","types":"Physical, Spiritual","description":"","source_reference":{"source":"core_rulebook","page":"104"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/peculiarity.svg","effects":[]}
|
||||
{"_id":"L5RCoreDis000011","name":"Famously Honest","permission":{"default":0},"type":"peculiarity","data":{"in_curriculum":false,"xp_used":0,"rank":0,"bought_at_rank":0,"ring":"air","peculiarity_type":"distinction","types":"Fame, Interpersonal","description":"","source_reference":{"source":"core_rulebook","page":"104"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/peculiarity.svg","effects":[]}
|
||||
{"_id":"L5RCoreDis000012","name":"Famously Lucky","permission":{"default":0},"type":"peculiarity","data":{"in_curriculum":false,"xp_used":0,"rank":0,"bought_at_rank":0,"ring":"void","peculiarity_type":"distinction","types":"Fame, Interpersonal","description":"","source_reference":{"source":"core_rulebook","page":"104"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/peculiarity.svg","effects":[]}
|
||||
{"_id":"L5RCoreDis000013","name":"Famously Reliable","permission":{"default":0},"type":"peculiarity","data":{"in_curriculum":false,"xp_used":0,"rank":0,"bought_at_rank":0,"ring":"earth","peculiarity_type":"distinction","types":"Fame, Interpersonal","description":"","source_reference":{"source":"core_rulebook","page":"104"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/peculiarity.svg","effects":[]}
|
||||
{"_id":"L5RCoreDis000014","name":"Famously Successful","permission":{"default":0},"type":"peculiarity","data":{"in_curriculum":false,"xp_used":0,"rank":0,"bought_at_rank":0,"ring":"fire","peculiarity_type":"distinction","types":"Fame, Interpersonal","description":"","source_reference":{"source":"core_rulebook","page":"105"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/peculiarity.svg","effects":[]}
|
||||
{"_id":"L5RCoreDis000015","name":"Famously Wealthy","permission":{"default":0},"type":"peculiarity","data":{"in_curriculum":false,"xp_used":0,"rank":0,"bought_at_rank":0,"ring":"water","peculiarity_type":"distinction","types":"Fame, Interpersonal","description":"","source_reference":{"source":"core_rulebook","page":"105"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/peculiarity.svg","effects":[]}
|
||||
{"_id":"L5RCoreDis000016","name":"Flexibility","permission":{"default":0},"type":"peculiarity","data":{"in_curriculum":false,"xp_used":0,"rank":0,"bought_at_rank":0,"ring":"water","peculiarity_type":"distinction","types":"Physical","description":"","source_reference":{"source":"core_rulebook","page":"105"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/peculiarity.svg","effects":[]}
|
||||
{"_id":"L5RCoreDis000017","name":"Fukurokujin’s Blessing","permission":{"default":0},"type":"peculiarity","data":{"in_curriculum":false,"xp_used":0,"rank":0,"bought_at_rank":0,"ring":"fire","peculiarity_type":"distinction","types":"Mental, Spiritual","description":"","source_reference":{"source":"core_rulebook","page":"105"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/peculiarity.svg","effects":[]}
|
||||
{"_id":"L5RCoreDis000018","name":"Indomitable Will","permission":{"default":0},"type":"peculiarity","data":{"in_curriculum":false,"xp_used":0,"rank":0,"bought_at_rank":0,"ring":"earth","peculiarity_type":"distinction","types":"Interpersonal, Mental","description":"","source_reference":{"source":"core_rulebook","page":"106"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/peculiarity.svg","effects":[]}
|
||||
{"_id":"L5RCoreDis000019","name":"Jurojin’s Blessing","permission":{"default":0},"type":"peculiarity","data":{"in_curriculum":false,"xp_used":0,"rank":0,"bought_at_rank":0,"ring":"void","peculiarity_type":"distinction","types":"Physical, Spiritual","description":"","source_reference":{"source":"core_rulebook","page":"106"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/peculiarity.svg","effects":[]}
|
||||
{"_id":"L5RCoreDis000020","name":"Keen Balance","permission":{"default":0},"type":"peculiarity","data":{"in_curriculum":false,"xp_used":0,"rank":0,"bought_at_rank":0,"ring":"earth","peculiarity_type":"distinction","types":"Mental, Physical","description":"","source_reference":{"source":"core_rulebook","page":"106"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/peculiarity.svg","effects":[]}
|
||||
{"_id":"L5RCoreDis000021","name":"Keen Hearing","permission":{"default":0},"type":"peculiarity","data":{"in_curriculum":false,"xp_used":0,"rank":0,"bought_at_rank":0,"ring":"air","peculiarity_type":"distinction","types":"Mental, Physical","description":"","source_reference":{"source":"core_rulebook","page":"107"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/peculiarity.svg","effects":[]}
|
||||
{"_id":"L5RCoreDis000022","name":"Keen Sight","permission":{"default":0},"type":"peculiarity","data":{"in_curriculum":false,"xp_used":0,"rank":0,"bought_at_rank":0,"ring":"water","peculiarity_type":"distinction","types":"Mental, Physical","description":"","source_reference":{"source":"core_rulebook","page":"107"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/peculiarity.svg","effects":[]}
|
||||
{"_id":"L5RCoreDis000023","name":"Keen Smell","permission":{"default":0},"type":"peculiarity","data":{"in_curriculum":false,"xp_used":0,"rank":0,"bought_at_rank":0,"ring":"fire","peculiarity_type":"distinction","types":"Mental, Physical","description":"","source_reference":{"source":"core_rulebook","page":"107"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/peculiarity.svg","effects":[]}
|
||||
{"_id":"L5RCoreDis000024","name":"Karmic Tie","permission":{"default":0},"type":"peculiarity","data":{"in_curriculum":false,"xp_used":0,"rank":0,"bought_at_rank":0,"ring":"void","peculiarity_type":"distinction","types":"Interpersonal, Spiritual","description":"","source_reference":{"source":"core_rulebook","page":"108"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/peculiarity.svg","effects":[]}
|
||||
{"_id":"L5RCoreDis000025","name":"Kisshōten’s Blessing","permission":{"default":0},"type":"peculiarity","data":{"in_curriculum":false,"xp_used":0,"rank":0,"bought_at_rank":0,"ring":"water","peculiarity_type":"distinction","types":"Physical, Spiritual","description":"","source_reference":{"source":"core_rulebook","page":"108"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/peculiarity.svg","effects":[]}
|
||||
{"_id":"L5RCoreDis000026","name":"Large Stature","permission":{"default":0},"type":"peculiarity","data":{"in_curriculum":false,"xp_used":0,"rank":0,"bought_at_rank":0,"ring":"earth","peculiarity_type":"distinction","types":"Physical","description":"","source_reference":{"source":"core_rulebook","page":"108"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/peculiarity.svg","effects":[]}
|
||||
{"_id":"L5RCoreDis000027","name":"Paragon of Compassion","permission":{"default":0},"type":"peculiarity","data":{"in_curriculum":false,"xp_used":0,"rank":0,"bought_at_rank":0,"ring":"water","peculiarity_type":"distinction","types":"Mental, Virtue","description":"","source_reference":{"source":"core_rulebook","page":"108"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/peculiarity.svg","effects":[]}
|
||||
{"_id":"L5RCoreDis000028","name":"Paragon of Courage","permission":{"default":0},"type":"peculiarity","data":{"in_curriculum":false,"xp_used":0,"rank":0,"bought_at_rank":0,"ring":"fire","peculiarity_type":"distinction","types":"Mental, Virtue","description":"","source_reference":{"source":"core_rulebook","page":"108"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/peculiarity.svg","effects":[]}
|
||||
{"_id":"L5RCoreDis000029","name":"Paragon of Courtesy","permission":{"default":0},"type":"peculiarity","data":{"in_curriculum":false,"xp_used":0,"rank":0,"bought_at_rank":0,"ring":"air","peculiarity_type":"distinction","types":"Mental, Virtue","description":"","source_reference":{"source":"core_rulebook","page":"108"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/peculiarity.svg","effects":[]}
|
||||
{"_id":"L5RCoreDis000030","name":"Paragon of Duty and Loyalty","permission":{"default":0},"type":"peculiarity","data":{"in_curriculum":false,"xp_used":0,"rank":0,"bought_at_rank":0,"ring":"earth","peculiarity_type":"distinction","types":"Mental, Virtue","description":"","source_reference":{"source":"core_rulebook","page":"108"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/peculiarity.svg","effects":[]}
|
||||
{"_id":"L5RCoreDis000031","name":"Paragon of Honor","permission":{"default":0},"type":"peculiarity","data":{"in_curriculum":false,"xp_used":0,"rank":0,"bought_at_rank":0,"ring":"void","peculiarity_type":"distinction","types":"Mental, Virtue","description":"","source_reference":{"source":"core_rulebook","page":"108"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/peculiarity.svg","effects":[]}
|
||||
{"_id":"L5RCoreDis000032","name":"Paragon of Righteousness","permission":{"default":0},"type":"peculiarity","data":{"in_curriculum":false,"xp_used":0,"rank":0,"bought_at_rank":0,"ring":"void","peculiarity_type":"distinction","types":"Mental, Virtue","description":"","source_reference":{"source":"core_rulebook","page":"108"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/peculiarity.svg","effects":[]}
|
||||
{"_id":"L5RCoreDis000033","name":"Paragon of Sincerity","permission":{"default":0},"type":"peculiarity","data":{"in_curriculum":false,"xp_used":0,"rank":0,"bought_at_rank":0,"ring":"void","peculiarity_type":"distinction","types":"Mental, Virtue","description":"","source_reference":{"source":"core_rulebook","page":"108"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/peculiarity.svg","effects":[]}
|
||||
{"_id":"L5RCoreDis000034","name":"Precise Memory","permission":{"default":0},"type":"peculiarity","data":{"in_curriculum":false,"xp_used":0,"rank":0,"bought_at_rank":0,"ring":"earth","peculiarity_type":"distinction","types":"Mental","description":"","source_reference":{"source":"core_rulebook","page":"109"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/peculiarity.svg","effects":[]}
|
||||
{"_id":"L5RCoreDis000035","name":"Quick Reflexes","permission":{"default":0},"type":"peculiarity","data":{"in_curriculum":false,"xp_used":0,"rank":0,"bought_at_rank":0,"ring":"fire","peculiarity_type":"distinction","types":"Interpersonal, Physical","description":"","source_reference":{"source":"core_rulebook","page":"109"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/peculiarity.svg","effects":[]}
|
||||
{"_id":"L5RCoreDis000036","name":"Seasoned","permission":{"default":0},"type":"peculiarity","data":{"in_curriculum":false,"xp_used":0,"rank":0,"bought_at_rank":0,"ring":"void","peculiarity_type":"distinction","types":"Interpersonal, Mental","description":"","source_reference":{"source":"core_rulebook","page":"109"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/peculiarity.svg","effects":[]}
|
||||
{"_id":"L5RCoreDis000037","name":"Sixth Sense","permission":{"default":0},"type":"peculiarity","data":{"in_curriculum":false,"xp_used":0,"rank":0,"bought_at_rank":0,"ring":"void","peculiarity_type":"distinction","types":"Spiritual","description":"","source_reference":{"source":"core_rulebook","page":"110"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/peculiarity.svg","effects":[]}
|
||||
{"_id":"L5RCoreDis000038","name":"Small Stature","permission":{"default":0},"type":"peculiarity","data":{"in_curriculum":false,"xp_used":0,"rank":0,"bought_at_rank":0,"ring":"air","peculiarity_type":"distinction","types":"Physical","description":"","source_reference":{"source":"core_rulebook","page":"110"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/peculiarity.svg","effects":[]}
|
||||
{"_id":"L5RCoreDis000039","name":"Subtle Observer","permission":{"default":0},"type":"peculiarity","data":{"in_curriculum":false,"xp_used":0,"rank":0,"bought_at_rank":0,"ring":"air","peculiarity_type":"distinction","types":"Interpersonal, Mental","description":"","source_reference":{"source":"core_rulebook","page":"110"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/peculiarity.svg","effects":[]}
|
||||
{"_id":"L5RCoreDis000040","name":"Support of [One Group]","permission":{"default":0},"type":"peculiarity","data":{"in_curriculum":false,"xp_used":0,"rank":0,"bought_at_rank":0,"ring":"water","peculiarity_type":"distinction","types":"Interpersonal","description":"","source_reference":{"source":"core_rulebook","page":"110"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/peculiarity.svg","effects":[]}
|
||||
{"_id":"L5RCoreDis000041","name":"Talented Herbalist","permission":{"default":0},"type":"peculiarity","data":{"in_curriculum":false,"xp_used":0,"rank":0,"bought_at_rank":0,"ring":"earth","peculiarity_type":"distinction","types":"Mental","description":"","source_reference":{"source":"celestial_realms","page":"89"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/peculiarity.svg","effects":[]}
|
||||
{"_id":"L5RCoreDis000042","name":"Famously Kind","permission":{"default":0},"type":"peculiarity","data":{"in_curriculum":false,"xp_used":0,"rank":0,"bought_at_rank":0,"ring":"water","peculiarity_type":"distinction","types":"Fame, Interpersonal","description":"","source_reference":{"source":"celestial_realms","page":"89"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/peculiarity.svg","effects":[]}
|
||||
{"_id":"L5RCoreDis000043","name":"Portentous Birth","permission":{"default":0},"type":"peculiarity","data":{"in_curriculum":false,"xp_used":0,"rank":0,"bought_at_rank":0,"ring":"fire","peculiarity_type":"distinction","types":"Interpersonal, Spiritual","description":"","source_reference":{"source":"celestial_realms","page":"89"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/peculiarity.svg","effects":[]}
|
||||
{"_id":"L5RCoreDis000044","name":"Affect of Harmlessness","permission":{"default":0},"type":"peculiarity","data":{"in_curriculum":false,"xp_used":0,"rank":0,"bought_at_rank":0,"ring":"air","peculiarity_type":"distinction","types":"Interpersonal","description":"","source_reference":{"source":"court_of_stones","page":"99"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/peculiarity.svg","effects":[]}
|
||||
{"_id":"L5RCoreDis000045","name":"Famously Neutral","permission":{"default":0},"type":"peculiarity","data":{"in_curriculum":false,"xp_used":0,"rank":0,"bought_at_rank":0,"ring":"earth","peculiarity_type":"distinction","types":"Fame, Interpersonal","description":"","source_reference":{"source":"court_of_stones","page":"99"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/peculiarity.svg","effects":[]}
|
||||
{"_id":"L5RCoreDis000046","name":"Well Connected in {City}","permission":{"default":0},"type":"peculiarity","data":{"in_curriculum":false,"xp_used":0,"rank":0,"bought_at_rank":0,"ring":"water","peculiarity_type":"distinction","types":"Interpersonal","description":"","source_reference":{"source":"court_of_stones","page":"99"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/peculiarity.svg","effects":[]}
|
||||
{"_id":"L5RCoreDis000047","name":"Animal Trainer","permission":{"default":0},"type":"peculiarity","data":{"in_curriculum":false,"xp_used":0,"rank":0,"bought_at_rank":0,"ring":"water","peculiarity_type":"distinction","types":"Interpersonal, Mental","description":"","source_reference":{"source":"emerald_empire","page":"241"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/peculiarity.svg","effects":[]}
|
||||
{"_id":"L5RCoreDis000048","name":"Expert Tracker","permission":{"default":0},"type":"peculiarity","data":{"in_curriculum":false,"xp_used":0,"rank":0,"bought_at_rank":0,"ring":"air","peculiarity_type":"distinction","types":"Mental, Physical","description":"","source_reference":{"source":"emerald_empire","page":"241"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/peculiarity.svg","effects":[]}
|
||||
{"_id":"L5RCoreDis000049","name":"Criminal Connections","permission":{"default":0},"type":"peculiarity","data":{"in_curriculum":false,"xp_used":0,"rank":0,"bought_at_rank":0,"ring":"air","peculiarity_type":"distinction","types":"Interpersonal","description":"","source_reference":{"source":"emerald_empire","page":"241"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/peculiarity.svg","effects":[]}
|
||||
{"_id":"L5RCoreDis000050","name":"Friend of the brotherhood","permission":{"default":0},"type":"peculiarity","data":{"in_curriculum":false,"xp_used":0,"rank":0,"bought_at_rank":0,"ring":"void","peculiarity_type":"distinction","types":"Interpersonal","description":"","source_reference":{"source":"emerald_empire","page":"241"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/peculiarity.svg","effects":[]}
|
||||
{"_id":"L5RCoreDis000051","name":"Well Connected","permission":{"default":0},"type":"peculiarity","data":{"in_curriculum":false,"xp_used":0,"rank":0,"bought_at_rank":0,"ring":"water","peculiarity_type":"distinction","types":"Interpersonal","description":"","source_reference":{"source":"emerald_empire","page":"242"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/peculiarity.svg","effects":[]}
|
||||
{"_id":"L5RCoreDis000052","name":"Kuge Lineage","permission":{"default":0},"type":"peculiarity","data":{"in_curriculum":false,"xp_used":0,"rank":0,"bought_at_rank":0,"ring":"earth","peculiarity_type":"distinction","types":"Interpersonal","description":"","source_reference":{"source":"emerald_empire","page":"242"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/peculiarity.svg","effects":[]}
|
||||
{"_id":"L5RCoreDis000053","name":"Hero of [Village]","permission":{"default":0},"type":"peculiarity","data":{"in_curriculum":false,"xp_used":0,"rank":0,"bought_at_rank":0,"ring":"fire","peculiarity_type":"distinction","types":"Fame, Interpersonal","description":"","source_reference":{"source":"emerald_empire","page":"242"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/peculiarity.svg","effects":[]}
|
||||
{"_id":"L5RCoreDis000054","name":"Spiritual Protector","permission":{"default":0},"type":"peculiarity","data":{"in_curriculum":false,"xp_used":0,"rank":0,"bought_at_rank":0,"ring":"void","peculiarity_type":"distinction","types":"Spiritual","description":"","source_reference":{"source":"emerald_empire","page":"242"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/peculiarity.svg","effects":[]}
|
||||
{"_id":"L5RCoreDis000055","name":"Ardent Leader","permission":{"default":0},"type":"peculiarity","data":{"in_curriculum":false,"xp_used":0,"rank":0,"bought_at_rank":0,"ring":"fire","peculiarity_type":"distinction","types":"Interpersonal, Mental","description":"","source_reference":{"source":"path_of_waves","page":"68"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/peculiarity.svg","effects":[]}
|
||||
{"_id":"L5RCoreDis000056","name":"Dashing Scar","permission":{"default":0},"type":"peculiarity","data":{"in_curriculum":false,"xp_used":0,"rank":0,"bought_at_rank":0,"ring":"air","peculiarity_type":"distinction","types":"Interpersonal","description":"","source_reference":{"source":"path_of_waves","page":"69"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/peculiarity.svg","effects":[]}
|
||||
{"_id":"L5RCoreDis000057","name":"Lucky Hunter","permission":{"default":0},"type":"peculiarity","data":{"in_curriculum":false,"xp_used":0,"rank":0,"bought_at_rank":0,"ring":"void","peculiarity_type":"distinction","types":"Physical, Spiritual","description":"","source_reference":{"source":"path_of_waves","page":"69"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/peculiarity.svg","effects":[]}
|
||||
{"_id":"L5RCoreDis000058","name":"Scrounger","permission":{"default":0},"type":"peculiarity","data":{"in_curriculum":false,"xp_used":0,"rank":0,"bought_at_rank":0,"ring":"water","peculiarity_type":"distinction","types":"Interpersonal, Mental","description":"","source_reference":{"source":"path_of_waves","page":"69"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/peculiarity.svg","effects":[]}
|
||||
{"_id":"L5RCoreDis000059","name":"Scrappy","permission":{"default":0},"type":"peculiarity","data":{"in_curriculum":false,"xp_used":0,"rank":0,"bought_at_rank":0,"ring":"fire","peculiarity_type":"distinction","types":"Mental, Physical","description":"","source_reference":{"source":"path_of_waves","page":"69"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/peculiarity.svg","effects":[]}
|
||||
{"_id":"L5RCoreDis000060","name":"Urbane and Worldly","permission":{"default":0},"type":"peculiarity","data":{"in_curriculum":false,"xp_used":0,"rank":0,"bought_at_rank":0,"ring":"void","peculiarity_type":"distinction","types":"Interpersonal, Physical","description":"","source_reference":{"source":"path_of_waves","page":"70"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/peculiarity.svg","effects":[]}
|
||||
{"_id":"L5RCoreDis000061","name":"Dead Eyes","permission":{"default":0},"type":"peculiarity","data":{"in_curriculum":false,"xp_used":0,"rank":0,"bought_at_rank":0,"ring":"earth","peculiarity_type":"distinction","types":"Mental","description":"","source_reference":{"source":"shadowlands","page":"96"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/peculiarity.svg","effects":[]}
|
||||
{"_id":"L5RCoreDis000062","name":"Light Sleeper","permission":{"default":0},"type":"peculiarity","data":{"in_curriculum":false,"xp_used":0,"rank":0,"bought_at_rank":0,"ring":"water","peculiarity_type":"distinction","types":"Physical","description":"","source_reference":{"source":"shadowlands","page":"96"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/peculiarity.svg","effects":[]}
|
||||
{"_id":"L5RCoreDis000063","name":"Friend of the Nezumi","permission":{"default":0},"type":"peculiarity","data":{"in_curriculum":false,"xp_used":0,"rank":0,"bought_at_rank":0,"ring":"water","peculiarity_type":"distinction","types":"Interpersonal","description":"","source_reference":{"source":"shadowlands","page":"96"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/peculiarity.svg","effects":[]}
|
||||
{"_id":"L5RCoreDis000064","name":"Blood of Osano-Wo","permission":{"default":0},"type":"peculiarity","data":{"in_curriculum":false,"xp_used":0,"rank":0,"bought_at_rank":0,"ring":"fire","peculiarity_type":"distinction","types":"Mental, Spiritual","description":"","source_reference":{"source":"the_mantis_clan","page":"7"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/peculiarity.svg","effects":[]}
|
||||
{"_id":"L5RCoreDis000065","name":"Sea Legs","permission":{"default":0},"type":"peculiarity","data":{"in_curriculum":false,"xp_used":0,"rank":0,"bought_at_rank":0,"ring":"water","peculiarity_type":"distinction","types":"Physical","description":"","source_reference":{"source":"the_mantis_clan","page":"7"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/peculiarity.svg","effects":[]}
|
||||
{"_id":"L5RCoreDis000066","name":"Guiding Ancestor","permission":{"default":0},"type":"peculiarity","data":{"in_curriculum":false,"xp_used":0,"rank":0,"bought_at_rank":0,"ring":"void","peculiarity_type":"distinction","types":"Spiritual","description":"","source_reference":{"source":"fields_of_victory","page":"82"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/peculiarity.svg","effects":[]}
|
||||
{"_id":"L5RCoreDis000067","name":"Traditional Adherent","permission":{"default":0},"type":"peculiarity","data":{"in_curriculum":false,"xp_used":0,"rank":0,"bought_at_rank":0,"ring":"earth","peculiarity_type":"distinction","types":"Mental","description":"","source_reference":{"source":"fields_of_victory","page":"82"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/peculiarity.svg","effects":[]}
|
||||
{"_id":"L5RCoreDis000068","name":"Passion for [Foreign Performing Art Form]","permission":{"default":0},"type":"peculiarity","data":{"in_curriculum":false,"xp_used":0,"rank":0,"bought_at_rank":0,"ring":"air","peculiarity_type":"distinction","types":"Fame, Interpersonal","description":"","source_reference":{"source":"path_of_waves","page":"71"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/peculiarity.svg","effects":[]}
|
||||
{"_id":"L5RCoreDis000069","name":"Knowledgeable Wilderness Guide","permission":{"default":0},"type":"peculiarity","data":{"in_curriculum":false,"xp_used":0,"rank":0,"bought_at_rank":0,"ring":"void","peculiarity_type":"distinction","types":"Interpersonal, Spiritual","description":"","source_reference":{"source":"writ_of_the_wild","page":"102"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/peculiarity.svg","effects":[]}
|
||||
{"_id":"L5RCoreDis000070","name":"Skilled Midwife","permission":{"default":0},"type":"peculiarity","data":{"in_curriculum":false,"xp_used":0,"rank":0,"bought_at_rank":0,"ring":"fire","peculiarity_type":"distinction","types":"Interpersonal","description":"","source_reference":{"source":"writ_of_the_wild","page":"102"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/peculiarity.svg","effects":[]}
|
||||
{"_id":"L5RCoreDis000071","name":"Thoughtful Arbiter","permission":{"default":0},"type":"peculiarity","data":{"in_curriculum":false,"xp_used":0,"rank":0,"bought_at_rank":0,"ring":"water","peculiarity_type":"distinction","types":"Interpersonal","description":"","source_reference":{"source":"writ_of_the_wild","page":"102"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/peculiarity.svg","effects":[]}
|
||||
@@ -1,43 +0,0 @@
|
||||
{"_id":"L5RCorePas000001","name":"Animal Bond","permission":{"default":0},"type":"peculiarity","data":{"in_curriculum":false,"xp_used":0,"rank":0,"bought_at_rank":0,"ring":"earth","peculiarity_type":"passion","types":"Interpersonal, Mental","description":"","source_reference":{"source":"core_rulebook","page":"111"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/peculiarity.svg","effects":[]}
|
||||
{"_id":"L5RCorePas000002","name":"Armament","permission":{"default":0},"type":"peculiarity","data":{"in_curriculum":false,"xp_used":0,"rank":0,"bought_at_rank":0,"ring":"earth","peculiarity_type":"passion","types":"Mental","description":"","source_reference":{"source":"core_rulebook","page":"111"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/peculiarity.svg","effects":[]}
|
||||
{"_id":"L5RCorePas000003","name":"Brushwork","permission":{"default":0},"type":"peculiarity","data":{"in_curriculum":false,"xp_used":0,"rank":0,"bought_at_rank":0,"ring":"air","peculiarity_type":"passion","types":"Mental, Physical","description":"","source_reference":{"source":"core_rulebook","page":"111"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/peculiarity.svg","effects":[]}
|
||||
{"_id":"L5RCorePas000004","name":"Curiosity","permission":{"default":0},"type":"peculiarity","data":{"in_curriculum":false,"xp_used":0,"rank":0,"bought_at_rank":0,"ring":"fire","peculiarity_type":"passion","types":"Mental","description":"","source_reference":{"source":"core_rulebook","page":"112"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/peculiarity.svg","effects":[]}
|
||||
{"_id":"L5RCorePas000005","name":"Daredevil","permission":{"default":0},"type":"peculiarity","data":{"in_curriculum":false,"xp_used":0,"rank":0,"bought_at_rank":0,"ring":"fire","peculiarity_type":"passion","types":"Mental, Physical","description":"","source_reference":{"source":"core_rulebook","page":"112"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/peculiarity.svg","effects":[]}
|
||||
{"_id":"L5RCorePas000006","name":"Enlightenment","permission":{"default":0},"type":"peculiarity","data":{"in_curriculum":false,"xp_used":0,"rank":0,"bought_at_rank":0,"ring":"void","peculiarity_type":"passion","types":"Spiritual","description":"","source_reference":{"source":"core_rulebook","page":"112"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/peculiarity.svg","effects":[]}
|
||||
{"_id":"L5RCorePas000007","name":"Fashion","permission":{"default":0},"type":"peculiarity","data":{"in_curriculum":false,"xp_used":0,"rank":0,"bought_at_rank":0,"ring":"fire","peculiarity_type":"passion","types":"Interpersonal, Mental","description":"","source_reference":{"source":"core_rulebook","page":"112"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/peculiarity.svg","effects":[]}
|
||||
{"_id":"L5RCorePas000008","name":"Fortune-Telling","permission":{"default":0},"type":"peculiarity","data":{"in_curriculum":false,"xp_used":0,"rank":0,"bought_at_rank":0,"ring":"void","peculiarity_type":"passion","types":"Mental, Spiritual","description":"","source_reference":{"source":"core_rulebook","page":"112"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/peculiarity.svg","effects":[]}
|
||||
{"_id":"L5RCorePas000009","name":"Generosity","permission":{"default":0},"type":"peculiarity","data":{"in_curriculum":false,"xp_used":0,"rank":0,"bought_at_rank":0,"ring":"water","peculiarity_type":"passion","types":"Interpersonal","description":"","source_reference":{"source":"core_rulebook","page":"113"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/peculiarity.svg","effects":[]}
|
||||
{"_id":"L5RCorePas000010","name":"Gossip","permission":{"default":0},"type":"peculiarity","data":{"in_curriculum":false,"xp_used":0,"rank":0,"bought_at_rank":0,"ring":"air","peculiarity_type":"passion","types":"Interpersonal","description":"","source_reference":{"source":"core_rulebook","page":"113"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/peculiarity.svg","effects":[]}
|
||||
{"_id":"L5RCorePas000011","name":"History","permission":{"default":0},"type":"peculiarity","data":{"in_curriculum":false,"xp_used":0,"rank":0,"bought_at_rank":0,"ring":"earth","peculiarity_type":"passion","types":"Mental","description":"","source_reference":{"source":"core_rulebook","page":"113"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/peculiarity.svg","effects":[]}
|
||||
{"_id":"L5RCorePas000012","name":"Ikebana","permission":{"default":0},"type":"peculiarity","data":{"in_curriculum":false,"xp_used":0,"rank":0,"bought_at_rank":0,"ring":"water","peculiarity_type":"passion","types":"Mental","description":"","source_reference":{"source":"core_rulebook","page":"113"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/peculiarity.svg","effects":[]}
|
||||
{"_id":"L5RCorePas000013","name":"Playfulness","permission":{"default":0},"type":"peculiarity","data":{"in_curriculum":false,"xp_used":0,"rank":0,"bought_at_rank":0,"ring":"air","peculiarity_type":"passion","types":"Interpersonal","description":"","source_reference":{"source":"core_rulebook","page":"114"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/peculiarity.svg","effects":[]}
|
||||
{"_id":"L5RCorePas000014","name":"Provocation","permission":{"default":0},"type":"peculiarity","data":{"in_curriculum":false,"xp_used":0,"rank":0,"bought_at_rank":0,"ring":"fire","peculiarity_type":"passion","types":"Interpersonal","description":"","source_reference":{"source":"core_rulebook","page":"114"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/peculiarity.svg","effects":[]}
|
||||
{"_id":"L5RCorePas000015","name":"Sake","permission":{"default":0},"type":"peculiarity","data":{"in_curriculum":false,"xp_used":0,"rank":0,"bought_at_rank":0,"ring":"water","peculiarity_type":"passion","types":"Mental","description":"","source_reference":{"source":"core_rulebook","page":"114"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/peculiarity.svg","effects":[]}
|
||||
{"_id":"L5RCorePas000016","name":"Secrets","permission":{"default":0},"type":"peculiarity","data":{"in_curriculum":false,"xp_used":0,"rank":0,"bought_at_rank":0,"ring":"void","peculiarity_type":"passion","types":"Interpersonal, Mental","description":"","source_reference":{"source":"core_rulebook","page":"115"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/peculiarity.svg","effects":[]}
|
||||
{"_id":"L5RCorePas000017","name":"Stories","permission":{"default":0},"type":"peculiarity","data":{"in_curriculum":false,"xp_used":0,"rank":0,"bought_at_rank":0,"ring":"earth","peculiarity_type":"passion","types":"Interpersonal, Mental","description":"","source_reference":{"source":"core_rulebook","page":"115"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/peculiarity.svg","effects":[]}
|
||||
{"_id":"L5RCorePas000018","name":"Tea","permission":{"default":0},"type":"peculiarity","data":{"in_curriculum":false,"xp_used":0,"rank":0,"bought_at_rank":0,"ring":"void","peculiarity_type":"passion","types":"Physical, Spiritual","description":"","source_reference":{"source":"core_rulebook","page":"115"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/peculiarity.svg","effects":[]}
|
||||
{"_id":"L5RCorePas000019","name":"Travel","permission":{"default":0},"type":"peculiarity","data":{"in_curriculum":false,"xp_used":0,"rank":0,"bought_at_rank":0,"ring":"water","peculiarity_type":"passion","types":"Mental, Physical","description":"","source_reference":{"source":"core_rulebook","page":"115"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/peculiarity.svg","effects":[]}
|
||||
{"_id":"L5RCorePas000020","name":"Wordplay","permission":{"default":0},"type":"peculiarity","data":{"in_curriculum":false,"xp_used":0,"rank":0,"bought_at_rank":0,"ring":"air","peculiarity_type":"passion","types":"Interpersonal, Mental","description":"","source_reference":{"source":"core_rulebook","page":"116"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/peculiarity.svg","effects":[]}
|
||||
{"_id":"L5RCorePas000021","name":"Bathing","permission":{"default":0},"type":"peculiarity","data":{"in_curriculum":false,"xp_used":0,"rank":0,"bought_at_rank":0,"ring":"water","peculiarity_type":"passion","types":"Interpersonal, Mental","description":"","source_reference":{"source":"celestial_realms","page":"90"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/peculiarity.svg","effects":[]}
|
||||
{"_id":"L5RCorePas000022","name":"Kyudo","permission":{"default":0},"type":"peculiarity","data":{"in_curriculum":false,"xp_used":0,"rank":0,"bought_at_rank":0,"ring":"void","peculiarity_type":"passion","types":"Mental, Physical","description":"","source_reference":{"source":"celestial_realms","page":"90"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/peculiarity.svg","effects":[]}
|
||||
{"_id":"L5RCorePas000023","name":"Kabuki","permission":{"default":0},"type":"peculiarity","data":{"in_curriculum":false,"xp_used":0,"rank":0,"bought_at_rank":0,"ring":"air","peculiarity_type":"passion","types":"Interpersonal, Mental","description":"","source_reference":{"source":"celestial_realms","page":"90"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/peculiarity.svg","effects":[]}
|
||||
{"_id":"L5RCorePas000024","name":"Festivals","permission":{"default":0},"type":"peculiarity","data":{"in_curriculum":false,"xp_used":0,"rank":0,"bought_at_rank":0,"ring":"fire","peculiarity_type":"passion","types":"Mental","description":"","source_reference":{"source":"celestial_realms","page":"90"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/peculiarity.svg","effects":[]}
|
||||
{"_id":"L5RCorePas000025","name":"Religious Study","permission":{"default":0},"type":"peculiarity","data":{"in_curriculum":false,"xp_used":0,"rank":0,"bought_at_rank":0,"ring":"void","peculiarity_type":"passion","types":"Mental, Spiritual","description":"","source_reference":{"source":"celestial_realms","page":"91"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/peculiarity.svg","effects":[]}
|
||||
{"_id":"L5RCorePas000026","name":"Local Flare for {Region}","permission":{"default":0},"type":"peculiarity","data":{"in_curriculum":false,"xp_used":0,"rank":0,"bought_at_rank":0,"ring":"earth","peculiarity_type":"passion","types":"Interpersonal","description":"","source_reference":{"source":"court_of_stones","page":"100"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/peculiarity.svg","effects":[]}
|
||||
{"_id":"L5RCorePas000027","name":"Decorum","permission":{"default":0},"type":"peculiarity","data":{"in_curriculum":false,"xp_used":0,"rank":0,"bought_at_rank":0,"ring":"water","peculiarity_type":"passion","types":"Interpersonal, Mental","description":"","source_reference":{"source":"court_of_stones","page":"100"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/peculiarity.svg","effects":[]}
|
||||
{"_id":"L5RCorePas000028","name":"Pot Stirrer","permission":{"default":0},"type":"peculiarity","data":{"in_curriculum":false,"xp_used":0,"rank":0,"bought_at_rank":0,"ring":"fire","peculiarity_type":"passion","types":"Interpersonal, Mental","description":"","source_reference":{"source":"court_of_stones","page":"101"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/peculiarity.svg","effects":[]}
|
||||
{"_id":"L5RCorePas000029","name":"City [Choose One]","permission":{"default":0},"type":"peculiarity","data":{"in_curriculum":false,"xp_used":0,"rank":0,"bought_at_rank":0,"ring":"water","peculiarity_type":"passion","types":"Interpersonal, Mental","description":"","source_reference":{"source":"emerald_empire","page":"243"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/peculiarity.svg","effects":[]}
|
||||
{"_id":"L5RCorePas000030","name":"Bonsai","permission":{"default":0},"type":"peculiarity","data":{"in_curriculum":false,"xp_used":0,"rank":0,"bought_at_rank":0,"ring":"air","peculiarity_type":"passion","types":"Mental","description":"","source_reference":{"source":"emerald_empire","page":"243"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/peculiarity.svg","effects":[]}
|
||||
{"_id":"L5RCorePas000031","name":"Gourmet","permission":{"default":0},"type":"peculiarity","data":{"in_curriculum":false,"xp_used":0,"rank":0,"bought_at_rank":0,"ring":"water","peculiarity_type":"passion","types":"Interpersonal, Mental","description":"","source_reference":{"source":"emerald_empire","page":"243"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/peculiarity.svg","effects":[]}
|
||||
{"_id":"L5RCorePas000032","name":"Rock Gardening","permission":{"default":0},"type":"peculiarity","data":{"in_curriculum":false,"xp_used":0,"rank":0,"bought_at_rank":0,"ring":"void","peculiarity_type":"passion","types":"Mental","description":"","source_reference":{"source":"emerald_empire","page":"244"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/peculiarity.svg","effects":[]}
|
||||
{"_id":"L5RCorePas000033","name":"Military History","permission":{"default":0},"type":"peculiarity","data":{"in_curriculum":false,"xp_used":0,"rank":0,"bought_at_rank":0,"ring":"earth","peculiarity_type":"passion","types":"Mental","description":"","source_reference":{"source":"emerald_empire","page":"244"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/peculiarity.svg","effects":[]}
|
||||
{"_id":"L5RCorePas000034","name":"Navigator","permission":{"default":0},"type":"peculiarity","data":{"in_curriculum":false,"xp_used":0,"rank":0,"bought_at_rank":0,"ring":"fire","peculiarity_type":"passion","types":"Mental","description":"","source_reference":{"source":"emerald_empire","page":"244"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/peculiarity.svg","effects":[]}
|
||||
{"_id":"L5RCorePas000035","name":"Researcher","permission":{"default":0},"type":"peculiarity","data":{"in_curriculum":false,"xp_used":0,"rank":0,"bought_at_rank":0,"ring":"air","peculiarity_type":"passion","types":"Mental","description":"","source_reference":{"source":"emerald_empire","page":"244"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/peculiarity.svg","effects":[]}
|
||||
{"_id":"L5RCorePas000036","name":"Honest Work","permission":{"default":0},"type":"peculiarity","data":{"in_curriculum":false,"xp_used":0,"rank":0,"bought_at_rank":0,"ring":"earth","peculiarity_type":"passion","types":"Interpersonal, Mental","description":"","source_reference":{"source":"path_of_waves","page":"70"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/peculiarity.svg","effects":[]}
|
||||
{"_id":"L5RCorePas000037","name":"Attention","permission":{"default":0},"type":"peculiarity","data":{"in_curriculum":false,"xp_used":0,"rank":0,"bought_at_rank":0,"ring":"fire","peculiarity_type":"passion","types":"Mental","description":"","source_reference":{"source":"path_of_waves","page":"70"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/peculiarity.svg","effects":[]}
|
||||
{"_id":"L5RCorePas000039","name":"Creatures","permission":{"default":0},"type":"peculiarity","data":{"in_curriculum":false,"xp_used":0,"rank":0,"bought_at_rank":0,"ring":"fire","peculiarity_type":"passion","types":"Mental","description":"","source_reference":{"source":"shadowlands","page":"97"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/peculiarity.svg","effects":[]}
|
||||
{"_id":"L5RCorePas000040","name":"KnotWork","permission":{"default":0},"type":"peculiarity","data":{"in_curriculum":false,"xp_used":0,"rank":0,"bought_at_rank":0,"ring":"air","peculiarity_type":"passion","types":"Mental","description":"","source_reference":{"source":"the_mantis_clan","page":"7"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/peculiarity.svg","effects":[]}
|
||||
{"_id":"L5RCorePas000041","name":"Ancestry","permission":{"default":0},"type":"peculiarity","data":{"in_curriculum":false,"xp_used":0,"rank":0,"bought_at_rank":0,"ring":"earth","peculiarity_type":"passion","types":"Mental","description":"","source_reference":{"source":"fields_of_victory","page":"83"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/peculiarity.svg","effects":[]}
|
||||
{"_id":"L5RCorePas000042","name":"Glorious Deeds","permission":{"default":0},"type":"peculiarity","data":{"in_curriculum":false,"xp_used":0,"rank":0,"bought_at_rank":0,"ring":"fire","peculiarity_type":"passion","types":"Martial, Social","description":"","source_reference":{"source":"fields_of_victory","page":"83"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/peculiarity.svg","effects":[]}
|
||||
{"_id":"L5RCorePas000043","name":"Charity","permission":{"default":0},"type":"peculiarity","data":{"in_curriculum":false,"xp_used":0,"rank":0,"bought_at_rank":0,"ring":"water","peculiarity_type":"passion","types":"Interpersonal, Mental","description":"","source_reference":{"source":"writ_of_the_wild","page":"103"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/peculiarity.svg","effects":[]}
|
||||
{"_id":"L5RCorePas000044","name":"Kintsugi","permission":{"default":0},"type":"peculiarity","data":{"in_curriculum":false,"xp_used":0,"rank":0,"bought_at_rank":0,"ring":"earth","peculiarity_type":"passion","types":"Mental, Physical","description":"","source_reference":{"source":"writ_of_the_wild","page":"104"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/peculiarity.svg","effects":[]}
|
||||
@@ -1,34 +0,0 @@
|
||||
{"_id":"L5RCorePro000001","name":"Razor-Edged","permission":{"default":0},"type":"property","data":{"properties":[],"description":"","source_reference":{"source":"core_rulebook","page":"241"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/property.svg","effects":[]}
|
||||
{"_id":"L5RCorePro000002","name":"Ceremonial","permission":{"default":0},"type":"property","data":{"properties":[{"id":"L5RCorePro000012","name":"Mundane"}],"description":"","source_reference":{"source":"core_rulebook","page":"240"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/property.svg","effects":[]}
|
||||
{"_id":"L5RCorePro000003","name":"Damaged","permission":{"default":0},"type":"property","data":{"properties":[{"id":"L5RCorePro000015","name":"Durable"}],"description":"","source_reference":{"source":"core_rulebook","page":"240"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/property.svg","effects":[]}
|
||||
{"_id":"L5RCorePro000004","name":"Destroyed","permission":{"default":0},"type":"property","data":{"properties":[],"description":"","source_reference":{"source":"core_rulebook","page":"240"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/property.svg","effects":[]}
|
||||
{"_id":"L5RCorePro000005","name":"Concealable","permission":{"default":0},"type":"property","data":{"properties":[{"id":"L5RCorePro000006","name":"Cumbersome"}],"description":"","source_reference":{"source":"core_rulebook","page":"240"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/property.svg","effects":[]}
|
||||
{"_id":"L5RCorePro000006","name":"Cumbersome","permission":{"default":0},"type":"property","data":{"properties":[{"id":"L5RCorePro000005","name":"Concealable"}],"description":"","source_reference":{"source":"core_rulebook","page":"240"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/property.svg","effects":[]}
|
||||
{"_id":"L5RCorePro000007","name":"Snaring","permission":{"default":0},"type":"property","data":{"properties":[],"description":"","source_reference":{"source":"core_rulebook","page":"241"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/property.svg","effects":[]}
|
||||
{"_id":"L5RCorePro000008","name":"Unholy","permission":{"default":0},"type":"property","data":{"properties":[{"id":"L5RCorePro000014","name":"Sacred"}],"description":"","source_reference":{"source":"core_rulebook","page":"241"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/property.svg","effects":[]}
|
||||
{"_id":"L5RCorePro000009","name":"Forbidden","permission":{"default":0},"type":"property","data":{"properties":[],"description":"","source_reference":{"source":"core_rulebook","page":"240"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/property.svg","effects":[]}
|
||||
{"_id":"L5RCorePro000010","name":"Resplendent","permission":{"default":0},"type":"property","data":{"properties":[{"id":"L5RCorePro000016","name":"Subtle"}],"description":"","source_reference":{"source":"core_rulebook","page":"241"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/property.svg","effects":[]}
|
||||
{"_id":"L5RCorePro000011","name":"Wargear","permission":{"default":0},"type":"property","data":{"properties":[{"id":"L5RCorePro000016","name":"Subtle"}],"description":"","source_reference":{"source":"core_rulebook","page":"241"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/property.svg","effects":[]}
|
||||
{"_id":"L5RCorePro000012","name":"Mundane","permission":{"default":0},"type":"property","data":{"properties":[{"id":"L5RCorePro000002","name":"Ceremonial"}],"description":"","source_reference":{"source":"core_rulebook","page":"240"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/property.svg","effects":[]}
|
||||
{"_id":"L5RCorePro000013","name":"Prepare","permission":{"default":0},"type":"property","data":{"properties":[],"description":"","source_reference":{"source":"core_rulebook","page":"240"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/property.svg","effects":[]}
|
||||
{"_id":"L5RCorePro000014","name":"Sacred","permission":{"default":0},"type":"property","data":{"properties":[{"id":"L5RCorePro000008","name":"Unholy"}],"description":"","source_reference":{"source":"core_rulebook","page":"241"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/property.svg","effects":[]}
|
||||
{"_id":"L5RCorePro000015","name":"Durable","permission":{"default":0},"type":"property","data":{"properties":[{"id":"L5RCorePro000003","name":"Damaged"}],"description":"","source_reference":{"source":"core_rulebook","page":"240"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/property.svg","effects":[]}
|
||||
{"_id":"L5RCorePro000016","name":"Subtle","permission":{"default":0},"type":"property","data":{"properties":[{"id":"L5RCorePro000010","name":"Resplendent"},{"id":"L5RCorePro000011","name":"Wargear"}],"description":"","source_reference":{"source":"core_rulebook","page":"241"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/property.svg","effects":[]}
|
||||
{"_id":"L5RCorePro000017","name":"Kakita Pattern","permission":{"default":0},"type":"property","data":{"properties":[],"description":"","source_reference":{"source":"shadowlands","page":"109"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/property.svg","effects":[]}
|
||||
{"_id":"L5RCorePro000018","name":"Kenzō Blade","permission":{"default":0},"type":"property","data":{"properties":[],"description":"","source_reference":{"source":"shadowlands","page":"109"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/property.svg","effects":[]}
|
||||
{"_id":"L5RCorePro000019","name":"Shirogane Jade Inlay","permission":{"default":0},"type":"property","data":{"properties":[],"description":"","source_reference":{"source":"shadowlands","page":"109"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/property.svg","effects":[]}
|
||||
{"_id":"L5RCorePro000020","name":"Uchema’s Technique","permission":{"default":0},"type":"property","data":{"properties":[{"id":"L5RCorePro000006","name":"Cumbersome"}],"description":"","source_reference":{"source":"shadowlands","page":"109"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/property.svg","effects":[]}
|
||||
{"_id":"L5RCorePro000021","name":"Yasunori Steel","permission":{"default":0},"type":"property","data":{"properties":[{"id":"L5RCorePro000002","name":"Ceremonial"},{"id":"L5RCorePro000006","name":"Cumbersome"},{"id":"L5RCorePro000010","name":"Resplendent"}],"description":"","source_reference":{"source":"shadowlands","page":"109"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/property.svg","effects":[]}
|
||||
{"_id":"L5RCorePro000022","name":"Akodo Pattern","permission":{"default":0},"type":"property","data":{"properties":[],"description":"","source_reference":{"source":"fields_of_victory","page":"93"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/property.svg","effects":[]}
|
||||
{"_id":"L5RCorePro000023","name":"Burning Watter Pattern","permission":{"default":0},"type":"property","data":{"properties":[],"description":"","source_reference":{"source":"fields_of_victory","page":"93"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/property.svg","effects":[]}
|
||||
{"_id":"L5RCorePro000024","name":"Concealment Pattern","permission":{"default":0},"type":"property","data":{"properties":[{"id":"L5RCorePro000002","name":"Ceremonial"},{"id":"L5RCorePro000010","name":"Resplendent"}],"description":"","source_reference":{"source":"fields_of_victory","page":"93"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/property.svg","effects":[]}
|
||||
{"_id":"L5RCorePro000025","name":"Deadly Fangs Pattern","permission":{"default":0},"type":"property","data":{"properties":[],"description":"","source_reference":{"source":"fields_of_victory","page":"94"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/property.svg","effects":[]}
|
||||
{"_id":"L5RCorePro000026","name":"Fearsome Snarl Pattern","permission":{"default":0},"type":"property","data":{"properties":[{"id":"L5RCorePro000005","name":"Concealable"}],"description":"","source_reference":{"source":"fields_of_victory","page":"94"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/property.svg","effects":[]}
|
||||
{"_id":"L5RCorePro000027","name":"Ichirō Pattern","permission":{"default":0},"type":"property","data":{"properties":[{"id":"L5RCorePro000002","name":"Ceremonial"},{"id":"L5RCorePro000010","name":"Resplendent"}],"description":"","source_reference":{"source":"fields_of_victory","page":"94"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/property.svg","effects":[]}
|
||||
{"_id":"L5RCorePro000028","name":"Mountain Silk Pattern","permission":{"default":0},"type":"property","data":{"properties":[{"id":"L5RCorePro000006","name":"Cumbersome"}],"description":"","source_reference":{"source":"fields_of_victory","page":"94"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/property.svg","effects":[]}
|
||||
{"_id":"L5RCorePro000029","name":"Screaming Fire Pattern","permission":{"default":0},"type":"property","data":{"properties":[],"description":"","source_reference":{"source":"fields_of_victory","page":"94"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/property.svg","effects":[]}
|
||||
{"_id":"L5RCorePro000030","name":"Toriyama's Endurance Pattern","permission":{"default":0},"type":"property","data":{"properties":[],"description":"","source_reference":{"source":"fields_of_victory","page":"94"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/property.svg","effects":[]}
|
||||
{"_id":"L5RCorePro000031","name":"Spirit of the Qamarist Pattern","permission":{"default":0},"type":"property","data":{"properties":[],"description":"","source_reference":{"source":"path_of_waves","page":"117"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/property.svg","effects":[]}
|
||||
{"_id":"L5RCorePro000032","name":"Ghostlands Yodhaniya Pattern","permission":{"default":0},"type":"property","data":{"properties":[],"description":"","source_reference":{"source":"path_of_waves","page":"117"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/property.svg","effects":[]}
|
||||
{"_id":"L5RCorePro000033","name":"Kökejin’s Heart of the Wind Pattern","permission":{"default":0},"type":"property","data":{"properties":[],"description":"","source_reference":{"source":"path_of_waves","page":"117"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/property.svg","effects":[]}
|
||||
{"_id":"L5RCorePro000034","name":"Agasha Pattern","permission":{"default":0},"type":"property","data":{"properties":[],"description":"","source_reference":{"source":"celestial_realms","page":"105"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/property.svg","effects":[]}
|
||||
@@ -1,3 +0,0 @@
|
||||
{"_id":"L5RCoreSig000001","name":"Ichi’s Second Sight","permission":{"default":0},"type":"signature_scroll","data":{"in_curriculum":false,"xp_used":0,"rank":1,"bought_at_rank":0,"ring":"void","xp_cost":"3","description":"","source_reference":{"source":"shadowlands","page":"108"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/signature_scroll.svg","effects":[]}
|
||||
{"_id":"L5RCoreSig000002","name":"Hasegawa’s Denial","permission":{"default":0},"type":"signature_scroll","data":{"in_curriculum":false,"xp_used":0,"rank":1,"bought_at_rank":0,"ring":"void","xp_cost":"3","description":"","source_reference":{"source":"shadowlands","page":"108"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/signature_scroll.svg","effects":[]}
|
||||
{"_id":"L5RCoreSig000003","name":"Maikara’s Rebuke","permission":{"default":0},"type":"signature_scroll","data":{"in_curriculum":false,"xp_used":0,"rank":1,"bought_at_rank":0,"ring":"void","xp_cost":"3","description":"","source_reference":{"source":"shadowlands","page":"108"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/signature_scroll.svg","effects":[]}
|
||||
@@ -1,16 +0,0 @@
|
||||
{"_id":"L5RCoreIns000001","name":"One Within the Void","permission":{"default":0},"type":"technique","data":{"in_curriculum":false,"xp_used":0,"rank":"1","bought_at_rank":0,"ring":"void","skill":"sentiment","difficulty":"2","technique_type":"inversion","xp_cost":"6","description":"","source_reference":{"source":"celestial_realms","page":"114"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/techs/inversion.svg","effects":[]}
|
||||
{"_id":"L5RCoreIns000002","name":"Sight beyond Existence","permission":{"default":0},"type":"technique","data":{"in_curriculum":false,"xp_used":0,"rank":"1","bought_at_rank":0,"ring":"void","skill":"theology","difficulty":"2","technique_type":"inversion","xp_cost":"6","description":"","source_reference":{"source":"celestial_realms","page":"115"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/techs/inversion.svg","effects":[]}
|
||||
{"_id":"L5RCoreIns000003","name":"Whispered Blade","permission":{"default":0},"type":"technique","data":{"in_curriculum":false,"xp_used":0,"rank":"1","bought_at_rank":0,"ring":"void","skill":"theology","difficulty":"2","technique_type":"inversion","xp_cost":"6","description":"","source_reference":{"source":"celestial_realms","page":"115"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/techs/inversion.svg","effects":[]}
|
||||
{"_id":"L5RCoreIns000004","name":"Witness the End","permission":{"default":0},"type":"technique","data":{"in_curriculum":false,"xp_used":0,"rank":"1","bought_at_rank":0,"ring":"void","skill":"theology","difficulty":"@T:vigilance","technique_type":"inversion","xp_cost":"6","description":"","source_reference":{"source":"celestial_realms","page":"116"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/techs/inversion.svg","effects":[]}
|
||||
{"_id":"L5RCoreIns000005","name":"Distance Distorted","permission":{"default":0},"type":"technique","data":{"in_curriculum":false,"xp_used":0,"rank":"2","bought_at_rank":0,"ring":"void","skill":"theology","difficulty":"3","technique_type":"inversion","xp_cost":"6","description":"","source_reference":{"source":"celestial_realms","page":"116"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/techs/inversion.svg","effects":[]}
|
||||
{"_id":"L5RCoreIns000006","name":"Ethereal Flicker","permission":{"default":0},"type":"technique","data":{"in_curriculum":false,"xp_used":0,"rank":"2","bought_at_rank":0,"ring":"void","skill":"theology","difficulty":"3","technique_type":"inversion","xp_cost":"6","description":"","source_reference":{"source":"celestial_realms","page":"116"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/techs/inversion.svg","effects":[]}
|
||||
{"_id":"L5RCoreIns000007","name":"The Lotus Bloom","permission":{"default":0},"type":"technique","data":{"in_curriculum":false,"xp_used":0,"rank":"2","bought_at_rank":0,"ring":"void","skill":"theology","difficulty":"3","technique_type":"inversion","xp_cost":"6","description":"","source_reference":{"source":"celestial_realms","page":"117"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/techs/inversion.svg","effects":[]}
|
||||
{"_id":"L5RCoreIns000008","name":"Hurl from the Stream","permission":{"default":0},"type":"technique","data":{"in_curriculum":false,"xp_used":0,"rank":"3","bought_at_rank":0,"ring":"void","skill":"theology","difficulty":"@T:vigilance","technique_type":"inversion","xp_cost":"6","description":"","source_reference":{"source":"celestial_realms","page":"117"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/techs/inversion.svg","effects":[]}
|
||||
{"_id":"L5RCoreIns000009","name":"Moon on the Shifting Sea","permission":{"default":0},"type":"technique","data":{"in_curriculum":false,"xp_used":0,"rank":"3","bought_at_rank":0,"ring":"void","skill":"theology","difficulty":"3","technique_type":"inversion","xp_cost":"6","description":"","source_reference":{"source":"celestial_realms","page":"118"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/techs/inversion.svg","effects":[]}
|
||||
{"_id":"L5RCoreIns000010","name":"Shroud in Solitude","permission":{"default":0},"type":"technique","data":{"in_curriculum":false,"xp_used":0,"rank":"3","bought_at_rank":0,"ring":"void","skill":"theology","difficulty":"3","technique_type":"inversion","xp_cost":"6","description":"","source_reference":{"source":"celestial_realms","page":"118"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/techs/inversion.svg","effects":[]}
|
||||
{"_id":"L5RCoreIns000011","name":"Reality Stitch","permission":{"default":0},"type":"technique","data":{"in_curriculum":false,"xp_used":0,"rank":"4","bought_at_rank":0,"ring":"void","skill":"theology","difficulty":"@T:vigilance|max","technique_type":"inversion","xp_cost":"6","description":"","source_reference":{"source":"celestial_realms","page":"119"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/techs/inversion.svg","effects":[]}
|
||||
{"_id":"L5RCoreIns000012","name":"Shattering Caress","permission":{"default":0},"type":"technique","data":{"in_curriculum":false,"xp_used":0,"rank":"4","bought_at_rank":0,"ring":"void","skill":"unarmed,melee","difficulty":"3","technique_type":"inversion","xp_cost":"6","description":"","source_reference":{"source":"celestial_realms","page":"119"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/techs/inversion.svg","effects":[]}
|
||||
{"_id":"L5RCoreIns000013","name":"Three Heartbeats","permission":{"default":0},"type":"technique","data":{"in_curriculum":false,"xp_used":0,"rank":"4","bought_at_rank":0,"ring":"void","skill":"theology","difficulty":"4","technique_type":"inversion","xp_cost":"6","description":"","source_reference":{"source":"celestial_realms","page":"119"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/techs/inversion.svg","effects":[]}
|
||||
{"_id":"L5RCoreIns000014","name":"Essence Eternal","permission":{"default":0},"type":"technique","data":{"in_curriculum":false,"xp_used":0,"rank":"5","bought_at_rank":0,"ring":"void","skill":"theology","difficulty":"4","technique_type":"inversion","xp_cost":"6","description":"","source_reference":{"source":"celestial_realms","page":"119"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/techs/inversion.svg","effects":[]}
|
||||
{"_id":"L5RCoreIns000015","name":"Slip the Cycle","permission":{"default":0},"type":"technique","data":{"in_curriculum":false,"xp_used":0,"rank":"5","bought_at_rank":0,"ring":"void","skill":"theology","difficulty":"3","technique_type":"inversion","xp_cost":"6","description":"","source_reference":{"source":"celestial_realms","page":"120"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/techs/inversion.svg","effects":[]}
|
||||
{"_id":"L5RCoreIns000016","name":"Unweave","permission":{"default":0},"type":"technique","data":{"in_curriculum":false,"xp_used":0,"rank":"5","bought_at_rank":0,"ring":"void","skill":"theology","difficulty":"4","technique_type":"inversion","xp_cost":"6","description":"","source_reference":{"source":"celestial_realms","page":"120"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/techs/inversion.svg","effects":[]}
|
||||
@@ -1,75 +0,0 @@
|
||||
{"_id":"L5RCoreInv000001","name":"Rise, Air","permission":{"default":0},"type":"technique","data":{"in_curriculum":false,"xp_used":0,"rank":"4","bought_at_rank":0,"ring":"air","skill":"theology","difficulty":"6","technique_type":"invocation","xp_cost":"3","description":"","source_reference":{"source":"core_rulebook","page":"194"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/techs/invocation.svg","effects":[]}
|
||||
{"_id":"L5RCoreInv000002","name":"Nature’s Touch","permission":{"default":0},"type":"technique","data":{"in_curriculum":false,"xp_used":0,"rank":"1","bought_at_rank":0,"ring":"air","skill":"theology","difficulty":"1","technique_type":"invocation","xp_cost":"3","description":"","source_reference":{"source":"core_rulebook","page":"194"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/techs/invocation.svg","effects":[]}
|
||||
{"_id":"L5RCoreInv000003","name":"Wrath of Kaze-no-Kami","permission":{"default":0},"type":"technique","data":{"in_curriculum":false,"xp_used":0,"rank":"5","bought_at_rank":0,"ring":"air","skill":"theology","difficulty":"5","technique_type":"invocation","xp_cost":"3","description":"","source_reference":{"source":"core_rulebook","page":"196"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/techs/invocation.svg","effects":[]}
|
||||
{"_id":"L5RCoreInv000004","name":"Secrets on the Wind","permission":{"default":0},"type":"technique","data":{"in_curriculum":false,"xp_used":0,"rank":"2","bought_at_rank":0,"ring":"air","skill":"theology","difficulty":"3","technique_type":"invocation","xp_cost":"3","description":"","source_reference":{"source":"core_rulebook","page":"194"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/techs/invocation.svg","effects":[]}
|
||||
{"_id":"L5RCoreInv000005","name":"Vapor of Nightmares","permission":{"default":0},"type":"technique","data":{"in_curriculum":false,"xp_used":0,"rank":"3","bought_at_rank":0,"ring":"air","skill":"theology","difficulty":"4","technique_type":"invocation","xp_cost":"3","description":"","source_reference":{"source":"core_rulebook","page":"195"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/techs/invocation.svg","effects":[]}
|
||||
{"_id":"L5RCoreInv000006","name":"Grasp of the Air Dragon","permission":{"default":0},"type":"technique","data":{"in_curriculum":false,"xp_used":0,"rank":"3","bought_at_rank":0,"ring":"air","skill":"theology","difficulty":"4","technique_type":"invocation","xp_cost":"3","description":"","source_reference":{"source":"core_rulebook","page":"193"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/techs/invocation.svg","effects":[]}
|
||||
{"_id":"L5RCoreInv000007","name":"Blessed Wind","permission":{"default":0},"type":"technique","data":{"in_curriculum":false,"xp_used":0,"rank":"1","bought_at_rank":0,"ring":"air","skill":"theology","difficulty":"2","technique_type":"invocation","xp_cost":"3","description":"","source_reference":{"source":"core_rulebook","page":"192"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/techs/invocation.svg","effects":[]}
|
||||
{"_id":"L5RCoreInv000008","name":"By the Light of the Lord Moon","permission":{"default":0},"type":"technique","data":{"in_curriculum":false,"xp_used":0,"rank":"1","bought_at_rank":0,"ring":"air","skill":"theology","difficulty":"2","technique_type":"invocation","xp_cost":"3","description":"","source_reference":{"source":"core_rulebook","page":"192"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/techs/invocation.svg","effects":[]}
|
||||
{"_id":"L5RCoreInv000009","name":"Call Upon the Wind","permission":{"default":0},"type":"technique","data":{"in_curriculum":false,"xp_used":0,"rank":"2","bought_at_rank":0,"ring":"air","skill":"theology","difficulty":"4","technique_type":"invocation","xp_cost":"3","description":"","source_reference":{"source":"core_rulebook","page":"192"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/techs/invocation.svg","effects":[]}
|
||||
{"_id":"L5RCoreInv000010","name":"Cloak of Night","permission":{"default":0},"type":"technique","data":{"in_curriculum":false,"xp_used":0,"rank":"1","bought_at_rank":0,"ring":"air","skill":"theology","difficulty":"2","technique_type":"invocation","xp_cost":"3","description":"","source_reference":{"source":"core_rulebook","page":"192"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/techs/invocation.svg","effects":[]}
|
||||
{"_id":"L5RCoreInv000011","name":"False Realm of the Fox Spirits","permission":{"default":0},"type":"technique","data":{"in_curriculum":false,"xp_used":0,"rank":"4","bought_at_rank":0,"ring":"air","skill":"theology","difficulty":"5","technique_type":"invocation","xp_cost":"3","description":"","source_reference":{"source":"core_rulebook","page":"193"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/techs/invocation.svg","effects":[]}
|
||||
{"_id":"L5RCoreInv000012","name":"Mask of Wind","permission":{"default":0},"type":"technique","data":{"in_curriculum":false,"xp_used":0,"rank":"2","bought_at_rank":0,"ring":"air","skill":"theology","difficulty":"3","technique_type":"invocation","xp_cost":"3","description":"","source_reference":{"source":"core_rulebook","page":"193"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/techs/invocation.svg","effects":[]}
|
||||
{"_id":"L5RCoreInv000013","name":"Summon Fog","permission":{"default":0},"type":"technique","data":{"in_curriculum":false,"xp_used":0,"rank":"2","bought_at_rank":0,"ring":"air","skill":"theology","difficulty":"2","technique_type":"invocation","xp_cost":"3","description":"","source_reference":{"source":"core_rulebook","page":"195"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/techs/invocation.svg","effects":[]}
|
||||
{"_id":"L5RCoreInv000014","name":"Tempest of Air","permission":{"default":0},"type":"technique","data":{"in_curriculum":false,"xp_used":0,"rank":"1","bought_at_rank":0,"ring":"air","skill":"theology","difficulty":"3","technique_type":"invocation","xp_cost":"3","description":"","source_reference":{"source":"core_rulebook","page":"195"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/techs/invocation.svg","effects":[]}
|
||||
{"_id":"L5RCoreInv000015","name":"Token of Memory","permission":{"default":0},"type":"technique","data":{"in_curriculum":false,"xp_used":0,"rank":"1","bought_at_rank":0,"ring":"air","skill":"theology","difficulty":"2","technique_type":"invocation","xp_cost":"3","description":"","source_reference":{"source":"core_rulebook","page":"195"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/techs/invocation.svg","effects":[]}
|
||||
{"_id":"L5RCoreInv000016","name":"Yari of Air","permission":{"default":0},"type":"technique","data":{"in_curriculum":false,"xp_used":0,"rank":"1","bought_at_rank":0,"ring":"air","skill":"theology","difficulty":"1","technique_type":"invocation","xp_cost":"3","description":"","source_reference":{"source":"core_rulebook","page":"196"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/techs/invocation.svg","effects":[]}
|
||||
{"_id":"L5RCoreInv000017","name":"Armor of Earth","permission":{"default":0},"type":"technique","data":{"in_curriculum":false,"xp_used":0,"rank":"1","bought_at_rank":0,"ring":"earth","skill":"theology","difficulty":"2","technique_type":"invocation","xp_cost":"3","description":"","source_reference":{"source":"core_rulebook","page":"197"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/techs/invocation.svg","effects":[]}
|
||||
{"_id":"L5RCoreInv000018","name":"Bind the Shadow","permission":{"default":0},"type":"technique","data":{"in_curriculum":false,"xp_used":0,"rank":"2","bought_at_rank":0,"ring":"earth","skill":"theology","difficulty":"3","technique_type":"invocation","xp_cost":"3","description":"","source_reference":{"source":"core_rulebook","page":"197"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/techs/invocation.svg","effects":[]}
|
||||
{"_id":"L5RCoreInv000019","name":"Caress of Earth","permission":{"default":0},"type":"technique","data":{"in_curriculum":false,"xp_used":0,"rank":"1","bought_at_rank":0,"ring":"earth","skill":"theology","difficulty":"3","technique_type":"invocation","xp_cost":"3","description":"","source_reference":{"source":"core_rulebook","page":"197"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/techs/invocation.svg","effects":[]}
|
||||
{"_id":"L5RCoreInv000020","name":"Courage of Seven Thunders","permission":{"default":0},"type":"technique","data":{"in_curriculum":false,"xp_used":0,"rank":"1","bought_at_rank":0,"ring":"earth","skill":"theology","difficulty":"2","technique_type":"invocation","xp_cost":"3","description":"","source_reference":{"source":"core_rulebook","page":"197"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/techs/invocation.svg","effects":[]}
|
||||
{"_id":"L5RCoreInv000021","name":"Earthquake","permission":{"default":0},"type":"technique","data":{"in_curriculum":false,"xp_used":0,"rank":"4","bought_at_rank":0,"ring":"earth","skill":"theology","difficulty":"5","technique_type":"invocation","xp_cost":"3","description":"","source_reference":{"source":"core_rulebook","page":"198"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/techs/invocation.svg","effects":[]}
|
||||
{"_id":"L5RCoreInv000022","name":"Earth Becomes Sky","permission":{"default":0},"type":"technique","data":{"in_curriculum":false,"xp_used":0,"rank":"3","bought_at_rank":0,"ring":"earth","skill":"theology","difficulty":"3","technique_type":"invocation","xp_cost":"3","description":"","source_reference":{"source":"core_rulebook","page":"198"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/techs/invocation.svg","effects":[]}
|
||||
{"_id":"L5RCoreInv000023","name":"Embrace of Kenro-Ji-Jin","permission":{"default":0},"type":"technique","data":{"in_curriculum":false,"xp_used":0,"rank":"2","bought_at_rank":0,"ring":"earth","skill":"theology","difficulty":"2","technique_type":"invocation","xp_cost":"3","description":"","source_reference":{"source":"core_rulebook","page":"198"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/techs/invocation.svg","effects":[]}
|
||||
{"_id":"L5RCoreInv000024","name":"Grasp of Earth","permission":{"default":0},"type":"technique","data":{"in_curriculum":false,"xp_used":0,"rank":"1","bought_at_rank":0,"ring":"earth","skill":"theology","difficulty":"2","technique_type":"invocation","xp_cost":"3","description":"","source_reference":{"source":"core_rulebook","page":"199"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/techs/invocation.svg","effects":[]}
|
||||
{"_id":"L5RCoreInv000025","name":"Jade Strike","permission":{"default":0},"type":"technique","data":{"in_curriculum":false,"xp_used":0,"rank":"1","bought_at_rank":0,"ring":"earth","skill":"theology","difficulty":"2","technique_type":"invocation","xp_cost":"3","description":"","source_reference":{"source":"core_rulebook","page":"199"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/techs/invocation.svg","effects":[]}
|
||||
{"_id":"L5RCoreInv000026","name":"Jurōjin’s Balm","permission":{"default":0},"type":"technique","data":{"in_curriculum":false,"xp_used":0,"rank":"1","bought_at_rank":0,"ring":"earth","skill":"theology","difficulty":"1","technique_type":"invocation","xp_cost":"3","description":"","source_reference":{"source":"core_rulebook","page":"199"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/techs/invocation.svg","effects":[]}
|
||||
{"_id":"L5RCoreInv000027","name":"Power of the Earth Dragon","permission":{"default":0},"type":"technique","data":{"in_curriculum":false,"xp_used":0,"rank":"3","bought_at_rank":0,"ring":"earth","skill":"theology","difficulty":"4","technique_type":"invocation","xp_cost":"3","description":"","source_reference":{"source":"core_rulebook","page":"200"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/techs/invocation.svg","effects":[]}
|
||||
{"_id":"L5RCoreInv000028","name":"Rise, Earth","permission":{"default":0},"type":"technique","data":{"in_curriculum":false,"xp_used":0,"rank":"4","bought_at_rank":0,"ring":"earth","skill":"theology","difficulty":"6","technique_type":"invocation","xp_cost":"3","description":"","source_reference":{"source":"core_rulebook","page":"200"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/techs/invocation.svg","effects":[]}
|
||||
{"_id":"L5RCoreInv000029","name":"Symbol of Earth","permission":{"default":0},"type":"technique","data":{"in_curriculum":false,"xp_used":0,"rank":"2","bought_at_rank":0,"ring":"earth","skill":"theology","difficulty":"3","technique_type":"invocation","xp_cost":"3","description":"","source_reference":{"source":"core_rulebook","page":"200"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/techs/invocation.svg","effects":[]}
|
||||
{"_id":"L5RCoreInv000030","name":"Tetsubō of Earth","permission":{"default":0},"type":"technique","data":{"in_curriculum":false,"xp_used":0,"rank":"1","bought_at_rank":0,"ring":"earth","skill":"theology","difficulty":"1","technique_type":"invocation","xp_cost":"3","description":"","source_reference":{"source":"core_rulebook","page":"200"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/techs/invocation.svg","effects":[]}
|
||||
{"_id":"L5RCoreInv000031","name":"Tomb of Jade","permission":{"default":0},"type":"technique","data":{"in_curriculum":false,"xp_used":0,"rank":"5","bought_at_rank":0,"ring":"earth","skill":"theology","difficulty":"6","technique_type":"invocation","xp_cost":"3","description":"","source_reference":{"source":"core_rulebook","page":"201"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/techs/invocation.svg","effects":[]}
|
||||
{"_id":"L5RCoreInv000032","name":"Wall of Earth","permission":{"default":0},"type":"technique","data":{"in_curriculum":false,"xp_used":0,"rank":"1","bought_at_rank":0,"ring":"earth","skill":"theology","difficulty":"2","technique_type":"invocation","xp_cost":"3","description":"","source_reference":{"source":"core_rulebook","page":"201"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/techs/invocation.svg","effects":[]}
|
||||
{"_id":"L5RCoreInv000033","name":"Armor of Radiance","permission":{"default":0},"type":"technique","data":{"in_curriculum":false,"xp_used":0,"rank":"2","bought_at_rank":0,"ring":"fire","skill":"theology","difficulty":"2","technique_type":"invocation","xp_cost":"3","description":"","source_reference":{"source":"core_rulebook","page":"202"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/techs/invocation.svg","effects":[]}
|
||||
{"_id":"L5RCoreInv000034","name":"Biting Steel","permission":{"default":0},"type":"technique","data":{"in_curriculum":false,"xp_used":0,"rank":"1","bought_at_rank":0,"ring":"fire","skill":"theology","difficulty":"2","technique_type":"invocation","xp_cost":"3","description":"","source_reference":{"source":"core_rulebook","page":"202"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/techs/invocation.svg","effects":[]}
|
||||
{"_id":"L5RCoreInv000035","name":"Breath of the Fire Dragon","permission":{"default":0},"type":"technique","data":{"in_curriculum":false,"xp_used":0,"rank":"3","bought_at_rank":0,"ring":"fire","skill":"theology","difficulty":"4","technique_type":"invocation","xp_cost":"3","description":"","source_reference":{"source":"core_rulebook","page":"202"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/techs/invocation.svg","effects":[]}
|
||||
{"_id":"L5RCoreInv000036","name":"Extinguish","permission":{"default":0},"type":"technique","data":{"in_curriculum":false,"xp_used":0,"rank":"1","bought_at_rank":0,"ring":"fire","skill":"theology","difficulty":"3","technique_type":"invocation","xp_cost":"3","description":"","source_reference":{"source":"core_rulebook","page":"202"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/techs/invocation.svg","effects":[]}
|
||||
{"_id":"L5RCoreInv000037","name":"Fukurokujin’s Wit","permission":{"default":0},"type":"technique","data":{"in_curriculum":false,"xp_used":0,"rank":"1","bought_at_rank":0,"ring":"fire","skill":"theology","difficulty":"1","technique_type":"invocation","xp_cost":"3","description":"","source_reference":{"source":"core_rulebook","page":"203"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/techs/invocation.svg","effects":[]}
|
||||
{"_id":"L5RCoreInv000038","name":"Fury of Osano-wo","permission":{"default":0},"type":"technique","data":{"in_curriculum":false,"xp_used":0,"rank":"3","bought_at_rank":0,"ring":"fire","skill":"theology","difficulty":"5","technique_type":"invocation","xp_cost":"3","description":"","source_reference":{"source":"core_rulebook","page":"203"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/techs/invocation.svg","effects":[]}
|
||||
{"_id":"L5RCoreInv000039","name":"Katana of Fire","permission":{"default":0},"type":"technique","data":{"in_curriculum":false,"xp_used":0,"rank":"1","bought_at_rank":0,"ring":"fire","skill":"theology","difficulty":"1","technique_type":"invocation","xp_cost":"3","description":"","source_reference":{"source":"core_rulebook","page":"203"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/techs/invocation.svg","effects":[]}
|
||||
{"_id":"L5RCoreInv000040","name":"Matsu's Battlecry","permission":{"default":0},"type":"technique","data":{"in_curriculum":false,"xp_used":0,"rank":"1","bought_at_rank":0,"ring":"fire","skill":"theology","difficulty":"@T:vigilance|max","technique_type":"invocation","xp_cost":"3","description":"","source_reference":{"source":"core_rulebook","page":"204"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/techs/invocation.svg","effects":[]}
|
||||
{"_id":"L5RCoreInv000041","name":"Ravenous Swarms","permission":{"default":0},"type":"technique","data":{"in_curriculum":false,"xp_used":0,"rank":"3","bought_at_rank":0,"ring":"fire","skill":"theology","difficulty":"3","technique_type":"invocation","xp_cost":"3","description":"","source_reference":{"source":"core_rulebook","page":"204"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/techs/invocation.svg","effects":[]}
|
||||
{"_id":"L5RCoreInv000042","name":"Rise, Flame","permission":{"default":0},"type":"technique","data":{"in_curriculum":false,"xp_used":0,"rank":"4","bought_at_rank":0,"ring":"fire","skill":"theology","difficulty":"6","technique_type":"invocation","xp_cost":"3","description":"","source_reference":{"source":"core_rulebook","page":"204"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/techs/invocation.svg","effects":[]}
|
||||
{"_id":"L5RCoreInv000043","name":"The Cleansing Fire","permission":{"default":0},"type":"technique","data":{"in_curriculum":false,"xp_used":0,"rank":"1","bought_at_rank":0,"ring":"fire","skill":"theology","difficulty":"1","technique_type":"invocation","xp_cost":"3","description":"","source_reference":{"source":"core_rulebook","page":"204"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/techs/invocation.svg","effects":[]}
|
||||
{"_id":"L5RCoreInv000044","name":"The Fires from Within","permission":{"default":0},"type":"technique","data":{"in_curriculum":false,"xp_used":0,"rank":"1","bought_at_rank":0,"ring":"fire","skill":"theology","difficulty":"3","technique_type":"invocation","xp_cost":"3","description":"","source_reference":{"source":"core_rulebook","page":"205"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/techs/invocation.svg","effects":[]}
|
||||
{"_id":"L5RCoreInv000045","name":"The Soul’s Blade","permission":{"default":0},"type":"technique","data":{"in_curriculum":false,"xp_used":0,"rank":"5","bought_at_rank":0,"ring":"fire","skill":"theology","difficulty":"4","technique_type":"invocation","xp_cost":"3","description":"","source_reference":{"source":"core_rulebook","page":"205"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/techs/invocation.svg","effects":[]}
|
||||
{"_id":"L5RCoreInv000046","name":"Wall of Fire","permission":{"default":0},"type":"technique","data":{"in_curriculum":false,"xp_used":0,"rank":"2","bought_at_rank":0,"ring":"fire","skill":"theology","difficulty":"4","technique_type":"invocation","xp_cost":"3","description":"","source_reference":{"source":"core_rulebook","page":"205"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/techs/invocation.svg","effects":[]}
|
||||
{"_id":"L5RCoreInv000047","name":"Wings of the Phoenix","permission":{"default":0},"type":"technique","data":{"in_curriculum":false,"xp_used":0,"rank":"4","bought_at_rank":0,"ring":"fire","skill":"theology","difficulty":"4","technique_type":"invocation","xp_cost":"3","description":"","source_reference":{"source":"core_rulebook","page":"206"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/techs/invocation.svg","effects":[]}
|
||||
{"_id":"L5RCoreInv000048","name":"Bō of Water","permission":{"default":0},"type":"technique","data":{"in_curriculum":false,"xp_used":0,"rank":"1","bought_at_rank":0,"ring":"water","skill":"theology","difficulty":"1","technique_type":"invocation","xp_cost":"3","description":"","source_reference":{"source":"core_rulebook","page":"207"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/techs/invocation.svg","effects":[]}
|
||||
{"_id":"L5RCoreInv000049","name":"Dance of Seasons","permission":{"default":0},"type":"technique","data":{"in_curriculum":false,"xp_used":0,"rank":"2","bought_at_rank":0,"ring":"water","skill":"theology","difficulty":"3","technique_type":"invocation","xp_cost":"3","description":"","source_reference":{"source":"core_rulebook","page":"207"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/techs/invocation.svg","effects":[]}
|
||||
{"_id":"L5RCoreInv000050","name":"Dominion of Suijin","permission":{"default":0},"type":"technique","data":{"in_curriculum":false,"xp_used":0,"rank":"1","bought_at_rank":0,"ring":"water","skill":"theology","difficulty":"2","technique_type":"invocation","xp_cost":"3","description":"","source_reference":{"source":"core_rulebook","page":"207"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/techs/invocation.svg","effects":[]}
|
||||
{"_id":"L5RCoreInv000051","name":"Ever-Changing Waves","permission":{"default":0},"type":"technique","data":{"in_curriculum":false,"xp_used":0,"rank":"5","bought_at_rank":0,"ring":"water","skill":"theology","difficulty":"4","technique_type":"invocation","xp_cost":"3","description":"","source_reference":{"source":"core_rulebook","page":"208"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/techs/invocation.svg","effects":[]}
|
||||
{"_id":"L5RCoreInv000052","name":"Hands of the Tides","permission":{"default":0},"type":"technique","data":{"in_curriculum":false,"xp_used":0,"rank":"3","bought_at_rank":0,"ring":"water","skill":"theology","difficulty":"5","technique_type":"invocation","xp_cost":"3","description":"","source_reference":{"source":"core_rulebook","page":"208"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/techs/invocation.svg","effects":[]}
|
||||
{"_id":"L5RCoreInv000053","name":"Heart of the Water Dragon","permission":{"default":0},"type":"technique","data":{"in_curriculum":false,"xp_used":0,"rank":"2","bought_at_rank":0,"ring":"water","skill":"theology","difficulty":"3","technique_type":"invocation","xp_cost":"3","description":"","source_reference":{"source":"core_rulebook","page":"208"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/techs/invocation.svg","effects":[]}
|
||||
{"_id":"L5RCoreInv000054","name":"Inari’s Blessing","permission":{"default":0},"type":"technique","data":{"in_curriculum":false,"xp_used":0,"rank":"1","bought_at_rank":0,"ring":"water","skill":"theology","difficulty":"2","technique_type":"invocation","xp_cost":"3","description":"","source_reference":{"source":"core_rulebook","page":"209"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/techs/invocation.svg","effects":[]}
|
||||
{"_id":"L5RCoreInv000055","name":"Path to Inner Peace","permission":{"default":0},"type":"technique","data":{"in_curriculum":false,"xp_used":0,"rank":"1","bought_at_rank":0,"ring":"water","skill":"theology","difficulty":"2","technique_type":"invocation","xp_cost":"3","description":"","source_reference":{"source":"core_rulebook","page":"209"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/techs/invocation.svg","effects":[]}
|
||||
{"_id":"L5RCoreInv000056","name":"Reflections of P’an Ku","permission":{"default":0},"type":"technique","data":{"in_curriculum":false,"xp_used":0,"rank":"1","bought_at_rank":0,"ring":"water","skill":"theology","difficulty":"2","technique_type":"invocation","xp_cost":"3","description":"","source_reference":{"source":"core_rulebook","page":"209"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/techs/invocation.svg","effects":[]}
|
||||
{"_id":"L5RCoreInv000057","name":"Rise, Water","permission":{"default":0},"type":"technique","data":{"in_curriculum":false,"xp_used":0,"rank":"4","bought_at_rank":0,"ring":"water","skill":"theology","difficulty":"6","technique_type":"invocation","xp_cost":"3","description":"","source_reference":{"source":"core_rulebook","page":"210"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/techs/invocation.svg","effects":[]}
|
||||
{"_id":"L5RCoreInv000058","name":"Stride the Waves","permission":{"default":0},"type":"technique","data":{"in_curriculum":false,"xp_used":0,"rank":"2","bought_at_rank":0,"ring":"water","skill":"theology","difficulty":"2","technique_type":"invocation","xp_cost":"3","description":"","source_reference":{"source":"core_rulebook","page":"211"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/techs/invocation.svg","effects":[]}
|
||||
{"_id":"L5RCoreInv000059","name":"Strike the Tsunami","permission":{"default":0},"type":"technique","data":{"in_curriculum":false,"xp_used":0,"rank":"3","bought_at_rank":0,"ring":"water","skill":"theology","difficulty":"4","technique_type":"invocation","xp_cost":"3","description":"","source_reference":{"source":"core_rulebook","page":"211"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/techs/invocation.svg","effects":[]}
|
||||
{"_id":"L5RCoreInv000060","name":"Suijin’s Embrace","permission":{"default":0},"type":"technique","data":{"in_curriculum":false,"xp_used":0,"rank":"4","bought_at_rank":0,"ring":"water","skill":"theology","difficulty":"4","technique_type":"invocation","xp_cost":"3","description":"","source_reference":{"source":"core_rulebook","page":"211"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/techs/invocation.svg","effects":[]}
|
||||
{"_id":"L5RCoreInv000061","name":"Sympathetic Energies","permission":{"default":0},"type":"technique","data":{"in_curriculum":false,"xp_used":0,"rank":"2","bought_at_rank":0,"ring":"water","skill":"theology","difficulty":"2","technique_type":"invocation","xp_cost":"3","description":"","source_reference":{"source":"core_rulebook","page":"211"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/techs/invocation.svg","effects":[]}
|
||||
{"_id":"L5RCoreInv000062","name":"The Rushing Wave","permission":{"default":0},"type":"technique","data":{"in_curriculum":false,"xp_used":0,"rank":"1","bought_at_rank":0,"ring":"water","skill":"theology","difficulty":"2","technique_type":"invocation","xp_cost":"3","description":"","source_reference":{"source":"core_rulebook","page":"211"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/techs/invocation.svg","effects":[]}
|
||||
{"_id":"L5RCoreInv000063","name":"Dream Painter","permission":{"default":0},"type":"technique","data":{"in_curriculum":false,"xp_used":0,"rank":"3","bought_at_rank":0,"ring":"air","skill":"theology","difficulty":"3","technique_type":"invocation","xp_cost":"3","description":"","source_reference":{"source":"celestial_realms","page":"105"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/techs/invocation.svg","effects":[]}
|
||||
{"_id":"L5RCoreInv000064","name":"Messenger of Chikusho-do","permission":{"default":0},"type":"technique","data":{"in_curriculum":false,"xp_used":0,"rank":"3","bought_at_rank":0,"ring":"air","skill":"theology","difficulty":"2","technique_type":"invocation","xp_cost":"3","description":"","source_reference":{"source":"celestial_realms","page":"106"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/techs/invocation.svg","effects":[]}
|
||||
{"_id":"L5RCoreInv000065","name":"The Fading Dream","permission":{"default":0},"type":"technique","data":{"in_curriculum":false,"xp_used":0,"rank":"5","bought_at_rank":0,"ring":"air","skill":"theology","difficulty":"2","technique_type":"invocation","xp_cost":"3","description":"","source_reference":{"source":"celestial_realms","page":"106"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/techs/invocation.svg","effects":[]}
|
||||
{"_id":"L5RCoreInv000066","name":"Bond of the Realms","permission":{"default":0},"type":"technique","data":{"in_curriculum":false,"xp_used":0,"rank":"3","bought_at_rank":0,"ring":"earth","skill":"theology","difficulty":"2","technique_type":"invocation","xp_cost":"3","description":"","source_reference":{"source":"celestial_realms","page":"107"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/techs/invocation.svg","effects":[]}
|
||||
{"_id":"L5RCoreInv000067","name":"Guardian of the Secret Gate","permission":{"default":0},"type":"technique","data":{"in_curriculum":false,"xp_used":0,"rank":"5","bought_at_rank":0,"ring":"earth","skill":"theology","difficulty":"5","technique_type":"invocation","xp_cost":"3","description":"","source_reference":{"source":"celestial_realms","page":"107"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/techs/invocation.svg","effects":[]}
|
||||
{"_id":"L5RCoreInv000068","name":"Emboldened Steed","permission":{"default":0},"type":"technique","data":{"in_curriculum":false,"xp_used":0,"rank":"3","bought_at_rank":0,"ring":"earth","skill":"theology","difficulty":"3","technique_type":"invocation","xp_cost":"3","description":"","source_reference":{"source":"celestial_realms","page":"107"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/techs/invocation.svg","effects":[]}
|
||||
{"_id":"L5RCoreInv000069","name":"Fluid Shadows","permission":{"default":0},"type":"technique","data":{"in_curriculum":false,"xp_used":0,"rank":"2","bought_at_rank":0,"ring":"water","skill":"theology","difficulty":"2","technique_type":"invocation","xp_cost":"3","description":"","source_reference":{"source":"celestial_realms","page":"108"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/techs/invocation.svg","effects":[]}
|
||||
{"_id":"L5RCoreInv000070","name":"Heart of the Lady Sun","permission":{"default":0},"type":"technique","data":{"in_curriculum":false,"xp_used":0,"rank":"5","bought_at_rank":0,"ring":"fire","skill":"theology","difficulty":"5","technique_type":"invocation","xp_cost":"3","description":"","source_reference":{"source":"celestial_realms","page":"108"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/techs/invocation.svg","effects":[]}
|
||||
{"_id":"L5RCoreInv000071","name":"Fires of Purity","permission":{"default":0},"type":"technique","data":{"in_curriculum":false,"xp_used":0,"rank":"2","bought_at_rank":0,"ring":"fire","skill":"theology","difficulty":"2","technique_type":"invocation","xp_cost":"3","description":"","source_reference":{"source":"celestial_realms","page":"108"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/techs/invocation.svg","effects":[]}
|
||||
{"_id":"L5RCoreInv000072","name":"Amaterasu's Gaze","permission":{"default":0},"type":"technique","data":{"in_curriculum":false,"xp_used":0,"rank":"1","bought_at_rank":0,"ring":"fire","skill":"theology","difficulty":"1","technique_type":"invocation","xp_cost":"3","description":"","source_reference":{"source":"celestial_realms","page":"108"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/techs/invocation.svg","effects":[]}
|
||||
{"_id":"L5RCoreInv000073","name":"Rain of Ten Thousand Lotuses","permission":{"default":0},"type":"technique","data":{"in_curriculum":false,"xp_used":0,"rank":"5","bought_at_rank":0,"ring":"water","skill":"theology","difficulty":"2","technique_type":"invocation","xp_cost":"3","description":"","source_reference":{"source":"celestial_realms","page":"109"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/techs/invocation.svg","effects":[]}
|
||||
{"_id":"L5RCoreInv000074","name":"Path of Beasts","permission":{"default":0},"type":"technique","data":{"in_curriculum":false,"xp_used":0,"rank":"3","bought_at_rank":0,"ring":"water","skill":"theology","difficulty":"2","technique_type":"invocation","xp_cost":"3","description":"","source_reference":{"source":"celestial_realms","page":"109"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/techs/invocation.svg","effects":[]}
|
||||
{"_id":"L5RCoreInv000075","name":"Essence of Jade","permission":{"default":0},"type":"technique","data":{"in_curriculum":false,"xp_used":0,"rank":"3","bought_at_rank":0,"ring":"earth","skill":"theology","difficulty":"3","technique_type":"invocation","xp_cost":"3","description":"","source_reference":{"source":"shadowlands","page":"114"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/techs/invocation.svg","effects":[]}
|
||||
@@ -1,80 +0,0 @@
|
||||
{"_id":"L5RCoreKat000001","name":"Flowing Water Strike","permission":{"default":0},"type":"technique","data":{"in_curriculum":false,"xp_used":0,"rank":"3","bought_at_rank":0,"ring":"water","skill":"melee","difficulty":"3","technique_type":"kata","xp_cost":"3","description":"","source_reference":{"source":"core_rulebook","page":"175"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/techs/kata.svg","effects":[]}
|
||||
{"_id":"L5RCoreKat000002","name":"Crimson Leaves Strike","permission":{"default":0},"type":"technique","data":{"in_curriculum":false,"xp_used":0,"rank":"3","bought_at_rank":0,"ring":"earth","skill":"melee","difficulty":"4","technique_type":"kata","xp_cost":"3","description":"","source_reference":{"source":"core_rulebook","page":"175"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/techs/kata.svg","effects":[]}
|
||||
{"_id":"L5RCoreKat000003","name":"Heartpiercing Strike","permission":{"default":0},"type":"technique","data":{"in_curriculum":false,"xp_used":0,"rank":"3","bought_at_rank":0,"ring":"fire","skill":"melee","difficulty":"4","technique_type":"kata","xp_cost":"3","description":"","source_reference":{"source":"core_rulebook","page":"176"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/techs/kata.svg","effects":[]}
|
||||
{"_id":"L5RCoreKat000004","name":"Battle in the Mind","permission":{"default":0},"type":"technique","data":{"in_curriculum":false,"xp_used":0,"rank":"3","bought_at_rank":0,"ring":"void","skill":"","difficulty":"","technique_type":"kata","xp_cost":"3","description":"","source_reference":{"source":"core_rulebook","page":"174"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/techs/kata.svg","effects":[]}
|
||||
{"_id":"L5RCoreKat000005","name":"Lord Shiba’s Valor (Phoenix)","permission":{"default":0},"type":"technique","data":{"in_curriculum":false,"xp_used":0,"rank":"2","bought_at_rank":0,"ring":"void","skill":"tactics","difficulty":"2","technique_type":"kata","xp_cost":"3","description":"","source_reference":{"source":"core_rulebook","page":"177"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/techs/kata.svg","effects":[]}
|
||||
{"_id":"L5RCoreKat000006","name":"Soul Sunder","permission":{"default":0},"type":"technique","data":{"in_curriculum":false,"xp_used":0,"rank":"5","bought_at_rank":0,"ring":"void","skill":"meditation","difficulty":"4","technique_type":"kata","xp_cost":"3","description":"","source_reference":{"source":"core_rulebook","page":"177"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/techs/kata.svg","effects":[]}
|
||||
{"_id":"L5RCoreKat000007","name":"Warrior’s Resolve","permission":{"default":0},"type":"technique","data":{"in_curriculum":false,"xp_used":0,"rank":"1","bought_at_rank":0,"ring":"void","skill":"","difficulty":"","technique_type":"kata","xp_cost":"3","description":"","source_reference":{"source":"core_rulebook","page":"178"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/techs/kata.svg","effects":[]}
|
||||
{"_id":"L5RCoreKat000008","name":"Tactical Assessment","permission":{"default":0},"type":"technique","data":{"in_curriculum":false,"xp_used":0,"rank":"2","bought_at_rank":0,"ring":"void","skill":"","difficulty":"","technique_type":"kata","xp_cost":"3","description":"","source_reference":{"source":"core_rulebook","page":"178"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/techs/kata.svg","effects":[]}
|
||||
{"_id":"L5RCoreKat000009","name":"Soaring Slice","permission":{"default":0},"type":"technique","data":{"in_curriculum":false,"xp_used":0,"rank":"1","bought_at_rank":0,"ring":"void","skill":"melee","difficulty":"2","technique_type":"kata","xp_cost":"3","description":"","source_reference":{"source":"core_rulebook","page":"177"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/techs/kata.svg","effects":[]}
|
||||
{"_id":"L5RCoreKat000010","name":"Striking as Air","permission":{"default":0},"type":"technique","data":{"in_curriculum":false,"xp_used":0,"rank":"1","bought_at_rank":0,"ring":"air","skill":"","difficulty":"","technique_type":"kata","xp_cost":"3","description":"","source_reference":{"source":"core_rulebook","page":"177"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/techs/kata.svg","effects":[]}
|
||||
{"_id":"L5RCoreKat000011","name":"Striking as Water","permission":{"default":0},"type":"technique","data":{"in_curriculum":false,"xp_used":0,"rank":"1","bought_at_rank":0,"ring":"water","skill":"","difficulty":"","technique_type":"kata","xp_cost":"3","description":"","source_reference":{"source":"core_rulebook","page":"178"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/techs/kata.svg","effects":[]}
|
||||
{"_id":"L5RCoreKat000012","name":"Striking as Earth","permission":{"default":0},"type":"technique","data":{"in_curriculum":false,"xp_used":0,"rank":"1","bought_at_rank":0,"ring":"earth","skill":"","difficulty":"","technique_type":"kata","xp_cost":"3","description":"","source_reference":{"source":"core_rulebook","page":"178"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/techs/kata.svg","effects":[]}
|
||||
{"_id":"L5RCoreKat000013","name":"Striking as Fire","permission":{"default":0},"type":"technique","data":{"in_curriculum":false,"xp_used":0,"rank":"1","bought_at_rank":0,"ring":"fire","skill":"","difficulty":"","technique_type":"kata","xp_cost":"3","description":"","source_reference":{"source":"core_rulebook","page":"178"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/techs/kata.svg","effects":[]}
|
||||
{"_id":"L5RCoreKat000014","name":"Striking as Void","permission":{"default":0},"type":"technique","data":{"in_curriculum":false,"xp_used":0,"rank":"5","bought_at_rank":0,"ring":"void","skill":"","difficulty":"","technique_type":"kata","xp_cost":"3","description":"","source_reference":{"source":"core_rulebook","page":"178"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/techs/kata.svg","effects":[]}
|
||||
{"_id":"L5RCoreKat000015","name":"Lord Hida’s Grip (Crab)","permission":{"default":0},"type":"technique","data":{"in_curriculum":false,"xp_used":0,"rank":"2","bought_at_rank":0,"ring":"void","skill":"fitness","difficulty":"3","technique_type":"kata","xp_cost":"3","description":"","source_reference":{"source":"core_rulebook","page":"176"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/techs/kata.svg","effects":[]}
|
||||
{"_id":"L5RCoreKat000016","name":"Disappearing World Style","permission":{"default":0},"type":"technique","data":{"in_curriculum":false,"xp_used":0,"rank":"4","bought_at_rank":0,"ring":"fire","skill":"","difficulty":"","technique_type":"kata","xp_cost":"3","description":"","source_reference":{"source":"core_rulebook","page":"175"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/techs/kata.svg","effects":[]}
|
||||
{"_id":"L5RCoreKat000017","name":"Crashing Wave Style","permission":{"default":0},"type":"technique","data":{"in_curriculum":false,"xp_used":0,"rank":"4","bought_at_rank":0,"ring":"water","skill":"","difficulty":"","technique_type":"kata","xp_cost":"3","description":"","source_reference":{"source":"core_rulebook","page":"175"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/techs/kata.svg","effects":[]}
|
||||
{"_id":"L5RCoreKat000018","name":"Crescent Moon Style","permission":{"default":0},"type":"technique","data":{"in_curriculum":false,"xp_used":0,"rank":"2","bought_at_rank":0,"ring":"void","skill":"","difficulty":"","technique_type":"kata","xp_cost":"3","description":"","source_reference":{"source":"core_rulebook","page":"175"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/techs/kata.svg","effects":[]}
|
||||
{"_id":"L5RCoreKat000019","name":"Iron in the Mountains Style","permission":{"default":0},"type":"technique","data":{"in_curriculum":false,"xp_used":0,"rank":"4","bought_at_rank":0,"ring":"earth","skill":"","difficulty":"","technique_type":"kata","xp_cost":"3","description":"","source_reference":{"source":"core_rulebook","page":"176"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/techs/kata.svg","effects":[]}
|
||||
{"_id":"L5RCoreKat000020","name":"Breath of Wind Style","permission":{"default":0},"type":"technique","data":{"in_curriculum":false,"xp_used":0,"rank":"4","bought_at_rank":0,"ring":"air","skill":"","difficulty":"","technique_type":"kata","xp_cost":"3","description":"","source_reference":{"source":"core_rulebook","page":"175"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/techs/kata.svg","effects":[]}
|
||||
{"_id":"L5RCoreKat000021","name":"Thunderclap Strike","permission":{"default":0},"type":"technique","data":{"in_curriculum":false,"xp_used":0,"rank":"3","bought_at_rank":0,"ring":"air","skill":"melee,unarmed","difficulty":"3","technique_type":"kata","xp_cost":"3","description":"","source_reference":{"source":"core_rulebook","page":"180"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/techs/kata.svg","effects":[]}
|
||||
{"_id":"L5RCoreKat000022","name":"Iaijutsu Cut: Rising Blade","permission":{"default":0},"type":"technique","data":{"in_curriculum":false,"xp_used":0,"rank":"2","bought_at_rank":0,"ring":"void","skill":"melee","difficulty":"@T:vigilance","technique_type":"kata","xp_cost":"3","description":"","source_reference":{"source":"core_rulebook","page":"179"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/techs/kata.svg","effects":[]}
|
||||
{"_id":"L5RCoreKat000023","name":"Iaijutsu Cut: Crossing Blade","permission":{"default":0},"type":"technique","data":{"in_curriculum":false,"xp_used":0,"rank":"2","bought_at_rank":0,"ring":"void","skill":"melee","difficulty":"2","technique_type":"kata","xp_cost":"3","description":"","source_reference":{"source":"core_rulebook","page":"179"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/techs/kata.svg","effects":[]}
|
||||
{"_id":"L5RCoreKat000024","name":"Rushing Avalanche Style","permission":{"default":0},"type":"technique","data":{"in_curriculum":false,"xp_used":0,"rank":"2","bought_at_rank":0,"ring":"earth","skill":"","difficulty":"","technique_type":"kata","xp_cost":"3","description":"","source_reference":{"source":"core_rulebook","page":"180"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/techs/kata.svg","effects":[]}
|
||||
{"_id":"L5RCoreKat000025","name":"Iron Forest Style","permission":{"default":0},"type":"technique","data":{"in_curriculum":false,"xp_used":0,"rank":"2","bought_at_rank":0,"ring":"void","skill":"","difficulty":"","technique_type":"kata","xp_cost":"3","description":"","source_reference":{"source":"core_rulebook","page":"180"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/techs/kata.svg","effects":[]}
|
||||
{"_id":"L5RCoreKat000026","name":"Open-Hand Style","permission":{"default":0},"type":"technique","data":{"in_curriculum":false,"xp_used":0,"rank":"2","bought_at_rank":0,"ring":"void","skill":"","difficulty":"","technique_type":"kata","xp_cost":"3","description":"","source_reference":{"source":"core_rulebook","page":"180"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/techs/kata.svg","effects":[]}
|
||||
{"_id":"L5RCoreKat000027","name":"Veiled Menace Style","permission":{"default":0},"type":"technique","data":{"in_curriculum":false,"xp_used":0,"rank":"2","bought_at_rank":0,"ring":"void","skill":"","difficulty":"","technique_type":"kata","xp_cost":"3","description":"","source_reference":{"source":"core_rulebook","page":"181"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/techs/kata.svg","effects":[]}
|
||||
{"_id":"L5RCoreKat000028","name":"Spinning Blades Style","permission":{"default":0},"type":"technique","data":{"in_curriculum":false,"xp_used":0,"rank":"2","bought_at_rank":0,"ring":"void","skill":"","difficulty":"","technique_type":"kata","xp_cost":"3","description":"","source_reference":{"source":"core_rulebook","page":"180"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/techs/kata.svg","effects":[]}
|
||||
{"_id":"L5RCoreKat000029","name":"Coiling Serpent Style","permission":{"default":0},"type":"technique","data":{"in_curriculum":false,"xp_used":0,"rank":"2","bought_at_rank":0,"ring":"void","skill":"","difficulty":"","technique_type":"kata","xp_cost":"3","description":"","source_reference":{"source":"core_rulebook","page":"179"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/techs/kata.svg","effects":[]}
|
||||
{"_id":"L5RCoreKat000030","name":"Pin the Fan","permission":{"default":0},"type":"technique","data":{"in_curriculum":false,"xp_used":0,"rank":"5","bought_at_rank":0,"ring":"void","skill":"ranged","difficulty":"@T:vigilance","technique_type":"kata","xp_cost":"3","description":"","source_reference":{"source":"core_rulebook","page":"181"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/techs/kata.svg","effects":[]}
|
||||
{"_id":"L5RCoreKat000031","name":"Hawk’s Precision","permission":{"default":0},"type":"technique","data":{"in_curriculum":false,"xp_used":0,"rank":"1","bought_at_rank":0,"ring":"void","skill":"","difficulty":"","technique_type":"kata","xp_cost":"3","description":"","source_reference":{"source":"core_rulebook","page":"181"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/techs/kata.svg","effects":[]}
|
||||
{"_id":"L5RCoreKat000032","name":"Pelting Hail Style","permission":{"default":0},"type":"technique","data":{"in_curriculum":false,"xp_used":0,"rank":"2","bought_at_rank":0,"ring":"void","skill":"","difficulty":"","technique_type":"kata","xp_cost":"3","description":"","source_reference":{"source":"core_rulebook","page":"181"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/techs/kata.svg","effects":[]}
|
||||
{"_id":"L5RCoreKat000033","name":"Trip the Leg","permission":{"default":0},"type":"technique","data":{"in_curriculum":false,"xp_used":0,"rank":"1","bought_at_rank":0,"ring":"air","skill":"melee","difficulty":"2","technique_type":"kata","xp_cost":"3","description":"","source_reference":{"source":"court_of_stones","page":"113"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/techs/kata.svg","effects":[]}
|
||||
{"_id":"L5RCoreKat000034","name":"Pole-Vault","permission":{"default":0},"type":"technique","data":{"in_curriculum":false,"xp_used":0,"rank":"3","bought_at_rank":0,"ring":"water","skill":"melee","difficulty":"2","technique_type":"kata","xp_cost":"3","description":"","source_reference":{"source":"court_of_stones","page":"113"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/techs/kata.svg","effects":[]}
|
||||
{"_id":"L5RCoreKat000035","name":"Chaotic Scattering","permission":{"default":0},"type":"technique","data":{"in_curriculum":false,"xp_used":0,"rank":"2","bought_at_rank":0,"ring":"air","skill":"survival","difficulty":"2","technique_type":"kata","xp_cost":"3","description":"","source_reference":{"source":"path_of_waves","page":"86"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/techs/kata.svg","effects":[]}
|
||||
{"_id":"L5RCoreKat000036","name":"Mind's Edge","permission":{"default":0},"type":"technique","data":{"in_curriculum":false,"xp_used":0,"rank":"1","bought_at_rank":0,"ring":"void","skill":"meditation","difficulty":"1","technique_type":"kata","xp_cost":"3","description":"","source_reference":{"source":"path_of_waves","page":"86"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/techs/kata.svg","effects":[]}
|
||||
{"_id":"L5RCoreKat000037","name":"Iron Shell Style","permission":{"default":0},"type":"technique","data":{"in_curriculum":false,"xp_used":0,"rank":"3","bought_at_rank":0,"ring":"earth","skill":"","difficulty":"","technique_type":"kata","xp_cost":"3","description":"","source_reference":{"source":"path_of_waves","page":"86"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/techs/kata.svg","effects":[]}
|
||||
{"_id":"L5RCoreKat000038","name":"Boar's Wrath Style","permission":{"default":0},"type":"technique","data":{"in_curriculum":false,"xp_used":0,"rank":"3","bought_at_rank":0,"ring":"fire","skill":"","difficulty":"","technique_type":"kata","xp_cost":"3","description":"","source_reference":{"source":"path_of_waves","page":"87"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/techs/kata.svg","effects":[]}
|
||||
{"_id":"L5RCoreKat000039","name":"Thunderous Hooves Style","permission":{"default":0},"type":"technique","data":{"in_curriculum":false,"xp_used":0,"rank":"4","bought_at_rank":0,"ring":"water","skill":"","difficulty":"","technique_type":"kata","xp_cost":"3","description":"","source_reference":{"source":"path_of_waves","page":"87"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/techs/kata.svg","effects":[]}
|
||||
{"_id":"L5RCoreKat000040","name":"Rider's Haste","permission":{"default":0},"type":"technique","data":{"in_curriculum":false,"xp_used":0,"rank":"2","bought_at_rank":0,"ring":"fire","skill":"","difficulty":"","technique_type":"kata","xp_cost":"3","description":"","source_reference":{"source":"path_of_waves","page":"87"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/techs/kata.svg","effects":[]}
|
||||
{"_id":"L5RCoreKat000041","name":"Void Embrace Style","permission":{"default":0},"type":"technique","data":{"in_curriculum":false,"xp_used":0,"rank":"5","bought_at_rank":0,"ring":"void","skill":"","difficulty":"","technique_type":"kata","xp_cost":"3","description":"","source_reference":{"source":"path_of_waves","page":"87"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/techs/kata.svg","effects":[]}
|
||||
{"_id":"L5RCoreKat000042","name":"Improvised Assault","permission":{"default":0},"type":"technique","data":{"in_curriculum":false,"xp_used":0,"rank":"3","bought_at_rank":0,"ring":"water","skill":"tactics,smithing","difficulty":"2","technique_type":"kata","xp_cost":"3","description":"","source_reference":{"source":"path_of_waves","page":"87"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/techs/kata.svg","effects":[]}
|
||||
{"_id":"L5RCoreKat000043","name":"Bonebreaker Style","permission":{"default":0},"type":"technique","data":{"in_curriculum":false,"xp_used":0,"rank":"5","bought_at_rank":0,"ring":"fire","skill":"","difficulty":"","technique_type":"kata","xp_cost":"3","description":"","source_reference":{"source":"path_of_waves","page":"88"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/techs/kata.svg","effects":[]}
|
||||
{"_id":"L5RCoreKat000044","name":"Flashing Steel Strike","permission":{"default":0},"type":"technique","data":{"in_curriculum":false,"xp_used":0,"rank":"2","bought_at_rank":0,"ring":"fire","skill":"melee","difficulty":"@T:vigilance","technique_type":"kata","xp_cost":"3","description":"","source_reference":{"source":"path_of_waves","page":"88"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/techs/kata.svg","effects":[]}
|
||||
{"_id":"L5RCoreKat000045","name":"Deflective Defense","permission":{"default":0},"type":"technique","data":{"in_curriculum":false,"xp_used":0,"rank":"3","bought_at_rank":0,"ring":"earth","skill":"melee","difficulty":"2","technique_type":"kata","xp_cost":"3","description":"","source_reference":{"source":"path_of_waves","page":"88"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/techs/kata.svg","effects":[]}
|
||||
{"_id":"L5RCoreKat000046","name":"Daring Swing","permission":{"default":0},"type":"technique","data":{"in_curriculum":false,"xp_used":0,"rank":"3","bought_at_rank":0,"ring":"water","skill":"melee","difficulty":"3","technique_type":"kata","xp_cost":"3","description":"","source_reference":{"source":"path_of_waves","page":"88"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/techs/kata.svg","effects":[]}
|
||||
{"_id":"L5RCoreKat000047","name":"Iaijutsu Cut: Reverse Draw","permission":{"default":0},"type":"technique","data":{"in_curriculum":false,"xp_used":0,"rank":"4","bought_at_rank":0,"ring":"void","skill":"melee","difficulty":"@T:vigilance","technique_type":"kata","xp_cost":"3","description":"","source_reference":{"source":"path_of_waves","page":"89"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/techs/kata.svg","effects":[]}
|
||||
{"_id":"L5RCoreKat000048","name":"Landslide Strike","permission":{"default":0},"type":"technique","data":{"in_curriculum":false,"xp_used":0,"rank":"2","bought_at_rank":0,"ring":"earth","skill":"melee","difficulty":"@T:vigilance","technique_type":"kata","xp_cost":"3","description":"","source_reference":{"source":"path_of_waves","page":"89"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/techs/kata.svg","effects":[]}
|
||||
{"_id":"L5RCoreKat000049","name":"Laughing Fox Style","permission":{"default":0},"type":"technique","data":{"in_curriculum":false,"xp_used":0,"rank":"4","bought_at_rank":0,"ring":"void","skill":"unarmed","difficulty":"@T:vigilance","technique_type":"kata","xp_cost":"3","description":"","source_reference":{"source":"path_of_waves","page":"89"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/techs/kata.svg","effects":[]}
|
||||
{"_id":"L5RCoreKat000050","name":"Iaijutsu Cut: Sword and Sheath","permission":{"default":0},"type":"technique","data":{"in_curriculum":false,"xp_used":0,"rank":"2","bought_at_rank":0,"ring":"void","skill":"melee","difficulty":"2","technique_type":"kata","xp_cost":"3","description":"","source_reference":{"source":"path_of_waves","page":"89"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/techs/kata.svg","effects":[]}
|
||||
{"_id":"L5RCoreKat000051","name":"Piercing Bolt Style","permission":{"default":0},"type":"technique","data":{"in_curriculum":false,"xp_used":0,"rank":"3","bought_at_rank":0,"ring":"void","skill":"","difficulty":"","technique_type":"kata","xp_cost":"3","description":"","source_reference":{"source":"path_of_waves","page":"90"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/techs/kata.svg","effects":[]}
|
||||
{"_id":"L5RCoreKat000052","name":"Reckless Lunge","permission":{"default":0},"type":"technique","data":{"in_curriculum":false,"xp_used":0,"rank":"2","bought_at_rank":0,"ring":"fire","skill":"unarmed","difficulty":"3","technique_type":"kata","xp_cost":"3","description":"","source_reference":{"source":"path_of_waves","page":"90"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/techs/kata.svg","effects":[]}
|
||||
{"_id":"L5RCoreKat000053","name":"Swirling Tempest Style","permission":{"default":0},"type":"technique","data":{"in_curriculum":false,"xp_used":0,"rank":"5","bought_at_rank":0,"ring":"void","skill":"","difficulty":"","technique_type":"kata","xp_cost":"3","description":"","source_reference":{"source":"path_of_waves","page":"90"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/techs/kata.svg","effects":[]}
|
||||
{"_id":"L5RCoreKat000054","name":"Snapping Branch Strike","permission":{"default":0},"type":"technique","data":{"in_curriculum":false,"xp_used":0,"rank":"1","bought_at_rank":0,"ring":"earth","skill":"fitness","difficulty":"3","technique_type":"kata","xp_cost":"3","description":"","source_reference":{"source":"path_of_waves","page":"90"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/techs/kata.svg","effects":[]}
|
||||
{"_id":"L5RCoreKat000055","name":"Thunderous Blows Style","permission":{"default":0},"type":"technique","data":{"in_curriculum":false,"xp_used":0,"rank":"2","bought_at_rank":0,"ring":"fire","skill":"","difficulty":"","technique_type":"kata","xp_cost":"3","description":"","source_reference":{"source":"path_of_waves","page":"90"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/techs/kata.svg","effects":[]}
|
||||
{"_id":"L5RCoreKat000056","name":"Rushing Ox Style","permission":{"default":0},"type":"technique","data":{"in_curriculum":false,"xp_used":0,"rank":"3","bought_at_rank":0,"ring":"fire","skill":"","difficulty":"","technique_type":"kata","xp_cost":"3","description":"","source_reference":{"source":"path_of_waves","page":"90"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/techs/kata.svg","effects":[]}
|
||||
{"_id":"L5RCoreKat000057","name":"Wheeling Sweep","permission":{"default":0},"type":"technique","data":{"in_curriculum":false,"xp_used":0,"rank":"3","bought_at_rank":0,"ring":"void","skill":"unarmed","difficulty":"@T:vigilance","technique_type":"kata","xp_cost":"3","description":"","source_reference":{"source":"path_of_waves","page":"91"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/techs/kata.svg","effects":[]}
|
||||
{"_id":"L5RCoreKat000058","name":"Eyeless Sight Shot","permission":{"default":0},"type":"technique","data":{"in_curriculum":false,"xp_used":0,"rank":"4","bought_at_rank":0,"ring":"void","skill":"ranged","difficulty":"@T:vigilance","technique_type":"kata","xp_cost":"3","description":"","source_reference":{"source":"path_of_waves","page":"91"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/techs/kata.svg","effects":[]}
|
||||
{"_id":"L5RCoreKat000059","name":"Twin Streams Style","permission":{"default":0},"type":"technique","data":{"in_curriculum":false,"xp_used":0,"rank":"3","bought_at_rank":0,"ring":"void","skill":"","difficulty":"","technique_type":"kata","xp_cost":"3","description":"","source_reference":{"source":"path_of_waves","page":"91"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/techs/kata.svg","effects":[]}
|
||||
{"_id":"L5RCoreKat000060","name":"Staggering Shot","permission":{"default":0},"type":"technique","data":{"in_curriculum":false,"xp_used":0,"rank":"2","bought_at_rank":0,"ring":"earth","skill":"","difficulty":"","technique_type":"kata","xp_cost":"3","description":"","source_reference":{"source":"path_of_waves","page":"91"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/techs/kata.svg","effects":[]}
|
||||
{"_id":"L5RCoreKat000061","name":"Falling Heavens Shot","permission":{"default":0},"type":"technique","data":{"in_curriculum":false,"xp_used":0,"rank":"5","bought_at_rank":0,"ring":"void","skill":"ranged","difficulty":"@T:vigilance","technique_type":"kata","xp_cost":"3","description":"","source_reference":{"source":"path_of_waves","page":"91"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/techs/kata.svg","effects":[]}
|
||||
{"_id":"L5RCoreKat000062","name":"Swirling Viper Style","permission":{"default":0},"type":"technique","data":{"in_curriculum":false,"xp_used":0,"rank":"3","bought_at_rank":0,"ring":"water","skill":"","difficulty":"","technique_type":"kata","xp_cost":"3","description":"","source_reference":{"source":"path_of_waves","page":"92"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/techs/kata.svg","effects":[]}
|
||||
{"_id":"L5RCoreKat000063","name":"Wasp's Spite Style","permission":{"default":0},"type":"technique","data":{"in_curriculum":false,"xp_used":0,"rank":"4","bought_at_rank":0,"ring":"void","skill":"","difficulty":"","technique_type":"kata","xp_cost":"3","description":"","source_reference":{"source":"path_of_waves","page":"92"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/techs/kata.svg","effects":[]}
|
||||
{"_id":"L5RCoreKat000065","name":"Fierce Badger Style","permission":{"default":0},"type":"technique","data":{"in_curriculum":false,"xp_used":0,"rank":"2","bought_at_rank":0,"ring":"void","skill":"","difficulty":"","technique_type":"kata","xp_cost":"3","description":"","source_reference":{"source":"fields_of_victory","page":"95"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/techs/kata.svg","effects":[]}
|
||||
{"_id":"L5RCoreKat000066","name":"Thicket's Embrace Style","permission":{"default":0},"type":"technique","data":{"in_curriculum":false,"xp_used":0,"rank":"3","bought_at_rank":0,"ring":"void","skill":"","difficulty":"","technique_type":"kata","xp_cost":"3","description":"","source_reference":{"source":"fields_of_victory","page":"95"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/techs/kata.svg","effects":[]}
|
||||
{"_id":"L5RCoreKat000067","name":"Shattering Tide Style","permission":{"default":0},"type":"technique","data":{"in_curriculum":false,"xp_used":0,"rank":"3","bought_at_rank":0,"ring":"void","skill":"","difficulty":"","technique_type":"kata","xp_cost":"3","description":"","source_reference":{"source":"fields_of_victory","page":"95"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/techs/kata.svg","effects":[]}
|
||||
{"_id":"L5RCoreKat000068","name":"Bear’s Swipe Style","permission":{"default":0},"type":"technique","data":{"in_curriculum":false,"xp_used":0,"rank":"1","bought_at_rank":0,"ring":"void","skill":"","difficulty":"","technique_type":"kata","xp_cost":"3","description":"","source_reference":{"source":"writ_of_the_wild","page":"114"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/techs/kata.svg","effects":[]}
|
||||
{"_id":"L5RCoreKat000069","name":"Serpent’s Twist Style","permission":{"default":0},"type":"technique","data":{"in_curriculum":false,"xp_used":0,"rank":"2","bought_at_rank":0,"ring":"void","skill":"","difficulty":"","technique_type":"kata","xp_cost":"3","description":"","source_reference":{"source":"writ_of_the_wild","page":"114"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/techs/kata.svg","effects":[]}
|
||||
{"_id":"L5RCoreKat000070","name":"Swallow’s Dart Style","permission":{"default":0},"type":"technique","data":{"in_curriculum":false,"xp_used":0,"rank":"2","bought_at_rank":0,"ring":"void","skill":"","difficulty":"","technique_type":"kata","xp_cost":"3","description":"","source_reference":{"source":"writ_of_the_wild","page":"115"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/techs/kata.svg","effects":[]}
|
||||
{"_id":"L5RCoreKat000071","name":"Tiger’s Lunge Style","permission":{"default":0},"type":"technique","data":{"in_curriculum":false,"xp_used":0,"rank":"3","bought_at_rank":0,"ring":"void","skill":"","difficulty":"","technique_type":"kata","xp_cost":"3","description":"","source_reference":{"source":"writ_of_the_wild","page":"115"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/techs/kata.svg","effects":[]}
|
||||
{"_id":"L5RCoreKat000072","name":"Flexible Grip","permission":{"default":0},"type":"technique","data":{"in_curriculum":false,"xp_used":0,"rank":"1","bought_at_rank":0,"ring":"void","skill":"","difficulty":"","technique_type":"kata","xp_cost":"3","description":"","source_reference":{"source":"writ_of_the_wild","page":"115"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/techs/kata.svg","effects":[]}
|
||||
{"_id":"L5RCoreKat000073","name":"Howling Gale Defense","permission":{"default":0},"type":"technique","data":{"in_curriculum":false,"xp_used":0,"rank":"2","bought_at_rank":0,"ring":"void","skill":"","difficulty":"","technique_type":"kata","xp_cost":"3","description":"","source_reference":{"source":"writ_of_the_wild","page":"116"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/techs/kata.svg","effects":[]}
|
||||
{"_id":"L5RCoreKat000074","name":"Heron’s Grasp Style","permission":{"default":0},"type":"technique","data":{"in_curriculum":false,"xp_used":0,"rank":"3","bought_at_rank":0,"ring":"void","skill":"","difficulty":"","technique_type":"kata","xp_cost":"3","description":"","source_reference":{"source":"writ_of_the_wild","page":"116"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/techs/kata.svg","effects":[]}
|
||||
{"_id":"L5RCoreKat000075","name":"Serow’s Leap Style","permission":{"default":0},"type":"technique","data":{"in_curriculum":false,"xp_used":0,"rank":"3","bought_at_rank":0,"ring":"void","skill":"","difficulty":"","technique_type":"kata","xp_cost":"3","description":"","source_reference":{"source":"writ_of_the_wild","page":"116"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/techs/kata.svg","effects":[]}
|
||||
{"_id":"L5RCoreKat000076","name":"Tumbling Oak Style","permission":{"default":0},"type":"technique","data":{"in_curriculum":false,"xp_used":0,"rank":"4","bought_at_rank":0,"ring":"void","skill":"","difficulty":"","technique_type":"kata","xp_cost":"3","description":"","source_reference":{"source":"writ_of_the_wild","page":"116"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/techs/kata.svg","effects":[]}
|
||||
{"_id":"L5RCoreKat000077","name":"Flight","permission":{"default":0},"type":"technique","data":{"in_curriculum":false,"xp_used":0,"rank":"1","bought_at_rank":0,"ring":"void","skill":"","difficulty":"","technique_type":"kata","xp_cost":"3","description":"","source_reference":{"source":"writ_of_the_wild","page":"117"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/techs/kata.svg","effects":[]}
|
||||
{"_id":"L5RCoreKat000078","name":"Razor Bite","permission":{"default":0},"type":"technique","data":{"in_curriculum":false,"xp_used":0,"rank":"2","bought_at_rank":0,"ring":"void","skill":"","difficulty":"","technique_type":"kata","xp_cost":"3","description":"","source_reference":{"source":"writ_of_the_wild","page":"117"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/techs/kata.svg","effects":[]}
|
||||
{"_id":"L5RCoreKat000079","name":"Owl’s Swoop Style","permission":{"default":0},"type":"technique","data":{"in_curriculum":false,"xp_used":0,"rank":"3","bought_at_rank":0,"ring":"void","skill":"","difficulty":"","technique_type":"kata","xp_cost":"3","description":"","source_reference":{"source":"writ_of_the_wild","page":"117"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/techs/kata.svg","effects":[]}
|
||||
{"_id":"L5RCoreKat000080","name":"Skittering Shift","permission":{"default":0},"type":"technique","data":{"in_curriculum":false,"xp_used":0,"rank":"3","bought_at_rank":0,"ring":"void","skill":"","difficulty":"","technique_type":"kata","xp_cost":"3","description":"","source_reference":{"source":"writ_of_the_wild","page":"118"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/techs/kata.svg","effects":[]}
|
||||
{"_id":"L5RCoreKat000081","name":"Tail Sweep","permission":{"default":0},"type":"technique","data":{"in_curriculum":false,"xp_used":0,"rank":"3","bought_at_rank":0,"ring":"void","skill":"","difficulty":"","technique_type":"kata","xp_cost":"3","description":"","source_reference":{"source":"writ_of_the_wild","page":"118"}},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/techs/kata.svg","effects":[]}
|
||||