summaryrefslogtreecommitdiff |
diff options
author | Nathanael Sensfelder <SpamShield0@MultiAgentSystems.org> | 2019-09-06 20:12:37 +0200 |
---|---|---|
committer | Nathanael Sensfelder <SpamShield0@MultiAgentSystems.org> | 2019-09-06 20:12:37 +0200 |
commit | 8ef8145f77d6a4d82378b6abd03f62b74dc45118 (patch) | |
tree | 367f58d5ce7709243459e895e05e164e94e6f99c /src/shared | |
parent | 2d859e80c3e034b9f312df2cd9b2e70cd8766655 (diff) |
Working on the UI...
Diffstat (limited to 'src/shared')
-rw-r--r-- | src/shared/battle/Battle/View/Attribute.elm | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/src/shared/battle/Battle/View/Attribute.elm b/src/shared/battle/Battle/View/Attribute.elm index ae2edf3..49fe7a8 100644 --- a/src/shared/battle/Battle/View/Attribute.elm +++ b/src/shared/battle/Battle/View/Attribute.elm @@ -163,6 +163,10 @@ get_all_html atts = (get_html Battle.Struct.Attributes.MovementPoints (Battle.Struct.Attributes.get_movement_points atts) + ), + (get_html + Battle.Struct.Attributes.DamageModifier + (Battle.Struct.Attributes.get_damage_modifier atts) ) ] @@ -199,6 +203,10 @@ get_all_signed_html atts = (get_signed_html Battle.Struct.Attributes.MovementPoints (Battle.Struct.Attributes.get_movement_points atts) + ), + (get_signed_html + Battle.Struct.Attributes.DamageModifier + (Battle.Struct.Attributes.get_damage_modifier atts) ) ] @@ -227,6 +235,14 @@ get_all_but_gauges_html atts = (get_html Battle.Struct.Attributes.CriticalHits (Battle.Struct.Attributes.get_critical_hits atts) + ), + (get_html + Battle.Struct.Attributes.CriticalHits + (Battle.Struct.Attributes.get_critical_hits atts) + ), + (get_html + Battle.Struct.Attributes.DamageModifier + (Battle.Struct.Attributes.get_damage_modifier atts) ) ] @@ -255,5 +271,9 @@ get_all_but_gauges_signed_html atts = (get_signed_html Battle.Struct.Attributes.CriticalHits (Battle.Struct.Attributes.get_critical_hits atts) + ), + (get_signed_html + Battle.Struct.Attributes.DamageModifier + (Battle.Struct.Attributes.get_damage_modifier atts) ) ] |