Skip to content

Commit

Permalink
add mixology bonus for elixir of protection (#3624)
Browse files Browse the repository at this point in the history
  • Loading branch information
lime-green committed Sep 5, 2023
1 parent 48285b9 commit d96ede9
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions sim/core/consumes.go
Original file line number Diff line number Diff line change
Expand Up @@ -239,6 +239,11 @@ func applyConsumeEffects(agent Agent) {
character.AddStats(stats.Stats{
stats.Armor: 800,
})
if character.HasProfession(proto.Profession_Alchemy) {
character.AddStats(stats.Stats{
stats.Armor: 280,
})
}
case proto.GuardianElixir_ElixirOfSpirit:
character.AddStats(stats.Stats{
stats.Spirit: 50,
Expand Down

0 comments on commit d96ede9

Please sign in to comment.