index : btroops | |
Virtual board game-aid for BattleTroops, an infantry combat simulator wargame published by FASA in 1989. |
aboutsummaryrefslogtreecommitdiff |
diff options
author | Catalin Mititiuc <webdevcat@proton.me> | 2024-07-02 15:19:17 -0700 |
---|---|---|
committer | Catalin Mititiuc <webdevcat@proton.me> | 2024-07-02 15:27:27 -0700 |
commit | 71724cc97967a876224d1a4b711843b17256cb0d (patch) | |
tree | bf39584668aa2cd8077a01719715663a8b0e3849 /public/assets/images | |
parent | 624991870df0e804d64cf4d9359c63435513d61b (diff) |
WIP: counters
Diffstat (limited to 'public/assets/images')
-rw-r--r-- | public/assets/images/counters.svg | 27 |
1 files changed, 17 insertions, 10 deletions
diff --git a/public/assets/images/counters.svg b/public/assets/images/counters.svg index da1a6d8..e9b41a7 100644 --- a/public/assets/images/counters.svg +++ b/public/assets/images/counters.svg @@ -1,5 +1,6 @@ <?xml version="1.0" standalone="no"?> -<svg viewBox="-6 -6 12 24" xmlns="http://www.w3.org/2000/svg"> +<svg viewBox="-6 -6 12 24" + xmlns="http://www.w3.org/2000/svg"> <defs> <circle id="counter-base" style="r: inherit;" cx="0" cy="0" /> @@ -46,22 +47,28 @@ <g id="rifle" style="r: inherit;" class="weapon-symbol"> <use style="r: inherit;" href="#counter-base"/> - <use href="#semi-auto"/> - <line x1="0" y1="-5" x2="0" y2="5"/> - <polyline style="fill: none;" points="-2,-3.5 0,-5 2,-3.5"/> + <g style="stroke: white; stroke-width: 0.5px; fill: none;"> + <use href="#semi-auto" /> + <line x1="0" y1="-5" x2="0" y2="5"/> + <polyline points="-2,-3.5 0,-5 2,-3.5"/> + </g> </g> <g id="smg" style="r: inherit;" class="weapon-symbol"> <use style="r: inherit;" href="#counter-base"/> - <use href="#auto"/> - <line x1="0" y1="-5" x2="0" y2="4.5"/> - <line x1="-2" y1="4.5" x2="2" y2="4.5"/> + <g style="stroke: white; stroke-width: 0.5px; fill: none;"> + <use href="#auto"/> + <line x1="0" y1="-5" x2="0" y2="4.5"/> + <line x1="-2" y1="4.5" x2="2" y2="4.5"/> + </g> </g> <g id="blazer" style="r: inherit;" class="weapon-symbol"> <use style="r: inherit;" href="#counter-base"/> - <use href="#auto"/> - <polyline points="0,-5 0,-3 -3,-2.5 3,-1.5 0,-1 0,2.5 -3,3, 3,4 0,4.5 0,5"/> - <polyline points="-2,-3.5 0,-5 2,-3.5"/> + <g style="stroke: white; stroke-width: 0.5px; fill: none;"> + <use href="#auto"/> + <polyline points="0,-5 0,-3 -3,-2.5 3,-1.5 0,-1 0,2.5 -3,3, 3,4 0,4.5 0,5"/> + <polyline points="-2,-3.5 0,-5 2,-3.5"/> + </g> </g> </svg> |