include money multiplier events

This commit is contained in:
darkfire006 2022-12-13 09:24:12 -06:00
parent 6866fd496e
commit b49606c616
1 changed files with 6 additions and 0 deletions

View File

@ -68,6 +68,12 @@ Namespace BattleSystem.Moves.Normal
End If
End If
For Each mysteryEvent As MysteryEventScreen.MysteryEvent In MysteryEventScreen.ActivatedMysteryEvents
If mysteryEvent.EventType = MysteryEventScreen.EventTypes.MoneyMultiplier Then
coinAmount = CInt(coinAmount * CDbl(mysteryEvent.Value.Replace(".", GameController.DecSeparator)))
End If
Next
If own = True Then
BattleScreen.FieldEffects.OwnPayDayCounter += coinAmount
Else