Skip to content

Commit

Permalink
Added new ability haggler #118
Browse files Browse the repository at this point in the history
  • Loading branch information
devapromix committed Jan 19, 2025
1 parent 636b0be commit b7db9f7
Showing 1 changed file with 12 additions and 6 deletions.
18 changes: 12 additions & 6 deletions sources/Game/Elinor.Creatures.pas
Original file line number Diff line number Diff line change
Expand Up @@ -427,8 +427,8 @@ interface
TAbilityEnum = (abNone, abFly, abStrength, abMight, abStealth, abSharpEye,
abHawkEye, abFarSight, abArtifactLore, abBannerBearer, abTravelLore,
abLeadership1, abLeadership2, abLeadership3, abLeadership4, skWand,
abAccuracy, abPathfinding, abAdvancedPathfinding, skTrader, skProtect,
skTalisman, skInstructor, skBook, skOrb, abSorcery, abTemplar,
abAccuracy, abPathfinding, abAdvancedPathfinding, abDealmaker, abHaggler,
skProtect, skTalisman, skInstructor, skBook, skOrb, abSorcery, abTemplar,
abMountaineering, abForestry, abVampirism);

type
Expand Down Expand Up @@ -1287,10 +1287,16 @@ class function TCreature.FactionEnumToStr(const AFactionEnum
(Enum: abAdvancedPathfinding; Name: 'Advanced Pathfinding';
Description: ('Increases the distance that the',
'leader''s party can travel'); Level: 4; Leaders: ScoutingLeaders;),
// Trader
(Enum: skTrader; Name: 'Торговец';
Description: ('Обладатель этой способности',
'получает скидку 20% у торговца.'); Level: 4; Leaders: LordLeaders;),
// Dealmaker
(Enum: abDealmaker; Name: 'Dealmaker';
Description: ('The owner of this ability',
'receives a 10% discount from the merchant'); Level: 4;
Leaders: AllLeaders;),
// Haggler
(Enum: abHaggler; Name: 'Haggler';
Description: ('The owner of this ability',
'receives a 15% discount from the merchant'); Level: 5;
Leaders: LordLeaders;),
// Protect
(Enum: skProtect; Name: 'Естественная Броня';
Description: ('Предводитель будет поглощать 10%', 'наносимого ему урона.');
Expand Down

0 comments on commit b7db9f7

Please sign in to comment.