Added missing Mantis "Storm Fleet Tide Seer" school techniques : "Storm Surge" and "Eye of the Storm".

This commit is contained in:
Vlyan
2021-09-10 19:39:15 +02:00
parent a724fc5d6f
commit 38e871a370
6 changed files with 20 additions and 4 deletions

View File

@@ -2,9 +2,11 @@
## 1.3.4 - ?
- Added FoV English Opportunities usage.
- Fixed Compendiums entries :
- "Asako Inquisitor School [Crab]" => "Asako Inquisitor School [Phoenix]"
- Opportunities "Conflict use" table : the Air entry for 2 opportunities was replaced by this real text (copy past error).
- Compendiums :
- Added missing Mantis "Storm Fleet Tide Seer" school techniques : "Storm Surge" and "Eye of the Storm".
- Fixed Compendiums entries :
- "Asako Inquisitor School [Crab]" => "Asako Inquisitor School [Phoenix]"
- Opportunities "Conflict use" table : the Air entry for 2 opportunities was replaced by this real text (copy past error).
## 1.3.3 - Send'n'Watch
- GM toolbox changes :

View File

@@ -550,6 +550,12 @@
"name": "Empty Soul Ki (WIP)",
"description": "",
"book_reference": "Les Champs de la Victoire"
},
{
"id": "Storm Surge",
"name": "Onde de tempête",
"description": "",
"book_reference": "Le Clan de la Mante p.6"
}
]
}

View File

@@ -550,6 +550,12 @@
"name": "Oath of Sacrifice (WIP)",
"description": "",
"book_reference": "Les Champs de la Victoire"
},
{
"id": "Eye of the Storm",
"name": "Loeil de la tempête",
"description": "",
"book_reference": "Le Clan de la Mante p.6"
}
]
}

View File

@@ -89,3 +89,4 @@
{"_id":"L5RCoreMas000089","name":"Attuned Invocation","permission":{"default":0},"type":"technique","data":{"in_curriculum":false,"xp_used":0,"rank":"6","bought_at_rank":0,"ring":"void","technique_type":"mastery_ability","xp_cost":"0","description":"","book_reference":"Fields of Victory p.79"},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/clans/phoenix.svg","effects":[]}
{"_id":"L5RCoreMas000090","name":"With the Soul of a Lion","permission":{"default":0},"type":"technique","data":{"in_curriculum":false,"xp_used":0,"rank":"6","bought_at_rank":0,"ring":"void","technique_type":"mastery_ability","xp_cost":"0","description":"","book_reference":"Fields of Victory p.80"},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/clans/lion.svg","effects":[]}
{"_id":"L5RCoreMas000091","name":"Empty Soul Ki","permission":{"default":0},"type":"technique","data":{"in_curriculum":false,"xp_used":0,"rank":"6","bought_at_rank":0,"ring":"void","technique_type":"mastery_ability","xp_cost":"0","description":"","book_reference":"Fields of Victory p.81"},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/clans/scorpion.svg","effects":[]}
{"_id":"L5RCoreMas000092","name":"Storm Surge","permission":{"default":0},"type":"technique","data":{"in_curriculum":false,"xp_used":0,"rank":"6","bought_at_rank":0,"ring":"void","technique_type":"mastery_ability","xp_cost":"0","description":"","book_reference":"Mantis Clan p.6"},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/clans/mantis.svg","effects":[]}

View File

@@ -89,3 +89,4 @@
{"_id":"L5RCoreSch000089","name":"Elemental Inspiration","permission":{"default":0},"type":"technique","data":{"in_curriculum":false,"xp_used":0,"rank":"1","bought_at_rank":0,"ring":"void","technique_type":"school_ability","xp_cost":"0","description":"","book_reference":"Fields of Victory p.79"},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/clans/phoenix.svg","effects":[]}
{"_id":"L5RCoreSch000090","name":"One with the Pride","permission":{"default":0},"type":"technique","data":{"in_curriculum":false,"xp_used":0,"rank":"1","bought_at_rank":0,"ring":"void","technique_type":"school_ability","xp_cost":"0","description":"","book_reference":"Fields of Victory p.80"},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/clans/lion.svg","effects":[]}
{"_id":"L5RCoreSch000091","name":"Oath of Sacrifice","permission":{"default":0},"type":"technique","data":{"in_curriculum":false,"xp_used":0,"rank":"1","bought_at_rank":0,"ring":"void","technique_type":"school_ability","xp_cost":"0","description":"","book_reference":"Fields of Victory p.81"},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/clans/scorpion.svg","effects":[]}
{"_id":"L5RCoreSch000092","name":"Eye of the Storm","permission":{"default":0},"type":"technique","data":{"in_curriculum":false,"xp_used":0,"rank":"1","bought_at_rank":0,"ring":"void","technique_type":"school_ability","xp_cost":"0","description":"","book_reference":"Mantis Clan p.6"},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/clans/mantis.svg","effects":[]}

View File

@@ -239,7 +239,7 @@ export class BaseSheetL5r5e extends ActorSheet {
if (
this.actor.data.items.some((embedItem) => {
// Search in children
if (embedItem.items?.has(item.data._id)) {
if (embedItem.items instanceof Map && embedItem.items.has(item.data._id)) {
return true;
}
return embedItem.data._id === item.data._id;