mirror of
https://github.com/Foundryborne/daggerheart.git
synced 2026-01-12 03:31:07 +01:00
Fixed effect removal
This commit is contained in:
parent
378c6b4c67
commit
1da5d7a1f7
3 changed files with 35 additions and 22 deletions
|
|
@ -459,16 +459,13 @@ export const allArmorFeatures = () => {
|
|||
...armorFeatures,
|
||||
...Object.keys(homebrewFeatures).reduce((acc, key) => {
|
||||
const feature = homebrewFeatures[key];
|
||||
const actionEffects = [];
|
||||
const actions = feature.actions.map(action => {
|
||||
const effects = action.effects.map(effect => feature.effects.find(x => x.id === effect._id));
|
||||
actionEffects.push(...effects);
|
||||
return {
|
||||
...action,
|
||||
effects: effects,
|
||||
type: action.type
|
||||
};
|
||||
});
|
||||
const actions = feature.actions.map(action => ({
|
||||
...action,
|
||||
effects: action.effects.map(effect => feature.effects.find(x => x.id === effect._id)),
|
||||
type: action.type
|
||||
}));
|
||||
const actionEffects = actions.flatMap(a => a.effects);
|
||||
|
||||
const effects = feature.effects.filter(effect => !actionEffects.some(x => x.id === effect.id));
|
||||
|
||||
acc[key] = { ...feature, label: feature.name, effects, actions };
|
||||
|
|
@ -1431,16 +1428,13 @@ export const allWeaponFeatures = () => {
|
|||
...weaponFeatures,
|
||||
...Object.keys(homebrewFeatures).reduce((acc, key) => {
|
||||
const feature = homebrewFeatures[key];
|
||||
const actionEffects = [];
|
||||
const actions = feature.actions.map(action => {
|
||||
const effects = action.effects.map(effect => feature.effects.find(x => x.id === effect._id));
|
||||
actionEffects.push(...effects);
|
||||
return {
|
||||
...action,
|
||||
effects: effects,
|
||||
type: action.type
|
||||
};
|
||||
});
|
||||
|
||||
const actions = feature.actions.map(action => ({
|
||||
...action,
|
||||
effects: action.effects.map(effect => feature.effects.find(x => x.id === effect._id)),
|
||||
type: action.type
|
||||
}));
|
||||
const actionEffects = actions.flatMap(a => a.effects);
|
||||
const effects = feature.effects.filter(effect => !actionEffects.some(x => x.id === effect.id));
|
||||
|
||||
acc[key] = { ...feature, label: feature.name, effects, actions };
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue