Added a help icon for ability boards and fixed some data errors
parent
35748d099c
commit
5927cf91e1
|
@ -96,7 +96,7 @@ type = "Stat"
|
||||||
price = "50 LP"
|
price = "50 LP"
|
||||||
route = 100
|
route = 100
|
||||||
path = ["E"]
|
path = ["E"]
|
||||||
tip = "Unlocks with Secret panel at B7"
|
tip = "Unlocks with Secret panel at B6"
|
||||||
|
|
||||||
[[abilities]]
|
[[abilities]]
|
||||||
name = "Start"
|
name = "Start"
|
||||||
|
@ -147,7 +147,7 @@ type = "Stat"
|
||||||
price = "30 LP"
|
price = "30 LP"
|
||||||
route = 100
|
route = 100
|
||||||
path = ["N", "S"]
|
path = ["N", "S"]
|
||||||
tip = "Unlocks with Secret panel at B7"
|
tip = "Unlocks with Secret panel at B6"
|
||||||
|
|
||||||
[[abilities]]
|
[[abilities]]
|
||||||
name = "Circle Raid"
|
name = "Circle Raid"
|
||||||
|
@ -156,7 +156,7 @@ type = "Attack"
|
||||||
price = "100 LP"
|
price = "100 LP"
|
||||||
route = 100
|
route = 100
|
||||||
path = ["N"]
|
path = ["N"]
|
||||||
tip = "Unlocks with Secret panel at B7"
|
tip = "Unlocks with Secret panel at B6"
|
||||||
|
|
||||||
[[abilities]]
|
[[abilities]]
|
||||||
name = "Stop Block"
|
name = "Stop Block"
|
||||||
|
@ -194,7 +194,7 @@ type = "Stat"
|
||||||
price = "50 LP"
|
price = "50 LP"
|
||||||
route = 100
|
route = 100
|
||||||
path = ["W"]
|
path = ["W"]
|
||||||
tip = "Unlocks with Secret panel at B7"
|
tip = "Unlocks with Secret panel at B6"
|
||||||
|
|
||||||
[[abilities]]
|
[[abilities]]
|
||||||
name = "Attack Haste"
|
name = "Attack Haste"
|
||||||
|
|
|
@ -146,7 +146,7 @@ type = "Magic"
|
||||||
price = "150 LP"
|
price = "150 LP"
|
||||||
route = 100
|
route = 100
|
||||||
path = ["W", "E", "N"]
|
path = ["W", "E", "N"]
|
||||||
tip = "Unlocks with Secret panel at E1"
|
tip = "Changes into Triple Plasma with Secret panel at E1"
|
||||||
|
|
||||||
[[abilities]]
|
[[abilities]]
|
||||||
name = "Thunder Boost"
|
name = "Thunder Boost"
|
||||||
|
|
|
@ -19,6 +19,7 @@
|
||||||
|
|
||||||
{% if val.tip.is_some() %}
|
{% if val.tip.is_some() %}
|
||||||
<div class="tooltip">{{ val.tip() }}</div>
|
<div class="tooltip">{{ val.tip() }}</div>
|
||||||
|
<div class="help"></div>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
|
@ -91,6 +91,15 @@
|
||||||
align-content: center;
|
align-content: center;
|
||||||
font-size: 14px;
|
font-size: 14px;
|
||||||
box-shadow: 1px 1px 5px black;
|
box-shadow: 1px 1px 5px black;
|
||||||
|
|
||||||
|
.help:after {
|
||||||
|
content: "?";
|
||||||
|
position: absolute;
|
||||||
|
color: rgba(0, 0, 0, 0.3);
|
||||||
|
font-size: 24px;
|
||||||
|
bottom: 0;
|
||||||
|
right: 5px;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.tooltip-wrapper {
|
.tooltip-wrapper {
|
||||||
|
|
Loading…
Reference in New Issue