You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/rs/src/text.rs
+10-2Lines changed: 10 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -491,8 +491,16 @@ impl<'a> SkillThing<'a> {
491
491
}else{
492
492
"Transform this card into a Fungus"
493
493
}),
494
-
Skill::gaincharge(x)if ev == Event::Death => Cow::from(format!("Whenever any creature dies, gain {} stack{}", x,if x == 1{""} else {"s"})),
495
-
Skill::gaincharge(x)if ev == Event::Destroy => Cow::from(format!("Whenever any other permanent is destroyed, gain {} stack{}", x,if x == 1{""} else {"s"})),
494
+
Skill::gaincharge(x)if ev == Event::Death => Cow::from(format!(
495
+
"Whenever any creature dies, gain {} stack{}",
496
+
x,
497
+
if x == 1{""} else {"s"}
498
+
)),
499
+
Skill::gaincharge(x)if ev == Event::Destroy => Cow::from(format!(
500
+
"Whenever any other permanent is destroyed, gain {} stack{}",
501
+
x,
502
+
if x == 1{""} else {"s"}
503
+
)),
496
504
Skill::gaintimecharge => Cow::from(
497
505
"Gain one stack for every card you draw. Does not gain a stack from your draw at the start of your turn",
0 commit comments