mirror of
https://gitlab.com/veloren/veloren.git
synced 2024-08-30 18:12:32 +00:00
0c9f05b8d1
Done: support loading from assets in skillset_builder.rs entity_config field with skillset asset field move every SkillSet config to assets tests for skillset assets tests for assets in entity configs
25 lines
645 B
Plaintext
25 lines
645 B
Plaintext
([
|
|
Group(Weapon(Sword)),
|
|
|
|
// TripleStrike
|
|
Skill((Sword(TsCombo), None)),
|
|
Skill((Sword(TsDamage), Some(1))),
|
|
Skill((Sword(TsRegen), Some(1))),
|
|
Skill((Sword(TsSpeed), Some(1))),
|
|
|
|
// Dash
|
|
Skill((Sword(DDamage), Some(1))),
|
|
Skill((Sword(DCost), Some(1))),
|
|
Skill((Sword(DDrain), Some(1))),
|
|
Skill((Sword(DScaling), Some(1))),
|
|
Skill((Sword(DSpeed), None)),
|
|
Skill((Sword(DInfinite), None)),
|
|
|
|
// Spin of death
|
|
Skill((Sword(UnlockSpin), None)),
|
|
Skill((Sword(SDamage), Some(1))),
|
|
Skill((Sword(SSpeed), Some(1))),
|
|
Skill((Sword(SSpins), Some(2))),
|
|
Skill((Sword(SCost), Some(1))),
|
|
])
|