feat: Add Mana Circulation discipline with regen multiplier and meditation cap perks
Build and Publish Mana Loop Docker Image / build-and-publish (push) Successful in 1m23s
Build and Publish Mana Loop Docker Image / build-and-publish (push) Successful in 1m23s
This commit is contained in:
@@ -35,4 +35,36 @@ export const baseDisciplines: DisciplineDefinition[] = [
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
id: 'mana-circulation',
|
||||
name: 'Mana Circulation',
|
||||
attunement: DisciplinesAttunementType.BASE,
|
||||
manaType: 'raw',
|
||||
baseCost: 5,
|
||||
description:
|
||||
'Cultivate and circulate raw mana through the body — the foundation upon which all elemental work is built.',
|
||||
statBonus: { stat: 'regenBonus', baseValue: 0.2, label: 'Raw Mana Regen' },
|
||||
difficultyFactor: 100,
|
||||
scalingFactor: 50,
|
||||
drainBase: 1,
|
||||
perks: [
|
||||
{
|
||||
id: 'mana-circulation-regen',
|
||||
type: 'infinite',
|
||||
threshold: 100,
|
||||
value: 100,
|
||||
description: 'Every 100 XP: +10% raw mana regen',
|
||||
bonus: { stat: 'regenMultiplier', amount: 0.10 },
|
||||
},
|
||||
{
|
||||
id: 'mana-circulation-meditation',
|
||||
type: 'capped',
|
||||
threshold: 100,
|
||||
value: 100,
|
||||
description: 'Every 100 XP: +0.5 max meditation multiplier (7 tiers, up to +3.5)',
|
||||
bonus: { stat: 'meditationCapBonus', amount: 0.5 },
|
||||
maxTier: 7,
|
||||
},
|
||||
],
|
||||
},
|
||||
];
|
||||
Reference in New Issue
Block a user