This commit is contained in:
ntr 2019-02-22 13:59:46 +11:00
parent ab11c2109e
commit 8d17bf71b1
4 changed files with 61 additions and 3 deletions

18
client/assets/c1.svg Normal file
View File

@ -0,0 +1,18 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20010904//EN"
"http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd">
<svg xmlns="http://www.w3.org/2000/svg"
width="13.8889in" height="13.8889in"
viewBox="0 0 1000 1000">
<path id="Unnamed"
fill="none" stroke="black" stroke-width="1"
d="M 250.00,-1.00
C 250.00,-1.00 0.00,300.00 0.00,300.00
0.00,300.00 1000.00,300.00 1000.00,300.00
1000.00,300.00 750.00,2.00 750.00,2.00M 500.00,300.00
C 500.00,300.00 500.00,700.00 500.00,700.00M 250.00,1000.00
C 250.00,1000.00 0.00,700.00 0.00,700.00
0.00,700.00 999.00,700.00 1000.00,700.00
1001.00,700.00 750.00,1000.00 750.00,1000.00" />
</svg>

After

Width:  |  Height:  |  Size: 811 B

20
client/assets/c2.svg Normal file
View File

@ -0,0 +1,20 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20010904//EN"
"http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd">
<svg xmlns="http://www.w3.org/2000/svg"
width="13.8889in" height="13.8889in"
viewBox="0 0 1000 1000">
<path id="c2"
fill="none" stroke="black" stroke-width="1"
d="M 250.00,-1.00
C 250.00,-1.00 250.00,300.00 250.00,300.00
250.00,300.00 750.00,299.00 750.00,299.00
750.00,299.00 750.00,2.00 750.00,2.00M 500.00,100.00
C 500.00,100.00 500.00,300.00 500.00,300.00
500.00,300.00 500.00,700.00 500.00,700.00M 250.00,1000.00
C 250.00,1000.00 500.00,700.00 500.00,700.00
500.00,700.00 750.00,1000.00 750.00,1000.00M 750.00,700.00
C 750.00,700.00 500.00,400.00 500.00,400.00
500.00,400.00 249.00,699.00 249.00,699.00" />
</svg>

After

Width:  |  Height:  |  Size: 938 B

20
client/assets/c3.svg Normal file
View File

@ -0,0 +1,20 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20010904//EN"
"http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd">
<svg xmlns="http://www.w3.org/2000/svg"
width="13.8889in" height="13.8889in"
viewBox="0 0 1000 1000">
<path id="c3"
fill="none" stroke="black" stroke-width="1"
d="M 250.00,-1.00
C 250.00,-1.00 250.00,300.00 250.00,300.00
250.00,300.00 750.00,299.00 750.00,299.00
750.00,299.00 750.00,2.00 750.00,2.00M 500.00,300.00
C 500.00,300.00 500.00,700.00 500.00,700.00M 250.00,1000.00
C 250.00,1000.00 250.00,700.00 250.00,700.00
250.00,700.00 500.00,700.00 500.00,700.00
500.00,700.00 750.00,700.00 750.00,700.00
750.00,700.00 750.00,1000.00 750.00,1000.00M 250.00,500.00
C 250.00,500.00 750.00,500.00 750.00,500.00" />
</svg>

After

Width:  |  Height:  |  Size: 938 B

View File

@ -50,7 +50,7 @@ pub enum Var {
Strangle,
Strike,
Siphon,
Survival,
Clutch,
Taunt,
Throw,
Toxic,
@ -91,7 +91,7 @@ impl Var {
Var::Snare => Ok(Skill::Snare),
Var::Strangle => Ok(Skill::Strangle),
// Var::Strike => Ok(Skill::Strike),
// Var::Survival => Ok(Skill::Survival),
// Var::Clutch => Ok(Skill::Clutch),
// Var::Taunt => Ok(Skill::Taunt),
Var::Throw => Ok(Skill::Throw),
// Var::Toxic => Ok(Skill::Toxic),
@ -247,7 +247,7 @@ impl Vbox {
ColourCode::RR => Var::Empower,
ColourCode::GG => Var::Triage,
ColourCode::BB => Var::Amplify,
ColourCode::RG => Var::Survival,
ColourCode::RG => Var::Clutch,
ColourCode::GB => return Err(err_msg("unhandled skill combo")),
ColourCode::BR => Var::Haste,
},