Initial commit
@ -0,0 +1,4 @@
|
||||
*
|
||||
!*/
|
||||
!*.svg
|
||||
!counters.py
|
@ -0,0 +1,126 @@
|
||||
from ocp_vscode import *
|
||||
from build123d import *
|
||||
from math import tan, pi, radians
|
||||
|
||||
def PG(x, y, angle):
|
||||
return Polygon((x, 0), (x, y), (0, y + x * tan(radians(angle))), (0, x * tan(radians(angle))), align=Align.MIN)
|
||||
|
||||
def CounterVal(val):
|
||||
if val > 0:
|
||||
return f"+{val}"
|
||||
elif val < 0:
|
||||
return f"-{val}"
|
||||
else:
|
||||
return f"{val}"
|
||||
|
||||
def NumStr(val):
|
||||
if val < 0:
|
||||
return f"n{val}"
|
||||
else:
|
||||
return f"{val}"
|
||||
|
||||
def Chevron(x, y, angle):
|
||||
return PG(x/2, y, angle) + mirror(PG(x/2, y, angle), Plane.YZ)
|
||||
|
||||
def Numerical(left, right, x, y, t, angle, base_z, text_z):
|
||||
base = Chevron(x, y, angle)
|
||||
counter = extrude(base, base_z + text_z, (0, 0, 1))
|
||||
|
||||
cutout = Pos(t/2, t + t*tan(radians(angle)), 0) * PG(x/2 - 1.5*t, y - 2*t, angle)
|
||||
cutout += mirror(cutout, Plane.YZ)
|
||||
cutout = Pos(0, 0, base_z + text_z) * cutout
|
||||
|
||||
counter -= extrude(cutout, text_z, (0, 0, -1))
|
||||
|
||||
font_size = x/5
|
||||
|
||||
font = "Arial Rounded MT Bold"
|
||||
top = Pos(-x/4, y/2 + (t/2+x/4)*tan(radians(angle))) * Rot(0, 0, angle) * Text(CounterVal(left), font_size, font=font)
|
||||
top += Pos(x/4, y/2 + (t/2+x/4)*tan(radians(angle))) * Rot(0, 0, -angle) * Text(CounterVal(right), font_size, font=font)
|
||||
|
||||
counter += extrude(Pos(0, 0, base_z) * top, text_z, (0, 0, 1))
|
||||
|
||||
return counter
|
||||
|
||||
def Textual(text, image, image_yoff, x, y, t, angle, base_z, text_z):
|
||||
counter = extrude(Chevron(x, y, angle), base_z + text_z, (0, 0, 1))
|
||||
counter -= extrude(Pos(0, t + t*tan(radians(angle)), base_z + text_z) * Chevron(x-2*t, y-2*t, angle), text_z, (0, 0, -1))
|
||||
|
||||
font = "Arial Rounded MT Bold"
|
||||
font_size = x/8
|
||||
top = Pos(0, x/2*tan(radians(angle)) + 2*t) * Text(text, font_size, font=font, align=(Align.CENTER, Align.MIN))
|
||||
|
||||
svg = import_svg(image, align=(Align.CENTER, Align.MIN))
|
||||
svg_max_x = max([x.bounding_box().max.X for x in svg.faces()])
|
||||
svg_max_y = max([x.bounding_box().max.Y for x in svg.faces()])
|
||||
svg_min_x = min([x.bounding_box().min.X for x in svg.faces()])
|
||||
svg_min_y = min([x.bounding_box().min.Y for x in svg.faces()])
|
||||
svg_size = (svg_max_x - svg_min_x, svg_max_y - svg_min_y)
|
||||
svg_scale = min(x/svg_size[0] * 0.6, y/svg_size[1] * 0.6)
|
||||
|
||||
svg_obj = [Pos(0, y + t + image_yoff*svg_scale - svg_size[1]*svg_scale) * face for face in svg.faces()]
|
||||
top += scale(svg_obj, (svg_scale, svg_scale, svg_scale))
|
||||
|
||||
counter += extrude(Pos(0, 0, base_z) * top, text_z, (0, 0, 1))
|
||||
|
||||
return counter
|
||||
|
||||
|
||||
x = 25 * MM
|
||||
y = 10 * MM
|
||||
t = 1 * MM
|
||||
base_z = 1 * MM
|
||||
text_z = 1 * MM
|
||||
angle = 22.5
|
||||
|
||||
number_counters = [
|
||||
(1, 1),
|
||||
(5, 5),
|
||||
(10, 10),
|
||||
(-1, -1),
|
||||
(-5, -5),
|
||||
(1, 0),
|
||||
(5, 0),
|
||||
(10, 0),
|
||||
(0, 1),
|
||||
(0, 5),
|
||||
(0, 10),
|
||||
(1, -1),
|
||||
]
|
||||
|
||||
image_counters = {
|
||||
"Deathtouch": 2,
|
||||
"Doublestrike": 0,
|
||||
"First Strike": 0,
|
||||
"Flying": 0,
|
||||
"Goad": 0,
|
||||
"Haste": -3,
|
||||
"Hexproof": 0,
|
||||
"Indestructible": 0,
|
||||
"Lifelink": -2,
|
||||
"Lore": 0,
|
||||
"Menace": -2,
|
||||
"Reach": -3,
|
||||
"Ringbearer": 2,
|
||||
"Shield": -2,
|
||||
"Stun": -2,
|
||||
"Time": 0,
|
||||
"Trample": 0,
|
||||
"Vigilance": -1.5,
|
||||
"Charge": 0,
|
||||
}
|
||||
|
||||
if True:
|
||||
for numbers in number_counters:
|
||||
counter = Numerical(numbers[0], numbers[1], x, y, t, angle, base_z, text_z)
|
||||
export_step(counter, f"step/counter_{NumStr(numbers[0])}_{NumStr(numbers[1])}.step")
|
||||
export_stl(counter, f"stl/counter_{NumStr(numbers[0])}_{NumStr(numbers[1])}.stl")
|
||||
|
||||
for text, y_off in image_counters.items():
|
||||
counter = Textual(text, f"svg/{text.lower().replace(' ', '')}.svg", y_off, x, 2.5*y, t, angle, base_z, text_z)
|
||||
export_step(counter, f"step/counter_{text.lower().replace(' ', '')}.step")
|
||||
export_stl(counter, f"stl/counter_{text.lower().replace(' ', '')}.stl")
|
||||
else:
|
||||
text = "Charge"
|
||||
counter = Textual(text, f"svg/{text.lower().replace(' ', '')}.svg", image_counters[text], x, 2.5*y, t, angle, base_z, text_z)
|
||||
show(counter)
|
@ -0,0 +1,5 @@
|
||||
<!-- Generated by IcoMoon.io -->
|
||||
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="30" height="32" viewBox="0 0 30 32">
|
||||
<title>counter-charge</title>
|
||||
<path fill="#444" d="M14.958 0.318c2.3 3.955 4.594 7.914 6.83 11.906 1.209-1.512 0.563-0.737 1.948-2.318 1.968 2.43 3.795 5.103 4.552 8.172l0.114-0.012c0.883 0 1.598 0.716 1.598 1.598s-0.715 1.598-1.598 1.598l-0.267-0.027c-0.882 2.968-2.555 5.712-4.399 8.188-2.030-2.628-1.127-1.364-2.743-3.767-1.453 1.7-3.677 5.557-6.035 6.025-2.545-1.137-4.404-3.519-6.075-5.673-1.47 2.122-0.636 0.975-2.534 3.415-1.733-2.53-3.682-5.173-4.403-8.204-0.126 0.053-0.017 0.010-0.348 0.043-0.883 0-1.598-0.715-1.598-1.598s0.715-1.598 1.598-1.598l0.197 0.020c0.751-3.044 2.556-5.791 4.554-8.18 0.654 0.711 1.274 1.453 1.872 2.211 2.221-3.947 4.473-7.876 6.737-11.799zM14.977 2.549c0 0-9.176 16.002-9.121 16.456 0.231 1.896 6.427 10.541 9.121 11.261 2.386-0.19 9.005-10.617 9.082-11.261s-9.082-16.456-9.082-16.456zM17.27 23.841l1.151 1.875-2.77 2.727v-4.091l1.619-0.511zM12.668 23.832l1.619 0.511v4.099l-2.77-2.727 1.151-1.884zM22.506 20.029l-3.196 4.815-1.279-1.96 1.96-2.813 2.514-0.043zM7.415 20.048l2.514 0.043 1.96 2.813-1.364 1.96-3.111-4.815zM15.043 12.463l3.793 6.562c0 0-2.727 4.091-3.153 4.219s-0.597 0.298-1.364 0c-0.767-0.298-3.111-4.219-3.111-4.219l3.835-6.563zM15.682 5.773l6.903 12.784-2.386-0.043-4.517-7.67v-5.071zM14.318 5.773v5.071l-4.517 7.67-2.386 0.043 6.903-12.784zM6.349 12.42c0 0-3.148 4.090-3.111 6.987 0.043 3.326 3.111 7.587 3.111 7.587 0.597-0.661 1.173-1.348 1.688-2.076-1.251-1.877-2.898-3.742-3.478-5.979 0.805-1.844 1.849-3.593 2.834-5.348-0.574-0.677-0.231-0.283-1.044-1.17zM23.736 12.42c-0.808 0.885-0.434 0.461-1.127 1.268 0.521 1.351 2.441 3.847 2.704 5.251-0.94 1.968-2.216 3.837-3.499 5.594 1.090 1.567 0.462 0.736 1.923 2.461 1.503-2.183 2.771-4.605 3.074-7.268l-0.006-0.062c0.011-0.107 0.022-0.215 0.032-0.322 0.001-0.002 0.002-0.004 0.003-0.006-0.194-2.574-1.611-4.878-3.103-6.916z"></path>
|
||||
</svg>
|
After Width: | Height: | Size: 1.9 KiB |
@ -0,0 +1,5 @@
|
||||
<!-- Generated by IcoMoon.io -->
|
||||
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="26" height="32" viewBox="0 0 26 32">
|
||||
<title>ability-deathtouch</title>
|
||||
<path fill="#444" d="M 14.628 0 c 1.741 0.678 3.785 1.508 4.362 3.481 c 0.536 2.049 -2.12 3.076 -2.11 5.04 c 1.199 0.83 2.525 1.452 3.815 2.125 c 1.604 -1.381 0.678 -3.517 0.84 -5.333 c 1.503 1.422 3.532 2.454 4.326 4.478 c 0.597 1.619 0.374 3.395 0.471 5.09 c 0.167 4.174 -0.653 8.546 -3.142 11.987 c -1.786 2.596 -4.721 4.048 -7.651 4.959 c -1.386 0.218 -2.823 0.238 -4.205 0.015 c -2.267 -0.673 -4.519 -1.614 -6.29 -3.218 c -3.668 -3.051 -5.146 -8.066 -5.014 -12.7 c 0.051 -2.155 -0.152 -4.367 0.395 -6.477 c 0.754 -2.282 3.056 -3.4 4.731 -4.923 c -0.445 1.614 -1.528 3.102 -1.381 4.832 c 0.025 1.154 1.128 1.771 1.847 2.495 c 0.521 -2.024 -0.162 -4.493 1.493 -6.087 c 1.72 -1.902 4.696 -1.098 6.745 -2.434 c 0.88 -0.865 0.627 -2.221 0.768 -3.33 M 4.225 15.949 c -0.002 0.049 -0.05 0.085 -0.031 0.131 c 0.861 2.103 0.58 4.604 -0.025 6.892 c 1.275 1.533 3.299 1.29 5.07 1.128 c -0.283 1.386 -1.569 2.94 -0.349 4.215 c 0.324 -0.248 0.972 -0.754 1.295 -1.007 c 0.633 0.572 1.275 1.144 1.928 1.705 c 0.369 -0.673 0.734 -1.346 1.113 -2.009 c 0.455 0.663 0.891 1.346 1.326 2.029 c 0.541 -0.511 1.083 -1.027 1.624 -1.538 c 0.815 0.405 2.087 1.201 2.261 0.16 c 0.166 -0.994 -0.166 -2.153 -0.995 -3.248 c -0.061 -0.081 -0.06 -0.192 -0.086 -0.287 c 1.872 0.233 3.901 0.228 5.202 -1.361 c -0.964 -1.816 -0.675 -4.676 -0.051 -6.503 c 0.025 -0.073 -0.038 -0.148 -0.061 -0.22 c -0.961 -2.955 -2.686 -4.09 -5.13 -5.244 c -4.751 -2.343 -11.289 0.142 -13.091 5.157 M 6.353 20.983 c 1.7 1.037 6.114 0.525 5.195 -1.773 c -0.464 -1.159 -1.717 -3.235 -2.981 -2.73 c -1.434 0.573 -3.251 2.686 -2.214 4.503 M 11.117 25.403 c 0.754 -0.309 1.497 -0.918 2.181 -1.374 c 0.729 0.541 1.41 0.957 2.159 1.473 c -0.349 -1.746 -0.629 -3.213 -1.656 -4.703 c -1.056 -1.533 -2.379 2.894 -2.684 4.604 M 20.203 20.983 c -1.7 1.037 -6.114 0.525 -5.195 -1.773 c 0.464 -1.159 1.717 -3.235 2.981 -2.73 c 1.433 0.573 3.251 2.686 2.214 4.503"></path>
|
||||
</svg>
|
After Width: | Height: | Size: 2.0 KiB |
@ -0,0 +1,5 @@
|
||||
<!-- Generated by IcoMoon.io -->
|
||||
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="28" height="32" viewBox="0 0 28 32">
|
||||
<title>ability-doublestrike</title>
|
||||
<path fill="#444" d="M5.761 1.259c6.96-3.011 15.829-0.336 19.844 6.133 3.431 5.146 3.337 12.377-0.149 17.473-4.109 6.321-12.895 8.88-19.767 5.819 3.458 0.116 7.076-0.165 10.038-2.145 3.795-2.322 6.312-6.421 6.927-10.843 0.077-0.556 0.185-1.198 0.271-1.289 1.208-1.272 2.057-2.103 2.768-3.162 0.182-1.594 0.114-3.143-0.007-4.731-1.881-0.452-3.947-0.514-5.828-0.062-1.826-2.068-4.578-2.967-7.247-3.226-4.793-0.392-9.646 2.658-11.312 7.181-0.745 2.035-0.596 4.225-0.689 6.354-0.778-2.752-0.938-5.714 0.276-8.367 1.737-4.451 6.41-7.551 11.174-7.391 1.263 0.043 2.453 0.2 3.809 0.578 0.029 0.008 0.060 0.008 0.090 0.012-2.956-2.107-6.69-2.35-10.198-2.333zM13.73 18.574c-1.164-1.004-2.45-2.263-4.117-1.595 0.745 0.949 1.518 1.876 2.296 2.798-0.579 0.668-1.159 1.335-1.738 2.003-0.662 0.16-1.319 0.315-1.981 0.469 0.039 1.159 0.061 2.323 0.066 3.482 1.148-0.017 2.296 0.061 3.444-0.028 0.193-0.624 0.359-1.258 0.497-1.893 0.662-0.579 1.324-1.153 1.998-1.722 0.944 0.728 1.882 1.457 2.826 2.191 0.083-0.442 0.243-1.335 0.326-1.777-0.635-0.734-1.275-1.462-1.915-2.18 3.493-1.871 5.828-5.232 8.791-7.781 0.044-0.955 0.072-1.915 0.105-2.864-0.955 0.033-1.909 0.066-2.859 0.099-2.511 2.986-5.916 5.287-7.737 8.797zM6.553 16.95c-1.164-1.004-2.45-2.263-4.117-1.595 0.745 0.949 1.518 1.876 2.296 2.798-0.579 0.668-1.159 1.335-1.738 2.003-0.662 0.16-1.319 0.315-1.981 0.469 0.039 1.159 0.061 2.323 0.066 3.482 1.148-0.017 2.296 0.061 3.444-0.028 0.193-0.624 0.359-1.258 0.497-1.893 0.662-0.579 1.324-1.153 1.998-1.722 0.944 0.728 1.882 1.457 2.826 2.191 0.083-0.442 0.243-1.335 0.326-1.777-0.635-0.734-1.275-1.462-1.915-2.18 3.493-1.871 5.828-5.232 8.791-7.781 0.044-0.955 0.072-1.915 0.105-2.864-0.955 0.033-1.909 0.066-2.859 0.099-2.511 2.986-5.916 5.287-7.737 8.797z"></path>
|
||||
</svg>
|
After Width: | Height: | Size: 1.9 KiB |
@ -0,0 +1,5 @@
|
||||
<!-- Generated by IcoMoon.io -->
|
||||
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="28" height="32" viewBox="0 0 28 32">
|
||||
<title>ability-firststrike</title>
|
||||
<path fill="#444" d="M 5.775 1.229 c 4.255 -1.7 9.222 -1.628 13.344 0.43 c 4.034 1.915 7.174 5.596 8.416 9.884 c 1.391 5.099 0.337 10.943 -3.289 14.9 c -4.409 5.226 -12.306 6.981 -18.548 4.249 c 3.51 0.138 7.18 -0.193 10.171 -2.23 c 5.292 -3.273 8.057 -10 6.512 -16.048 c 0.397 -0.469 0.8 -0.938 1.203 -1.402 c -0.011 -1.6 -0.055 -3.195 -0.215 -4.785 c -1.6 -0.298 -3.228 -0.342 -4.851 -0.37 c -0.248 0.199 -0.739 0.585 -0.982 0.784 c -2.665 -1.291 -5.756 -1.926 -8.653 -1.06 c -4.029 1.087 -7.494 4.542 -8.052 8.758 c -0.243 1.462 -0.143 2.953 -0.226 4.426 c -0.789 -2.77 -0.922 -5.778 0.315 -8.449 c 1.678 -4.249 6.049 -7.246 10.593 -7.332 c 2.718 -0.052 4.023 0.553 4.41 0.608 c 0.019 0.003 0.038 0.005 0.058 0.008 c -2.958 -2.13 -6.694 -2.34 -10.206 -2.371 z M 11.531 16.372 c -1.164 -1.004 -2.45 -2.263 -4.117 -1.595 c 0.745 0.949 1.518 1.876 2.296 2.798 c -0.579 0.668 -1.159 1.335 -1.738 2.003 c -0.662 0.16 -1.319 0.315 -1.981 0.469 c 0.039 1.159 0.061 2.323 0.066 3.482 c 1.148 -0.017 2.296 0.061 3.444 -0.028 c 0.193 -0.624 0.359 -1.258 0.497 -1.893 c 0.662 -0.579 1.324 -1.153 1.998 -1.722 c 0.944 0.728 1.882 1.457 2.825 2.191 c 0.083 -0.442 0.243 -1.335 0.326 -1.777 c -0.635 -0.734 -1.275 -1.462 -1.915 -2.18 c 3.493 -1.871 5.828 -5.232 8.791 -7.781 c 0.044 -0.955 0.072 -1.915 0.105 -2.864 c -0.955 0.033 -1.909 0.066 -2.859 0.099 c -2.511 2.986 -5.916 5.287 -7.737 8.797 z"></path>
|
||||
</svg>
|
After Width: | Height: | Size: 1.5 KiB |
@ -0,0 +1,5 @@
|
||||
<!-- Generated by IcoMoon.io -->
|
||||
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="26" height="32" viewBox="0 0 26 32">
|
||||
<title>ability-flying</title>
|
||||
<path fill="#444" d="M8.84 0c1.075 1.081 2.092 2.374 2.204 3.961 0.415 4.398-1.741 8.433-3.498 12.314 2.848-2.524 4.759-5.862 6.841-8.997 0.309 1.235 1.587 2.88 0.378 3.988-2.369 2.598-5.031 4.919-7.682 7.224-1.837 1.549-3.737 3.093-5.989 4.014 3.769-7.033 6.277-14.678 7.746-22.504zM5.859 21.029c-1.768 1.432-3.998 2.364-5.356 4.248-1.006 1.416-0.309 3.445 1.113 4.291 4.451 3.28 10.456 2.779 15.455 1.198-2.374-0.846-4.871-1.384-7.123-2.566 2.348 0.037 4.738 0.516 7.049-0.128 2.534-0.618 4.376-2.651 5.814-4.706-3.391 0.378-6.761 1.171-10.19 1.102 2.406-1.086 4.988-1.789 7.246-3.194 2.987-1.602 5.542-4.509 5.606-8.050-4.099 2.321-8.082 4.935-12.538 6.548 3.652-3.253 7.81-6.154 10.35-10.451 1.374-2.076 1.336-4.658 0.82-7.006-5.462 6.793-11.303 13.39-18.245 18.713z"></path>
|
||||
</svg>
|
After Width: | Height: | Size: 948 B |
@ -0,0 +1,5 @@
|
||||
<!-- Generated by IcoMoon.io -->
|
||||
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="26" height="32" viewBox="0 0 26 32">
|
||||
<title>ability-goad</title>
|
||||
<path fill="#444" d="M13.348 2.133c1.215 5.236 4.853 7.229 10.995 5.606l1.258 4.758c-8.742 2.311-15.183-1.217-17.047-9.252l4.794-1.112zM24.943 18.299c0 0-0.845-0.2-2.281-0.23-6.918-0.148-12.983 3.711-13.698 11.396l4.911 0.326c0.314-4.739 4.712-7.565 10.255-6.637l0.813-4.854zM3.080 6.091l-3.080 3.839c4.149 3.329 4.141 8.574 0.256 12.515l3.505 3.455c5.843-5.928 5.855-14.565-0.681-19.809z"></path>
|
||||
</svg>
|
After Width: | Height: | Size: 564 B |
@ -0,0 +1,5 @@
|
||||
<!-- Generated by IcoMoon.io -->
|
||||
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="29" height="32" viewBox="0 0 29 32">
|
||||
<title>ability-haste</title>
|
||||
<path fill="#444" d="M0.006 1.25c3.176 1.066 6.289 2.311 9.451 3.425-0.934 1.239-1.944 2.408-2.954 3.584 1.785 0.948 3.984 2.14 5.803 3.040-0.045 0.072-0.066 0.168-0.137 0.219-1.448 1.038-2.61 3.828-1.066 5.792 1.764 2.256 4.444 4.094 5.191 7.049-3.667-2.256-7.467-4.475-11.231-6.564 0.595-0.969 1.28-1.882 1.979-2.781-2-1.598-4.027-3.169-6.082-4.705 1.315-1.571 2.671-3.1 4.006-4.65-1.716-1.398-3.28-2.975-4.961-4.407zM27.774 2.556h-9.785c-0.569 2.13-1.12 4.266-1.625 6.413-0.457 2.588-3.992 3.204-4.338 5.819-0.201 2.221 2.027 3.432 3.273 4.926 2.581 2.671 2.747 7.113 6.179 9.043 2.311 1.211 6.918 2.52 7.44 1.775 1.53-2.186-2.795-4.907-2.982-8.782-0.004-0.092-0.086-2.384-0.688-3.75-2.235-5.761-0.63-10.276 2.526-15.444z"></path>
|
||||
</svg>
|
After Width: | Height: | Size: 901 B |
@ -0,0 +1,6 @@
|
||||
<!-- Generated by IcoMoon.io -->
|
||||
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="30" height="32" viewBox="0 0 30 32">
|
||||
<title>ability-hexproof</title>
|
||||
<path fill="#444" d="M 15 1 c 8.284 0 15 6.716 15 15 s -6.716 15 -15 15 c -8.284 0 -15 -6.716 -15 -15 s 6.716 -15 15 -15 z M 6.83 24.078 l -1.323 1.323 c 2.258 2.407 5.424 3.815 8.718 3.981 l -1.195 -2.07 c -2.424 -0.307 -4.436 -1.624 -6.2 -3.234 z M 23.016 24.232 c -1.581 1.73 -3.7 2.591 -5.948 3.03 l -1.222 2.117 c 3.217 -0.132 6.239 -1.57 8.493 -3.824 l -1.323 -1.323 z M 15 6.098 c -5.469 0 -9.902 4.433 -9.902 9.902 s 4.433 9.902 9.902 9.902 c 5.469 0 9.902 -4.433 9.902 -9.902 s -4.433 -9.902 -9.902 -9.902 z M 25.184 21.417 c -1.03 1.699 -0.488 0.992 -1.539 2.185 l 1.323 1.323 c 0.834 -0.777 1.503 -1.746 1.946 -2.796 l -1.73 -0.712 z M 3.327 9.412 c -1.275 1.956 -1.633 4.313 -1.748 6.588 c 0.108 3.117 1.025 6.498 3.299 8.772 l 1.323 -1.323 c -1.904 -1.994 -2.608 -4.784 -2.742 -7.448 c 0.093 -1.444 0.052 -1.639 0.533 -3.335 c 0.12 -0.424 0.339 -0.814 0.509 -1.221 l -1.174 -2.033 z M 26.698 9.45 l -1.2 2.078 c 0.707 1.388 0.903 2.943 1.043 4.472 c -0.081 1.241 -0.072 1.663 -0.432 3.081 c -0.133 0.525 -0.364 1.02 -0.546 1.531 l 1.697 0.699 c 0.883 -1.634 1.069 -3.49 1.16 -5.31 c -0.095 -2.221 -0.445 -4.658 -1.722 -6.551 z M 14.555 2.601 c -4.127 0.134 -8.105 2.186 -10.428 5.626 h 2.483 c 2.037 -2.365 4.909 -3.447 7.945 -3.746 v -1.88 z M 16.372 2.648 l -0.927 -0.047 v 1.88 c 3.207 0.147 5.798 1.399 7.969 3.722 h 2.443 c -1.587 -2.403 -4.121 -4.175 -6.866 -5.021 c -0.851 -0.263 -1.746 -0.356 -2.619 -0.534 z"></path>
|
||||
<path fill="#444" d="M23.198 10.837l-8.198 14.938-8.198-14.938h16.395zM19.424 13.106h-8.849l4.425 7.863 4.425-7.863z"></path>
|
||||
</svg>
|
After Width: | Height: | Size: 1.7 KiB |
@ -0,0 +1,5 @@
|
||||
<!-- Generated by IcoMoon.io -->
|
||||
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="31" height="32" viewBox="0 0 31 32">
|
||||
<title>ability-indestructible</title>
|
||||
<path fill="#444" d="M 11.137 1.015 l -2.81 4.422 c 2.414 -1.76 5.238 -2.544 8.205 -2.638 v 0 c 7.783 0 14.092 6.309 14.092 14.092 s -6.309 14.092 -14.092 14.092 s -14.092 -6.309 -14.092 -14.092 c -0.022 -2.839 0.91 -5.567 2.449 -7.93 l -4.889 2.955 l 3.812 -5.953 l -1.612 -2.902 l 2.852 1.661 l 6.085 -3.707 z M 7.954 6.025 l -0.68 1.07 l 1.142 2.3 l -2.284 -1.185 l -1.124 0.679 l 2.926 1.306 c 0.185 2.397 0.216 4.804 0.46 7.197 c 0.076 0.742 0.128 1.045 0.229 1.695 c 0.808 3.829 4.098 6.717 7.71 7.91 c 2.519 -0.465 4.679 -2.218 6.268 -4.166 c 2.709 -3.749 1.78 -8.66 2.519 -12.975 c -3.036 0.296 -5.994 -0.639 -8.761 -1.795 v 0 c -2.152 1.047 -4.505 1.794 -6.905 1.922 l -1.5 -3.958 z M 10.556 11.953 c 2.012 0.143 3.918 -0.475 5.767 -1.193 c 2.054 0.459 4.04 1.362 6.205 1.236 c -0.312 2.582 -0.201 5.244 -0.887 7.768 c -0.782 2.397 -2.978 3.913 -5.191 4.874 c -2.091 -1.051 -4.23 -2.461 -5.069 -4.758 c -0.908 -2.529 -0.618 -5.286 -0.825 -7.927 z M 9.278 11.177 c 0.523 3.813 -0.407 8.349 2.498 11.401 c 1.373 1.373 3.052 2.83 5.017 3.1 c 2.656 -1.172 5.196 -3.19 6.062 -6.073 c 0.591 -2.762 0.502 -5.613 0.776 -8.412 c -2.524 -0.042 -4.937 -0.803 -7.245 -1.753 c -2.207 1.114 -4.626 1.769 -7.108 1.737 z"></path>
|
||||
</svg>
|
After Width: | Height: | Size: 1.4 KiB |
@ -0,0 +1,5 @@
|
||||
<!-- Generated by IcoMoon.io -->
|
||||
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="31" height="32" viewBox="0 0 31 32">
|
||||
<title>ability-lifelink</title>
|
||||
<path fill="#444" d="M 27.033 6.806 v 0 c 3.042 0.842 4.572 3.841 4.314 6.85 c -0.241 2.261 -1.636 4.528 -3.468 5.977 c -3.029 2.473 -6.841 3.885 -9.54 6.778 c -1.262 1.284 -2.059 2.897 -2.646 4.584 l -0.113 -0.316 c -0.56 -1.579 -1.379 -3.048 -2.533 -4.269 c -2.699 -2.893 -6.511 -4.305 -9.54 -6.778 c -1.832 -1.449 -3.227 -3.717 -3.468 -5.977 c -0.32 -2.997 1.342 -6.072 4.314 -6.85 v 0 c -0.772 1.848 -2 3.712 -1.664 5.812 c 0.304 1.376 1.187 2.642 2.362 3.426 c 2.92 1.947 6.301 3.19 8.906 5.589 c 0.824 2.426 1.076 4.998 1.701 7.477 l 0.036 0.083 l 0.036 -0.083 c 0.625 -2.478 0.877 -5.051 1.701 -7.477 c 2.604 -2.399 5.985 -3.642 8.906 -5.589 c 1.175 -0.784 2.057 -2.05 2.362 -3.426 c 0.308 -2.08 -0.856 -3.985 -1.666 -5.811 v 0 v 0 z M 15.572 5.723 l 0.121 -0.128 c 1.351 1.427 0.653 0.697 2.095 2.188 c -0.893 1.187 -0.945 2.625 -0.851 4.053 c 1.187 0.21 2.373 0.399 3.549 0.64 c -1.066 1.181 -2.657 1.244 -4.143 1.444 c 0.42 0.567 1.003 0.956 1.586 1.328 c -0.315 1.754 -0.651 3.502 -1.013 5.245 c 4.615 -2.861 8.947 -7.109 9.934 -12.659 c 0.58 -2.913 -1.412 -6.068 -4.35 -6.694 c 0 0 -0.355 -0.119 -1.583 -0.137 c -2.262 -0.033 -4.039 1.772 -5.224 3.737 v 0 c -1.184 -1.964 -2.962 -3.77 -5.224 -3.737 c -1.229 0.018 -1.583 0.137 -1.583 0.137 c -2.937 0.626 -4.93 3.781 -4.35 6.694 c 0.987 5.55 5.319 9.797 9.934 12.659 c -0.362 -1.743 -0.698 -3.491 -1.013 -5.245 c 0.583 -0.373 1.166 -0.761 1.586 -1.328 c -1.486 -0.2 -3.077 -0.262 -4.143 -1.444 c 1.176 -0.242 2.363 -0.431 3.549 -0.64 c 0.095 -1.428 0.042 -2.867 -0.851 -4.053 c 0.661 -0.684 1.324 -1.365 1.974 -2.06 z"></path>
|
||||
</svg>
|
After Width: | Height: | Size: 1.7 KiB |
@ -0,0 +1,5 @@
|
||||
<!-- Generated by IcoMoon.io -->
|
||||
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="24" height="32" viewBox="0 0 24 32">
|
||||
<title>counter-lore</title>
|
||||
<path fill="#444" d="M4.537 0l0.589 0.002 0.609 0.015c4.599 0.173 7.066 1.635 10.9 1.628 2.022-0.011 4.040-0.222 6.029-0.58l0.002 0.005c0.153-0.031 0.077-0.022 0.229-0.029 0.609 0 1.102 0.493 1.102 1.102v28.155c-0.011 0.471-0.513 1.079-1.026 1.239-1.615 0.501-3.058 0.49-4.707 0.445-4.599-0.173-7.066-1.635-10.9-1.628-2.022 0.011-4.040 0.222-6.029 0.58l-0.002-0.005c-0.153 0.031-0.077 0.022-0.229 0.029-0.609 0-1.102-0.493-1.102-1.102v-28.036c0-0.514 0.595-1.112 1.104-1.284 1-0.338 1.853-0.502 2.841-0.529l0.589-0.005zM5.269 1.007c-1.314-0.044-2.476 0.023-3.507 0.4-0.655 0.239-0.627 0.743-0.638 1.181l0.016 26.152 0.004 0.253c0 0.562 0.116 0.855 0.593 0.84 0.139-0.005 0.474-0.043 0.613-0.072l0.001 0.004c1.808-0.331 3.643-0.525 5.481-0.536 3.486-0.006 5.728 1.532 9.909 1.692 1.499 0.042 3.195 0.206 4.619-0.38 0.64-0.263 0.588-0.63 0.593-1.363v-25.966l0.012-0.368c0.013-0.694-0.181-0.714-0.735-0.714-0.138 0.007-0.348 0.033-0.488 0.061l-0.001-0.004-0.387 0.067v18.224l-2.065 2.737c-0.153 0.215-0.414 0.456-0.666 0.469-0.247-0.009-0.533-0.255-0.678-0.469l0 0-2.065-2.737v-17.762c-2.205-0.048-4.29-0.843-6.428-1.288-1.040-0.216-2.087-0.345-3.148-0.397l-0.554-0.013-0.482-0.010zM1.912 25.844l-0.021 3.211c0 0 3.095-0.535 5.793-0.535s8.491 1.841 10.791 1.798c2.3-0.043 3.994-0.749 3.994-0.749l0.021-3.339c0 0-1.527 0.557-4.204 0.492s-9.327-1.413-11.335-1.413-5.040 0.535-5.040 0.535zM7.26 9.249c-0.318 0.001-0.637 0.003-0.955 0.002-0.304 0.015-0.609 0.026-0.913 0.046-0.776 0.050-1.547 0.154-2.313 0.273l-0.005 1.282c1.749-0.279 3.492-0.357 4.841-0.271 1.039 0.066 1.835 0.195 3.324 0.503 0.050 0.010 0.102 0.021 0.204 0.042 1.182 0.245 2.151 0.439 2.931 0.539l-0.144-1.374c-0.722-0.092-1.285-0.196-2.425-0.432-0.102-0.021-0.154-0.032-0.204-0.042-1.565-0.324-2.429-0.464-3.573-0.536-0.256-0.012-0.512-0.029-0.769-0.031zM7.299 14.855c-0.322 0.002-0.644 0.004-0.967 0.003-0.308 0.019-0.616 0.032-0.924 0.056-0.786 0.061-1.555 0.141-2.33 0.285l-0.004 1.501c1.853-0.269 3.495-0.351 4.868-0.247 1.057 0.080 1.904 0.132 3.416 0.509 0.051 0.013 0.103 0.026 0.207 0.052 1.198 0.299 2.020 0.49 2.81 0.611l-0.151-1.556c-0.734-0.113-1.154-0.229-2.311-0.518-0.104-0.026-0.156-0.039-0.207-0.052-1.585-0.395-2.471-0.519-3.629-0.607-0.259-0.015-0.518-0.035-0.778-0.037zM6.069 20.457c-0.391 0.020-0.783 0.024-1.174 0.059-0.842 0.075-1.098 0.134-1.821 0.266l0.005 1.814c1.516-0.305 3.184-0.368 4.575-0.227 1.075 0.108 1.972 0.048 3.534 0.451 1.201 0.311 1.269 0.328 1.731 0.433 0.845 0.192 2.337 0.513 3.060 0.563l-1.020-2.051c-0.639-0.044-0.941-0.14-1.719-0.316-0.441-0.1-0.507-0.117-1.688-0.422-1.629-0.421-2.559-0.407-3.727-0.525-0.959-0.079-0.408-0.008-1.755-0.043zM7.26 3.439c-0.318 0.001-0.637 0.003-0.955 0.002-0.304 0.014-0.609 0.023-0.913 0.041-0.776 0.044-1.547 0.136-2.313 0.241l-0.005 1.132c1.749-0.246 3.492-0.315 4.841-0.24 1.039 0.058 1.835 0.172 3.324 0.444 0.050 0.009 0.102 0.019 0.204 0.037 1.182 0.216 2.151 0.388 2.931 0.476l-0.144-1.213c-0.722-0.081-1.285-0.173-2.425-0.382-0.102-0.019-0.154-0.028-0.204-0.037-1.565-0.286-2.429-0.41-3.573-0.473-0.256-0.011-0.512-0.026-0.769-0.027z"></path>
|
||||
</svg>
|
After Width: | Height: | Size: 3.2 KiB |
@ -0,0 +1,5 @@
|
||||
<!-- Generated by IcoMoon.io -->
|
||||
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32">
|
||||
<title>ability-menace</title>
|
||||
<path fill="#444" d="M 15.845 0.695 c 1.065 1.442 1.508 3.235 2.532 4.697 c 1.819 0.937 3.831 1.488 5.599 2.553 c 2.644 -1.391 5.258 -2.858 8.024 -4.01 l -0.229 0.255 c -2.069 2.282 -4.137 4.85 -4.708 7.963 c -0.219 2.603 -0.143 5.268 -0.993 7.78 c 1.055 2.099 2.125 4.193 3.215 6.277 c -1.778 -1.111 -3.633 -2.084 -5.604 -2.797 c -1.635 1.895 -3.531 3.546 -5.665 4.85 c -1.172 0.591 -1.523 1.895 -1.916 3.042 c -0.606 -1.1 -1.06 -2.405 -2.226 -3.036 c -2.17 -1.309 -4.111 -2.955 -5.716 -4.911 c -2.099 0.596 -4.025 1.62 -5.859 2.771 c 1.07 -2.262 2.262 -4.463 3.276 -6.745 c -0.657 -2.527 -0.469 -5.146 -0.825 -7.703 c -0.769 -2.986 -2.828 -5.4 -4.748 -7.724 c 2.716 1.172 5.298 2.619 7.917 3.989 c 1.768 -1.08 3.79 -1.635 5.625 -2.573 c 1.014 -1.421 1.447 -3.164 2.301 -4.678 z M 18.142 18.13 c 0.983 0.774 2.028 1.472 3.047 2.216 c 1.824 -1.233 2.787 -3.266 3.143 -5.39 c -1.956 1.263 -4.152 2.063 -6.19 3.174 z M 7.535 15.083 c 0.428 2.002 1.284 4.055 3.087 5.192 c 1.146 -0.581 2.135 -1.432 3.169 -2.191 c -2.109 -0.958 -4.193 -1.967 -6.256 -3.001"></path>
|
||||
</svg>
|
After Width: | Height: | Size: 1.2 KiB |
@ -0,0 +1,5 @@
|
||||
<!-- Generated by IcoMoon.io -->
|
||||
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="30" height="32" viewBox="0 0 30 32">
|
||||
<title>ability-reach</title>
|
||||
<path fill="#444" d="M28.808 29.808c-0.412 0.404-0.834 0.798-1.255 1.192-1.378-1.188-2.387-3.481-4.474-3.302-5.457 0.047-10.915-0.084-16.362 0.058-0.899 1.304-1.936 3.034-3.731 3.020-2.666-0.021-3.95-3.077-2.147-4.97 0.001 0.005 0.005 0.010 0.004 0.015-0.167 1.958 0.387 2.458 0.763 2.524 1.069 0.189 1.535-0.757 1.814-1.567 0.689-1.866-0.478-3.864 0.147-5.741 0.757-2.45 2.871-4.548 5.426-5.005 1.257-0.342 1.835 1.299 2.997 1.33 0.542-0.258 1.057-0.563 1.546-0.92-2.298-2.387-4.706-4.664-7.103-6.951-1.078 1.735-1.746 3.738-3.139 5.279-1.279-4.533-2.247-9.146-3.266-13.742v-0c4.596 1.026 9.209 1.983 13.742 3.266-1.54 1.393-3.544 2.061-5.279 3.139 2.287 2.398 4.564 4.806 6.951 7.103 0.358-0.489 0.663-1.004 0.92-1.546-0.032-1.162-1.672-1.74-1.33-2.997 0.457-2.555 2.555-4.669 5.005-5.426 1.877-0.626 3.875 0.542 5.741-0.147 0.81-0.279 1.756-0.745 1.567-1.814-0.066-0.376-0.566-0.93-2.524-0.763-0.005 0-0.010-0.003-0.015-0.004 1.893-1.803 4.949-0.52 4.97 2.147 0.014 1.796-1.716 2.832-3.020 3.731-0.142 5.447-0.011 10.904-0.058 16.362-0.179 2.087 2.114 3.097 3.302 4.474-0.368 0.399-0.745 0.791-1.122 1.181l-0.070 0.073zM8.228 21.744c-0.233 0.241-0.284 0.274-0.473 0.552-0.82 1.213-0.842 2.759-1.16 4.14 5.662 0.042 11.33 0.032 16.993 0.005-2.776-2.766-5.547-5.536-8.333-8.291-1.141 1.425-2.208 2.918-3.465 4.248-0.815-0.552-1.656-1.987-2.755-1.172-0.291 0.137-0.572 0.294-0.807 0.518zM20.744 9.228c-0.224 0.236-0.381 0.516-0.518 0.807-0.815 1.099 0.62 1.94 1.172 2.755-1.33 1.257-2.823 2.324-4.248 3.465 2.755 2.787 5.526 5.557 8.291 8.333 0.026-5.663 0.037-11.33-0.005-16.993-1.381 0.318-2.927 0.34-4.14 1.16-0.278 0.188-0.311 0.24-0.552 0.473z"></path>
|
||||
</svg>
|
After Width: | Height: | Size: 1.8 KiB |
@ -0,0 +1,5 @@
|
||||
<!-- Generated by IcoMoon.io -->
|
||||
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="15" height="32" viewBox="0 0 15 32">
|
||||
<title>ability-ring-bearer</title>
|
||||
<path fill="#444" d="M13.352 12.486c0.185 0.294 0.359 0.62 0.534 0.991 1.662 3.529 1.907 7.134 1.23 11.049-0.376 2.18-1.664 5.472-3.709 6.621-3.445 1.937-8.539 0.469-10.054-3.347-0.98-2.466-1.332-4.765-1.351-7.374-0.023-2.961 0.545-7.439 3.093-9.38 0.103-0.078 0.207-0.154 0.313-0.226-0.677-1.48-0.583-2.811-0.232-4.248 0.047-0.19 0.027-0.37-0.060-0.541-0.868-1.749-1.014-2.425-0.908-4.319 0.048-0.86 0.515-1.534 0.671-1.615 1.193-0.621 2.749 1.852 2.42 4.983-0.083 0.793-0.742 1.186-0.742 1.186s0.717 0.81 0.86 1.035c0.422 0.665 0.517 1.74 0.532 2.412 1.428-0.324 2.944-0.221 4.346 0.344 0.035 0.014 0.154 0.073 0.154 0.073s0.007-0.385 0.008-0.431c0.037-0.827 0.351-1.561 0.967-2.097 0.149-0.128 0.343-0.532 0.305-0.723-0.195-0.978-0.931-1.557-0.508-3.438 0.159-0.703 0.533-2.004 1.444-2.062 1.205-0.077 1.43 1.823 1.443 3.070 0.015 1.376-0.549 1.848-0.848 2.687-0.059 0.168-0.225 0.376-0.118 0.521 0.927 1.262 0.842 3.24 0.211 4.83zM4.864 10.047c0.141-0.315 0.237-0.783 0.147-1.258-0.153-0.813-0.597-1.443-0.997-1.451-0.001 0-0.282 1.129-0.002 2.192 0.108 0.411 0.183 0.65 0.262 0.781 0.193-0.097 0.39-0.184 0.59-0.263zM12.183 11.156c0.257-0.014 0.492-0.602 0.528-1.325 0.036-0.74-0.151-1.359-0.414-1.372s-0.51 0.585-0.546 1.325c-0.025 0.499 0.053 0.943 0.186 1.183 0.085 0.062 0.166 0.125 0.246 0.189zM4.421 11.856c-1.867 0.747-2.607 4.078-2.855 5.978-0.35 2.658-0.13 5.282 0.657 7.872 0.506 1.662 2.387 5.466 4.559 3.409 0.049-0.046 0.052-0.096 0.012-0.149-1.010-1.32-1.647-2.618-1.911-3.895-0.879-4.249-0.745-8.508 1.716-12.229 0.034-0.052 0.035-0.107 0.003-0.161-0.48-0.808-1.293-1.18-2.181-0.824zM8.309 26.589c1.222-3.99 1.153-8.629-0.58-12.477-0.041-0.091-0.095-0.099-0.162-0.026-0.223 0.246-0.424 0.566-0.601 0.962-1.458 3.25-1.45 6.616-0.642 10.159 0.207 0.908 0.635 1.725 1.285 2.448 0.031 0.035 0.085 0.040 0.122 0.011 0.005-0.004 0.010-0.008 0.014-0.013 0.253-0.306 0.442-0.661 0.565-1.065zM3.427 1.448c-0.382 0.492-0.157 2.229-0.097 2.551 0.018 0.084 0.416 1.074 0.5 1.074 0.058 0 0.132 0.039 0.169 0 0.573-0.597 0.208-2.395 0.208-2.395-0.138-0.783-0.704-1.332-0.781-1.23zM12.627 6.090c0.186 0.002 0.475-0.787 0.488-1.71s-0.255-1.654-0.441-1.657c-0.186-0.002-0.402 0.734-0.414 1.658s0.182 1.707 0.367 1.709z"></path>
|
||||
</svg>
|
After Width: | Height: | Size: 2.3 KiB |
@ -0,0 +1,5 @@
|
||||
<!-- Generated by IcoMoon.io -->
|
||||
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="28" height="32" viewBox="0 0 28 32">
|
||||
<title>counter-shield</title>
|
||||
<path fill="#444" d="M13.867 2.133c7.658 0 13.867 6.208 13.867 13.867s-6.208 13.867-13.867 13.867c-7.658 0-13.867-6.208-13.867-13.867s6.208-13.867 13.867-13.867zM13.867 4.29c-6.467 0-11.71 5.243-11.71 11.71s5.243 11.71 11.71 11.71c6.467 0 11.71-5.243 11.71-11.71s-5.243-11.71-11.71-11.71zM13.867 8.645c4.062 0 7.355 3.293 7.355 7.355s-3.293 7.355-7.355 7.355c-4.062 0-7.355-3.293-7.355-7.355s3.293-7.355 7.355-7.355zM13.867 7.256c-4.829 0-8.744 3.915-8.744 8.744s3.915 8.744 8.744 8.744c4.829 0 8.744-3.915 8.744-8.744s-3.915-8.744-8.744-8.744zM13.867 10.891c2.812 0 5.092 2.28 5.092 5.092s-2.28 5.092-5.092 5.092-5.092-2.28-5.092-5.092c0-2.812 2.28-5.092 5.092-5.092zM13.85 10.102c-3.248 0-5.881 2.633-5.881 5.881s2.633 5.881 5.881 5.881c3.248 0 5.881-2.633 5.881-5.881s-2.633-5.881-5.881-5.881zM13.867 13.96c1.117 0 2.023 0.906 2.023 2.023s-0.906 2.023-2.023 2.023-2.023-0.906-2.023-2.023c0-1.117 0.906-2.023 2.023-2.023zM13.867 11.919c-2.244 0-4.063 1.819-4.063 4.063s1.819 4.063 4.063 4.063 4.063-1.819 4.063-4.063c0-2.244-1.819-4.063-4.063-4.063zM10.394 7.084c0.402 0 0.728-0.326 0.728-0.728s-0.326-0.728-0.728-0.728c-0.402 0-0.728 0.326-0.728 0.728s0.326 0.728 0.728 0.728zM13.867 6.522c0.402 0 0.728-0.326 0.728-0.728s-0.326-0.728-0.728-0.728-0.728 0.326-0.728 0.728c0 0.402 0.326 0.728 0.728 0.728zM13.867 26.994c0.402 0 0.728-0.326 0.728-0.728s-0.326-0.728-0.728-0.728-0.728 0.326-0.728 0.728c0 0.402 0.326 0.728 0.728 0.728zM3.831 18.524c0.402 0 0.728-0.326 0.728-0.728s-0.326-0.728-0.728-0.728c-0.402 0-0.728 0.326-0.728 0.728s0.326 0.728 0.728 0.728zM3.831 15.026c0.402 0 0.728-0.326 0.728-0.728s-0.326-0.728-0.728-0.728c-0.402 0-0.728 0.326-0.728 0.728s0.326 0.728 0.728 0.728zM5.031 11.662c0.402 0 0.728-0.326 0.728-0.728s-0.326-0.728-0.728-0.728c-0.402 0-0.728 0.326-0.728 0.728s0.326 0.728 0.728 0.728zM7.363 8.889c0.402 0 0.728-0.326 0.728-0.728s-0.326-0.728-0.728-0.728c-0.402 0-0.728 0.326-0.728 0.728s0.326 0.728 0.728 0.728zM5.031 21.864c0.402 0 0.728-0.326 0.728-0.728s-0.326-0.728-0.728-0.728c-0.402 0-0.728 0.326-0.728 0.728s0.326 0.728 0.728 0.728zM7.363 24.633c0.402 0 0.728-0.326 0.728-0.728s-0.326-0.728-0.728-0.728c-0.402 0-0.728 0.326-0.728 0.728s0.326 0.728 0.728 0.728zM10.394 26.405c0.402 0 0.728-0.326 0.728-0.728s-0.326-0.728-0.728-0.728c-0.402 0-0.728 0.326-0.728 0.728s0.326 0.728 0.728 0.728zM17.476 26.405c0.402 0 0.728-0.326 0.728-0.728s-0.326-0.728-0.728-0.728c-0.402 0-0.728 0.326-0.728 0.728s0.326 0.728 0.728 0.728zM17.476 7.084c0.402 0 0.728-0.326 0.728-0.728s-0.326-0.728-0.728-0.728c-0.402 0-0.728 0.326-0.728 0.728s0.326 0.728 0.728 0.728zM20.687 24.633c0.402 0 0.728-0.326 0.728-0.728s-0.326-0.728-0.728-0.728c-0.402 0-0.728 0.326-0.728 0.728s0.326 0.728 0.728 0.728zM22.918 21.864c0.402 0 0.728-0.326 0.728-0.728s-0.326-0.728-0.728-0.728-0.728 0.326-0.728 0.728c0 0.402 0.326 0.728 0.728 0.728zM24.148 18.524c0.402 0 0.728-0.326 0.728-0.728s-0.326-0.728-0.728-0.728c-0.402 0-0.728 0.326-0.728 0.728s0.326 0.728 0.728 0.728zM24.148 15.026c0.402 0 0.728-0.326 0.728-0.728s-0.326-0.728-0.728-0.728c-0.402 0-0.728 0.326-0.728 0.728s0.326 0.728 0.728 0.728zM22.918 11.662c0.402 0 0.728-0.326 0.728-0.728s-0.326-0.728-0.728-0.728-0.728 0.326-0.728 0.728c0 0.402 0.326 0.728 0.728 0.728zM20.687 8.889c0.402 0 0.728-0.326 0.728-0.728s-0.326-0.728-0.728-0.728c-0.402 0-0.728 0.326-0.728 0.728s0.326 0.728 0.728 0.728z"></path>
|
||||
</svg>
|
After Width: | Height: | Size: 3.5 KiB |
@ -0,0 +1,5 @@
|
||||
<!-- Generated by IcoMoon.io -->
|
||||
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="27" height="32" viewBox="0 0 27 32">
|
||||
<title>counter-stun</title>
|
||||
<path fill="#444" d="M 11.926 2.547 c 2.862 -0.586 5.364 -0.251 7.836 0.718 c -0.078 0.014 -0.153 0.045 -0.232 0.046 c -2.177 0.036 -3.599 0.2 -5.358 0.638 c -4.357 0.901 -8.477 4.111 -9.432 8.617 c -0.395 2.569 -0.236 5.374 1.19 7.62 c 2.689 4.072 9.355 5.06 12.728 1.311 c 2.121 -2.169 2.251 -5.827 0.352 -8.174 c -1.966 -2.463 -7.217 -1.178 -6.878 2.426 c 0.146 1.555 1.76 2.404 2.911 1.66 c 1.274 -0.823 1.783 -1.629 2.627 -2.482 c 0.424 2.275 -0.503 4.81 -2.767 5.625 c -1.461 0.526 -3.249 0.023 -4.399 -0.666 c -2.495 -1.496 -3.166 -4.93 -2.352 -7.61 c 1.494 -4.299 6.448 -7.104 10.897 -6.015 c 3.991 0.79 7.026 4.344 7.832 8.222 c 0.532 2.559 0.335 4.149 -0.116 5.875 c -0.806 3.091 -3.031 5.73 -5.745 7.427 c -4.251 2.593 -9.894 2.588 -14.193 0.106 c -5.86 -3.152 -8.656 -11.09 -5.533 -17.066 c 1.778 -4.415 6.068 -7.346 10.632 -8.278"></path>
|
||||
</svg>
|
After Width: | Height: | Size: 1018 B |
@ -0,0 +1,5 @@
|
||||
<!-- Generated by IcoMoon.io -->
|
||||
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32">
|
||||
<title>counter-time</title>
|
||||
<path fill="#444" d="M 10.49 0.416 l 1.323 2.616 c 1.368 -0.353 2.778 -0.49 4.188 -0.506 v 0 c 8.837 0 16 6.505 16 14.529 s -7.163 14.529 -16 14.529 s -16 -6.505 -16 -14.529 c 0 -6.309 4.57 -11.672 10.419 -13.617 l 0.07 -3.022 M 10.379 5.19 c -1.124 0.398 -2.162 0.992 -3.159 1.638 l 1.371 3.363 l -3.687 -1.346 c -2.093 2.226 -3.246 5.166 -3.289 8.21 c -0.008 2.633 0.922 5.164 2.493 7.258 l 3.442 -1.425 l -1.31 3.648 c 2.726 2.29 6.23 3.393 9.76 3.434 c 3.203 -0.017 6.45 -0.947 9.038 -2.872 l -1.205 -3.593 l 3.477 1.527 c 1.975 -2.172 3.034 -5.06 3.075 -7.977 c 0.018 -2.685 -0.968 -5.225 -2.564 -7.353 l -3.533 1.232 l 1.439 -3.387 c -2.718 -2.274 -6.214 -3.367 -9.727 -3.407 v 0 c -0.975 -0.014 -1.945 0.097 -2.904 0.264 c -0.178 0.031 -0.353 0.08 -0.529 0.12 l 7.523 14.876 l -14.637 -3.444 l 4.778 -4.434 l 0.148 -6.332 M 11.607 4.772 l -0.251 0.077 l -0.145 6.216 l 6.005 4.799 l -5.609 -11.092"></path>
|
||||
</svg>
|
After Width: | Height: | Size: 1.1 KiB |
@ -0,0 +1,5 @@
|
||||
<!-- Generated by IcoMoon.io -->
|
||||
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="26" height="32" viewBox="0 0 26 32">
|
||||
<title>ability-trample</title>
|
||||
<path fill="#444" d="M12.987 0.543l0.238-0.412c0.377 0.963 0.655 1.961 1.058 2.92 0.576 1.306 1.892 2.264 1.991 3.769 0.417 1.857-0.228 3.699-0.432 5.536 0.854 1.028 2.279 0.973 3.486 1.142 0.551-1.296 0.919-2.661 1.49-3.947 0.536-0.69 1.455-1.023 1.902-1.773 0.437-1.857 0.313-3.769 0.407-5.655 1.514 2.845 3.307 5.874 3.108 9.216-0.070 1.708-1.45 2.86-2.537 3.997-0.149 1.321 0.442 3.034-0.77 3.992-1.678 1.599-4.002 2.13-5.953 3.287-0.045 1.887 0.809 4.305-0.909 5.695-1.241 0.983-2.145 2.264-3.019 3.56-0.74-1.366-1.634-2.637-2.885-3.585-1.604-1.281-0.874-3.535-0.953-5.288-1.827-1.425-4.131-2.1-5.859-3.664-1.236-0.938-0.65-2.661-0.78-3.982-1.132-1.127-2.483-2.329-2.557-4.047-0.184-3.337 1.604-6.346 3.113-9.191 0.094 1.991-0.045 4.027 0.497 5.968 0.566 0.477 1.217 0.839 1.842 1.246 0.402 1.425 0.874 2.825 1.47 4.181 1.256-0.124 2.488-0.422 3.625-0.993-0.655-2.607-1.41-5.79 0.511-8.049 0.948-1.147 1.271-2.617 1.917-3.923z"></path>
|
||||
</svg>
|
After Width: | Height: | Size: 1.1 KiB |
@ -0,0 +1,5 @@
|
||||
<!-- Generated by IcoMoon.io -->
|
||||
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="28" height="32" viewBox="0 0 28 32">
|
||||
<title>ability-vigilance</title>
|
||||
<path fill="#444" d="M24.819 1.054c0.393 0 1.711-0.010 2.105-0.016 0.367 0.492 0.756 0.983 1.076 1.522-0.285 0.569-0.668 1.076-1.025 1.594-0.404 0.005-1.748 0.010-2.151 0.016-0.010-1.040-0.010-2.075-0.005-3.115zM3.716 16.223c2.308-3.638 6.277-6.717 10.785-6.391 4.104 0.166 7.442 3.074 9.662 6.309-1.858 3.193-4.958 5.651-8.627 6.345-0.005 1.139-0.021 2.282-0.052 3.426-0.999-0.021-1.998-0.047-2.986-0.083-0.036-1.118-0.047-2.236-0.062-3.348-3.711-0.605-6.759-3.146-8.72-6.257zM1.527 5.215c0.569 5.584 1.242 11.199 0.668 16.814 0.621 0.274 1.258 0.549 1.889 0.828-0.662 0.228-1.314 0.461-1.967 0.693 0.756 0.88 1.563 1.744 2.613 2.272 3.235 1.729 6.459 3.478 9.678 5.242 3.276-1.951 6.707-3.648 9.921-5.708 1.713-0.994 1.408-3.146 1.366-4.818-0.88-0.057-1.749-0.109-2.619-0.166 0.844-0.181 1.682-0.347 2.536-0.507-0.217-2.51-0.031-5.025 0.047-7.54-0.538-0.305-1.082-0.595-1.625-0.869 0.574-0.145 1.159-0.29 1.744-0.43 0.254-1.91 0.587-3.9 0.696-5.82-1.19 0.16-2.167 0.348-3.666 0.396-6.542 0.209-11.8 0.317-17.834 0.043-0.917-0.042-2.406-0.25-3.447-0.431zM5.693 1.041v3.126h16.545v-3.126h-16.545zM3.181 1.054c0.005 1.040 0.005 2.075-0.005 3.115-0.404-0.005-1.748-0.010-2.151-0.016-0.357-0.518-0.74-1.025-1.025-1.594 0.321-0.538 0.709-1.030 1.076-1.522 0.393 0.005 1.711 0.016 2.105 0.016zM13.834 11.475c-0.295 1.424-0.661 2.967 0.284 4.223 1.035 1.062 2.31-0.080 2.989-0.935 0.605 1.604 0.887 3.6-0.542 4.874-1.869 1.981-5.559 0.988-6.186-1.662-0.519-2.679 1.315-5.106 3.454-6.501zM14 11.219c-2.92 0-5.286 2.367-5.286 5.286s2.367 5.287 5.286 5.287c2.92 0 5.286-2.367 5.286-5.287s-2.367-5.286-5.286-5.286z"></path>
|
||||
</svg>
|
After Width: | Height: | Size: 1.7 KiB |