Skip to content

Commit

Permalink
Woodsman ignores terrain cost
Browse files Browse the repository at this point in the history
  • Loading branch information
RecursiveVision committed Jun 10, 2024
1 parent 1d4338c commit 271f372
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ WHERE Tag = 'TXT_KEY_PROMOTION_BLITZ_HELP';

-- Woodsman
UPDATE Language_en_US
SET Text = '+10% [ICON_STRENGTH] Combat Strength in [COLOR_POSITIVE_TEXT]Rough Terrain[ENDCOLOR].[NEWLINE]Double [ICON_MOVES] Movement in [COLOR_POSITIVE_TEXT]Forest[ENDCOLOR] and [COLOR_POSITIVE_TEXT]Jungle[ENDCOLOR].'
SET Text = '+10% [ICON_STRENGTH] Combat Strength in [COLOR_POSITIVE_TEXT]Rough Terrain[ENDCOLOR].[NEWLINE]Ignore Terrain Cost in [COLOR_POSITIVE_TEXT]Forest[ENDCOLOR] and [COLOR_POSITIVE_TEXT]Jungle[ENDCOLOR].'
WHERE Tag = 'TXT_KEY_PROMOTION_WOODSMAN_HELP';

-- Logistics
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,12 @@ VALUES

-- Combat plot for melee, this unit's plot for ranged
UPDATE UnitPromotions SET RoughFromMod = 10 WHERE Type = 'PROMOTION_WOODSMAN';
DELETE FROM UnitPromotions_Features WHERE PromotionType = 'PROMOTION_WOODSMAN';
INSERT INTO UnitPromotions_Features
(PromotionType, FeatureType, IgnoreTerrainCost)
VALUES
('PROMOTION_WOODSMAN', 'FEATURE_FOREST', 1),
('PROMOTION_WOODSMAN', 'FEATURE_JUNGLE', 1);

UPDATE UnitPromotions SET SameTileHealChange = 5, AdjacentTileHealChange = 5 WHERE RankList = 'MEDIC';
UPDATE UnitPromotions SET NeutralHealChange = 5, EnemyHealChange = 5 WHERE Type = 'PROMOTION_MEDIC_II';
Expand Down

0 comments on commit 271f372

Please sign in to comment.