charge attacks

This commit is contained in:
Mashy
2019-06-19 15:29:33 +10:00
parent ae481d54bf
commit 0310b1b3df
4 changed files with 93 additions and 9 deletions
+3 -3
View File
@@ -9,7 +9,7 @@ module.exports = function charge(x, y, height, colour) {
${x - 2 * height},${y + 2 * height}
${x + 2 * height},${y + 2 * height}
`}
stroke="#a52a2a"
stroke={colour}
stroke-width="2"
id="charge"
/>
@@ -21,7 +21,7 @@ module.exports = function charge(x, y, height, colour) {
${x - 3.5 * height},${y + height}
${x - 2 * height},${y + 2 * height}
`}
stroke="#a52a2a"
stroke={colour}
stroke-width="2"
id="charge"
/>
@@ -39,4 +39,4 @@ module.exports = function charge(x, y, height, colour) {
/>
</svg>
);
}
};