summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/battle')
-rw-r--r--src/battle/src/View/Controlled/CharacterCard.elm14
1 files changed, 9 insertions, 5 deletions
diff --git a/src/battle/src/View/Controlled/CharacterCard.elm b/src/battle/src/View/Controlled/CharacterCard.elm
index b659606..b9874f5 100644
--- a/src/battle/src/View/Controlled/CharacterCard.elm
+++ b/src/battle/src/View/Controlled/CharacterCard.elm
@@ -267,12 +267,16 @@ get_multiplied_mod_html multiplier mod =
(Html.Attributes.class "character-card-mod")
]
[
+ (Html.div
+ [
+ (Html.Attributes.class "omnimod-icon"),
+ (Html.Attributes.class ("omnimod-icon-" ++ category))
+ ]
+ [
+ ]
+ ),
(Html.text
- (
- category
- ++ ": "
- ++ (String.fromInt (ceiling ((toFloat value) * multiplier)))
- )
+ (String.fromInt (ceiling ((toFloat value) * multiplier)))
)
]
)