increase buff duration 2T->3T

This commit is contained in:
Mashy 2019-10-31 15:41:20 +10:00
parent 1be37161ef
commit 0ce19240f7
2 changed files with 2 additions and 1 deletions

View File

@ -42,6 +42,7 @@ This project adheres to [Semantic Versioning](http://semver.org/).
- Buff - Buff
- Previously increased red power and speed stat by 25% - Previously increased red power and speed stat by 25%
- Now increases red power, blue power and speed stat by 30% - Now increases red power, blue power and speed stat by 30%
- Increased duration from 2T -> 3T
- Counter - Counter
- No longer applies block effect - No longer applies block effect

View File

@ -861,7 +861,7 @@ impl Skill {
Skill::BanishPlusPlus => vec![ConstructEffect {effect: Effect::Banish, duration: 2, meta: None, tick: None}], Skill::BanishPlusPlus => vec![ConstructEffect {effect: Effect::Banish, duration: 2, meta: None, tick: None}],
Skill::Block => vec![ConstructEffect {effect: Effect::Block, duration: 1, Skill::Block => vec![ConstructEffect {effect: Effect::Block, duration: 1,
meta: Some(EffectMeta::Multiplier(35)), tick: None}], meta: Some(EffectMeta::Multiplier(35)), tick: None}],
Skill::Buff => vec![ConstructEffect {effect: Effect::Buff, duration: 2, Skill::Buff => vec![ConstructEffect {effect: Effect::Buff, duration: 3,
meta: Some(EffectMeta::Multiplier(130)), tick: None }], meta: Some(EffectMeta::Multiplier(130)), tick: None }],
Skill::Electrify => vec![ConstructEffect {effect: Effect::Electric, duration: 1, Skill::Electrify => vec![ConstructEffect {effect: Effect::Electric, duration: 1,