Added to show the team logo when choosing team.
This commit is contained in:
parent
a8787c38f0
commit
432b01539d
@ -93,9 +93,6 @@ Function fnAskParam As aFindIVParam
|
|||||||
oDialog.getControl ("cbxBest3").setVisible (False)
|
oDialog.getControl ("cbxBest3").setVisible (False)
|
||||||
oDialog.getControl ("lstApprasal2").setVisible (False)
|
oDialog.getControl ("lstApprasal2").setVisible (False)
|
||||||
|
|
||||||
' TODO: To be removed.
|
|
||||||
oDialog.getControl ("imgTeam").getModel.setPropertyValue ("ImageURL", fnGetImageUrl ("TeamValor"))
|
|
||||||
|
|
||||||
If oDialog.execute = 0 Then
|
If oDialog.execute = 0 Then
|
||||||
aQuery.bIsCancelled = True
|
aQuery.bIsCancelled = True
|
||||||
fnAskParam = aQuery
|
fnAskParam = aQuery
|
||||||
@ -609,10 +606,15 @@ End Sub
|
|||||||
' subRdoTeamRedItemChanged_itemStateChanged: When the team is selected.
|
' subRdoTeamRedItemChanged_itemStateChanged: When the team is selected.
|
||||||
Sub subRdoTeamRedItemChanged_itemStateChanged (oEvent As object)
|
Sub subRdoTeamRedItemChanged_itemStateChanged (oEvent As object)
|
||||||
Dim oDialog As Object, oList As Object, oText As Object
|
Dim oDialog As Object, oList As Object, oText As Object
|
||||||
|
Dim oImageModel As Object
|
||||||
Dim mItems () As String
|
Dim mItems () As String
|
||||||
|
|
||||||
oDialog = oEvent.Source.getContext
|
oDialog = oEvent.Source.getContext
|
||||||
|
|
||||||
|
oImageModel = oDialog.getControl ("imgTeam").getModel
|
||||||
|
oImageModel.setPropertyValue ("ImageURL", _
|
||||||
|
fnGetImageUrl ("TeamValor"))
|
||||||
|
|
||||||
mItems = Array ( _
|
mItems = Array ( _
|
||||||
"Overall, your [Pokémon] simply amazes me. It can accomplish anything!", _
|
"Overall, your [Pokémon] simply amazes me. It can accomplish anything!", _
|
||||||
"Overall, your [Pokémon] is a strong Pokémon. You should be proud!", _
|
"Overall, your [Pokémon] is a strong Pokémon. You should be proud!", _
|
||||||
@ -667,10 +669,15 @@ End Sub
|
|||||||
' subRdoTeamBlueItemChanged_itemStateChanged: When the blue team is selected.
|
' subRdoTeamBlueItemChanged_itemStateChanged: When the blue team is selected.
|
||||||
Sub subRdoTeamBlueItemChanged_itemStateChanged (oEvent As object)
|
Sub subRdoTeamBlueItemChanged_itemStateChanged (oEvent As object)
|
||||||
Dim oDialog As Object, oList As Object, oText As Object
|
Dim oDialog As Object, oList As Object, oText As Object
|
||||||
|
Dim oImageModel As Object
|
||||||
Dim mItems () As String
|
Dim mItems () As String
|
||||||
|
|
||||||
oDialog = oEvent.Source.getContext
|
oDialog = oEvent.Source.getContext
|
||||||
|
|
||||||
|
oImageModel = oDialog.getControl ("imgTeam").getModel
|
||||||
|
oImageModel.setPropertyValue ("ImageURL", _
|
||||||
|
fnGetImageUrl ("TeamMystic"))
|
||||||
|
|
||||||
mItems = Array ( _
|
mItems = Array ( _
|
||||||
"Overall, your [Pokémon] is a wonder! What a breathtaking Pokémon!", _
|
"Overall, your [Pokémon] is a wonder! What a breathtaking Pokémon!", _
|
||||||
"Overall, your [Pokémon] has certainly caught my attention.", _
|
"Overall, your [Pokémon] has certainly caught my attention.", _
|
||||||
@ -725,10 +732,15 @@ End Sub
|
|||||||
' subRdoTeamYellowItemChanged_itemStateChanged: When the yellow team is selected.
|
' subRdoTeamYellowItemChanged_itemStateChanged: When the yellow team is selected.
|
||||||
Sub subRdoTeamYellowItemChanged_itemStateChanged (oEvent As object)
|
Sub subRdoTeamYellowItemChanged_itemStateChanged (oEvent As object)
|
||||||
Dim oDialog As Object, oList As Object, oText As Object
|
Dim oDialog As Object, oList As Object, oText As Object
|
||||||
|
Dim oImageModel As Object
|
||||||
Dim mItems () As String
|
Dim mItems () As String
|
||||||
|
|
||||||
oDialog = oEvent.Source.getContext
|
oDialog = oEvent.Source.getContext
|
||||||
|
|
||||||
|
oImageModel = oDialog.getControl ("imgTeam").getModel
|
||||||
|
oImageModel.setPropertyValue ("ImageURL", _
|
||||||
|
fnGetImageUrl ("TeamInstinct"))
|
||||||
|
|
||||||
mItems = Array ( _
|
mItems = Array ( _
|
||||||
"Overall, your [Pokémon] looks like it can really battle with the best of them!", _
|
"Overall, your [Pokémon] looks like it can really battle with the best of them!", _
|
||||||
"Overall, your [Pokémon] is really strong!", _
|
"Overall, your [Pokémon] is really strong!", _
|
||||||
|
@ -36,17 +36,17 @@
|
|||||||
<node oor:name="FileResources">
|
<node oor:name="FileResources">
|
||||||
<node oor:name="TeamValor" oor:op="replace">
|
<node oor:name="TeamValor" oor:op="replace">
|
||||||
<prop oor:name="Url" oor:type="xs:string" oor:localized="true">
|
<prop oor:name="Url" oor:type="xs:string" oor:localized="true">
|
||||||
<value>%origin%/icons/team-valor.png</value>
|
<value>%origin%/icons/team-valor.svg</value>
|
||||||
</prop>
|
</prop>
|
||||||
</node>
|
</node>
|
||||||
<node oor:name="TeamMystic" oor:op="replace">
|
<node oor:name="TeamMystic" oor:op="replace">
|
||||||
<prop oor:name="Url" oor:type="xs:string" oor:localized="true">
|
<prop oor:name="Url" oor:type="xs:string" oor:localized="true">
|
||||||
<value>%origin%/icons/team-mystic.png</value>
|
<value>%origin%/icons/team-mystic.svg</value>
|
||||||
</prop>
|
</prop>
|
||||||
</node>
|
</node>
|
||||||
<node oor:name="TeamInstinct" oor:op="replace">
|
<node oor:name="TeamInstinct" oor:op="replace">
|
||||||
<prop oor:name="Url" oor:type="xs:string" oor:localized="true">
|
<prop oor:name="Url" oor:type="xs:string" oor:localized="true">
|
||||||
<value>%origin%/icons/team-instinct.png</value>
|
<value>%origin%/icons/team-instinct.svg</value>
|
||||||
</prop>
|
</prop>
|
||||||
</node>
|
</node>
|
||||||
</node>
|
</node>
|
||||||
|
@ -95,9 +95,6 @@ Function fnAskParam As aFindIVParam
|
|||||||
oDialog.getControl ("cbxBest3").setVisible (False)
|
oDialog.getControl ("cbxBest3").setVisible (False)
|
||||||
oDialog.getControl ("lstApprasal2").setVisible (False)
|
oDialog.getControl ("lstApprasal2").setVisible (False)
|
||||||
|
|
||||||
' TODO: To be removed.
|
|
||||||
oDialog.getControl ("imgTeam").getModel.setPropertyValue ("ImageURL", fnGetImageUrl ("TeamValor"))
|
|
||||||
|
|
||||||
If oDialog.execute = 0 Then
|
If oDialog.execute = 0 Then
|
||||||
aQuery.bIsCancelled = True
|
aQuery.bIsCancelled = True
|
||||||
fnAskParam = aQuery
|
fnAskParam = aQuery
|
||||||
@ -611,10 +608,15 @@ End Sub
|
|||||||
' subRdoTeamRedItemChanged_itemStateChanged: When the team is selected.
|
' subRdoTeamRedItemChanged_itemStateChanged: When the team is selected.
|
||||||
Sub subRdoTeamRedItemChanged_itemStateChanged (oEvent As object)
|
Sub subRdoTeamRedItemChanged_itemStateChanged (oEvent As object)
|
||||||
Dim oDialog As Object, oList As Object, oText As Object
|
Dim oDialog As Object, oList As Object, oText As Object
|
||||||
|
Dim oImageModel As Object
|
||||||
Dim mItems () As String
|
Dim mItems () As String
|
||||||
|
|
||||||
oDialog = oEvent.Source.getContext
|
oDialog = oEvent.Source.getContext
|
||||||
|
|
||||||
|
oImageModel = oDialog.getControl ("imgTeam").getModel
|
||||||
|
oImageModel.setPropertyValue ("ImageURL", _
|
||||||
|
fnGetImageUrl ("TeamValor"))
|
||||||
|
|
||||||
mItems = Array ( _
|
mItems = Array ( _
|
||||||
"Overall, your [Pokémon] simply amazes me. It can accomplish anything!", _
|
"Overall, your [Pokémon] simply amazes me. It can accomplish anything!", _
|
||||||
"Overall, your [Pokémon] is a strong Pokémon. You should be proud!", _
|
"Overall, your [Pokémon] is a strong Pokémon. You should be proud!", _
|
||||||
@ -669,10 +671,15 @@ End Sub
|
|||||||
' subRdoTeamBlueItemChanged_itemStateChanged: When the blue team is selected.
|
' subRdoTeamBlueItemChanged_itemStateChanged: When the blue team is selected.
|
||||||
Sub subRdoTeamBlueItemChanged_itemStateChanged (oEvent As object)
|
Sub subRdoTeamBlueItemChanged_itemStateChanged (oEvent As object)
|
||||||
Dim oDialog As Object, oList As Object, oText As Object
|
Dim oDialog As Object, oList As Object, oText As Object
|
||||||
|
Dim oImageModel As Object
|
||||||
Dim mItems () As String
|
Dim mItems () As String
|
||||||
|
|
||||||
oDialog = oEvent.Source.getContext
|
oDialog = oEvent.Source.getContext
|
||||||
|
|
||||||
|
oImageModel = oDialog.getControl ("imgTeam").getModel
|
||||||
|
oImageModel.setPropertyValue ("ImageURL", _
|
||||||
|
fnGetImageUrl ("TeamMystic"))
|
||||||
|
|
||||||
mItems = Array ( _
|
mItems = Array ( _
|
||||||
"Overall, your [Pokémon] is a wonder! What a breathtaking Pokémon!", _
|
"Overall, your [Pokémon] is a wonder! What a breathtaking Pokémon!", _
|
||||||
"Overall, your [Pokémon] has certainly caught my attention.", _
|
"Overall, your [Pokémon] has certainly caught my attention.", _
|
||||||
@ -727,10 +734,15 @@ End Sub
|
|||||||
' subRdoTeamYellowItemChanged_itemStateChanged: When the yellow team is selected.
|
' subRdoTeamYellowItemChanged_itemStateChanged: When the yellow team is selected.
|
||||||
Sub subRdoTeamYellowItemChanged_itemStateChanged (oEvent As object)
|
Sub subRdoTeamYellowItemChanged_itemStateChanged (oEvent As object)
|
||||||
Dim oDialog As Object, oList As Object, oText As Object
|
Dim oDialog As Object, oList As Object, oText As Object
|
||||||
|
Dim oImageModel As Object
|
||||||
Dim mItems () As String
|
Dim mItems () As String
|
||||||
|
|
||||||
oDialog = oEvent.Source.getContext
|
oDialog = oEvent.Source.getContext
|
||||||
|
|
||||||
|
oImageModel = oDialog.getControl ("imgTeam").getModel
|
||||||
|
oImageModel.setPropertyValue ("ImageURL", _
|
||||||
|
fnGetImageUrl ("TeamInstinct"))
|
||||||
|
|
||||||
mItems = Array ( _
|
mItems = Array ( _
|
||||||
"Overall, your [Pokémon] looks like it can really battle with the best of them!", _
|
"Overall, your [Pokémon] looks like it can really battle with the best of them!", _
|
||||||
"Overall, your [Pokémon] is really strong!", _
|
"Overall, your [Pokémon] is really strong!", _
|
||||||
|
Binary file not shown.
Before Width: | Height: | Size: 2.0 KiB |
82
oxt/icons/team-instinct.svg
Normal file
82
oxt/icons/team-instinct.svg
Normal file
@ -0,0 +1,82 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<!-- Generator: Adobe Illustrator 19.2.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||||
|
|
||||||
|
<svg
|
||||||
|
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||||
|
xmlns:cc="http://creativecommons.org/ns#"
|
||||||
|
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||||
|
xmlns:svg="http://www.w3.org/2000/svg"
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||||
|
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||||
|
version="1.1"
|
||||||
|
id="Layer_1"
|
||||||
|
x="0px"
|
||||||
|
y="0px"
|
||||||
|
viewBox="0 0 2070.7143 2070.835"
|
||||||
|
xml:space="preserve"
|
||||||
|
inkscape:version="0.48.5 r10040"
|
||||||
|
width="100%"
|
||||||
|
height="100%"
|
||||||
|
sodipodi:docname="team-instinct-vector.svg"><metadata
|
||||||
|
id="metadata23"><rdf:RDF><cc:Work
|
||||||
|
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
|
||||||
|
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /></cc:Work></rdf:RDF></metadata><defs
|
||||||
|
id="defs21" /><sodipodi:namedview
|
||||||
|
pagecolor="#ffffff"
|
||||||
|
bordercolor="#666666"
|
||||||
|
borderopacity="1"
|
||||||
|
objecttolerance="10"
|
||||||
|
gridtolerance="10"
|
||||||
|
guidetolerance="10"
|
||||||
|
inkscape:pageopacity="0"
|
||||||
|
inkscape:pageshadow="2"
|
||||||
|
inkscape:window-width="706"
|
||||||
|
inkscape:window-height="480"
|
||||||
|
id="namedview19"
|
||||||
|
showgrid="false"
|
||||||
|
fit-margin-top="78"
|
||||||
|
fit-margin-bottom="78"
|
||||||
|
fit-margin-left="0"
|
||||||
|
fit-margin-right="0"
|
||||||
|
inkscape:zoom="0.1232376"
|
||||||
|
inkscape:cx="1035.4379"
|
||||||
|
inkscape:cy="1035.5"
|
||||||
|
inkscape:window-x="0"
|
||||||
|
inkscape:window-y="27"
|
||||||
|
inkscape:window-maximized="0"
|
||||||
|
inkscape:current-layer="Layer_1" /><style
|
||||||
|
type="text/css"
|
||||||
|
id="style3">
|
||||||
|
.st0{fill:#F4E8A1;}
|
||||||
|
.st1{fill:#FBD208;}
|
||||||
|
</style><g
|
||||||
|
id="g5"
|
||||||
|
transform="translate(-0.06210983,77.835)"><path
|
||||||
|
class="st0"
|
||||||
|
d="M 999,1878.2 C 977.9,1842 947.3,1789.6 878,1671 c -44.6,-76.4 -80.1,-137.2 -125,-214 -19.4,-33.3 -47.6,-81.4 -62.5,-107 -14.9,-25.6 -43.1,-73.7 -62.5,-107 -19.4,-33.3 -49.1,-84.1 -66,-113 -16.9,-28.9 -45,-77 -62.5,-107 -17.5,-30 -46.4,-79.4 -64.2,-109.9 -17.8,-30.5 -32.2,-56 -31.9,-56.8 0.4,-0.8 1.4,-1.1 2.8,-0.8 8.3,2 62.2,12.4 62.5,12.1 0.2,-0.2 -27.3,-55.8 -61.1,-123.5 C 346.3,621.7 346,621 348.3,619.6 c 1.2,-0.7 4.4,-2.2 7,-3.1 4.1,-1.6 5,-1.6 6.1,-0.4 0.7,0.8 26.3,44.8 56.9,97.9 30.5,53.1 71.4,124 90.7,157.5 34.3,59.4 73.4,127.2 145.5,252 19.4,33.6 44.5,77.1 55.9,96.7 11.3,19.7 29.9,51.9 41.2,71.5 11.4,19.7 29.8,51.6 40.9,70.8 11.1,19.3 32.8,56.8 48.2,83.5 15.4,26.7 37.2,64.5 48.5,84 11.3,19.5 30.8,53.3 43.3,75 54.3,94 63.3,109.6 74.8,129.7 6.7,11.7 12.4,21.2 12.7,21.2 0.3,0 37.7,-63.7 83.1,-141.7 329.7,-565.8 577.5,-990 579.1,-991.4 1.6,-1.4 3.8,-1.8 9.9,-1.8 4.3,0 8.1,0.5 8.4,1 0.4,0.6 -7.3,16.2 -17.1,34.8 -9.7,18.5 -29.4,56 -43.7,83.2 -54.3,103.3 -67,127.5 -67.8,129.1 -0.6,1.2 6.4,-0.7 24.9,-6.8 40,-13 41.2,-13.4 41.8,-11.9 0.3,0.7 -17.5,32.3 -39.4,70.2 -21.9,37.9 -66.6,115 -99.2,171.4 -32.6,56.4 -74,127.9 -92,159 -18,31.1 -56.9,98.4 -86.5,149.5 -29.6,51.2 -74.5,128.8 -99.8,172.5 -25.3,43.7 -63.3,109.4 -84.5,146 -108,186.6 -113.5,196 -115.1,196 -1.1,0 -8.7,-12.2 -23.1,-36.8 z"
|
||||||
|
id="path7"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
style="fill:#f4e8a1" /><path
|
||||||
|
class="st0"
|
||||||
|
d="m 1323.2,251.9 c -2.1,-5.6 -8.5,-42 -7.6,-42.9 1,-1 737.2,-205.6 748.7,-208.1 3.1,-0.7 6,-0.9 6.3,-0.6 0.4,0.4 0.1,2.1 -0.7,3.9 -2,5 -58,112.1 -59.3,113.5 -1.2,1.3 -38.6,4.9 -41.1,3.9 -1.2,-0.4 1.3,-6.2 12.5,-28.6 7.7,-15.4 14,-28.1 14,-28.3 0,-0.2 -19.7,5.2 -43.7,12 -24.1,6.8 -66.7,18.9 -94.8,26.8 -28,7.9 -93.3,26.4 -145,41 -51.7,14.6 -108.2,30.6 -125.5,35.5 -38.6,10.9 -105.3,29.8 -192,54.3 -36,10.2 -66.7,18.9 -68.2,19.2 -2.3,0.6 -2.9,0.3 -3.6,-1.6 z"
|
||||||
|
id="path9"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
style="fill:#f4e8a1" /><path
|
||||||
|
class="st0"
|
||||||
|
d="M 667.5,229.5 C 659.4,227.2 415.2,161.2 179.5,97.5 109.7,78.6 52.3,63.3 52.1,63.5 c -0.2,0.3 6,17.4 13.9,38.1 8.7,23 13.8,38 13.2,38.6 -1.2,1.2 -35,-4.5 -36.6,-6.3 C 41.9,133.1 37.4,120.8 32.5,106.5 27.7,92.2 18.9,66.3 13.1,49 2.3,17.2 -0.9,6.5 0.3,5.4 0.7,5 15.2,8.9 32.7,14 84.2,29 118.6,39 168,53.4 c 93.2,27.1 199.1,57.9 225.5,65.6 28,8.2 160.3,46.7 220.5,64.2 62,18 74.3,21.7 75.1,22.5 0.7,0.7 -5.9,18.3 -9,24.1 -1.4,2.6 -2.2,2.6 -12.6,-0.3 z"
|
||||||
|
id="path11"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
style="fill:#f4e8a1" /></g><g
|
||||||
|
id="g13"
|
||||||
|
transform="translate(-0.06210983,77.835)"><path
|
||||||
|
class="st1"
|
||||||
|
d="m 1028,1370.4 c -0.6,-1.5 -7.1,-23.2 -14.6,-48.3 -22.4,-75.7 -24.4,-82.3 -26.9,-90.6 -1.3,-4.4 -6.2,-20.8 -10.8,-36.5 -4.7,-15.7 -13.2,-44.5 -19,-64 -5.8,-19.5 -10.9,-36.7 -11.3,-38.2 -0.3,-1.6 -0.9,-2.8 -1.3,-2.8 -0.3,0 -2.6,1.2 -5.1,2.6 -3.8,2.2 -60,33.8 -133.5,75.2 -9.3,5.2 -17.6,9.9 -18.2,10.5 -4.8,3.6 1.3,-10.9 28.5,-68.3 1.7,-3.6 10.7,-22.7 20,-42.6 l 16.8,-36 -7.6,1.2 c -54.9,9.2 -143.4,22.4 -144.2,21.6 -1.1,-1.1 0.8,-2.5 56.7,-38.5 17.1,-11 41.6,-26.8 54.5,-35.2 12.9,-8.3 41.5,-26.8 63.5,-41 22,-14.2 47,-30.3 55.5,-35.8 8.5,-5.6 16.2,-10.1 17,-10.1 0.8,0 19,10 40.4,22.2 l 38.8,22.2 41.4,-22.6 41.3,-22.5 11.8,7.1 c 6.5,3.9 18.8,11.4 27.3,16.6 8.5,5.2 17.8,10.9 20.5,12.5 2.8,1.6 12,7.3 20.5,12.5 8.5,5.2 17.8,10.9 20.5,12.5 6.2,3.7 17.8,10.8 44.7,27.2 11.5,7 30.1,18.4 41.5,25.4 11.5,7 30,18.3 41.3,25.1 11.3,6.8 21.8,13.3 23.3,14.4 5.9,4.2 5.6,4.2 -55.3,-1.7 -8.5,-0.8 -32.8,-3 -54,-5 -21.2,-1.9 -40.2,-3.7 -42.2,-4 l -3.7,-0.5 2.4,5.8 c 6.9,17.2 23.9,58.5 26,63.2 1.3,3 5.7,13.8 9.9,24 4.1,10.2 10.4,25.7 14,34.4 4.1,9.9 6.3,16.3 5.7,16.9 -0.6,0.6 -4.3,-1.1 -9.8,-4.6 -4.8,-3 -17.3,-10.7 -27.8,-17.2 -10.4,-6.4 -22.8,-14.1 -27.5,-17 -4.7,-2.9 -16.1,-10 -25.5,-15.7 -9.3,-5.8 -27.3,-16.9 -39.9,-24.7 -12.6,-7.8 -23.1,-13.9 -23.4,-13.7 -0.2,0.3 -1.5,4.4 -2.8,9.3 -6.4,22.8 -10.5,37.9 -13.8,49.8 -3.6,13.2 -22.3,81.2 -27.6,100.5 -4,14.5 -24.3,88.4 -29.2,106 -2.2,8 -4.3,15.8 -4.7,17.4 -0.9,3.9 -2.8,4.4 -4.1,1 z"
|
||||||
|
id="path15"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
style="fill:#fbd208" /><path
|
||||||
|
class="st1"
|
||||||
|
d="m 1017.5,898.9 c -4.9,-2.8 -11,-6.2 -13.5,-7.6 C 843.8,801.9 670,704.3 668.7,703 c -2,-1.9 -4.7,-0.2 59,-38.4 8.9,-5.4 9.9,-6.2 8,-6.9 -4.9,-1.9 -136.9,-50.6 -148.2,-54.7 -2.7,-1 -39.9,-14.7 -82.5,-30.5 -42.6,-15.7 -88.7,-32.7 -102.5,-37.7 -25.4,-9.2 -28.2,-10.5 -26.8,-11.9 0.7,-0.7 124.4,-5.6 188.3,-7.5 11.3,-0.3 21.1,-0.8 21.8,-1 1.4,-0.4 -2.9,-4.1 -14.8,-12.6 -3.6,-2.6 -16.2,-11.7 -28,-20.2 -11.8,-8.6 -31.8,-22.9 -44.3,-31.8 -12.5,-9 -26.7,-19.1 -31.5,-22.5 -4.8,-3.5 -15.9,-11.4 -24.7,-17.6 -8.8,-6.2 -28.6,-20.2 -44,-31.2 -31.6,-22.4 -32.9,-23.3 -44.2,-31.2 -14.6,-10.2 -54.7,-38.5 -58.8,-41.5 -2.2,-1.6 -16.1,-11.5 -31,-21.9 -14.8,-10.5 -33.1,-23.3 -40.5,-28.5 -26.2,-18.5 -56.8,-39.9 -81.5,-57.2 -33.9,-23.8 -35.8,-25.3 -34.8,-26.3 0.5,-0.5 3.3,-0.1 6.9,1 3.2,1.1 21.4,7 40.4,13.1 37.4,12.1 53.6,17.3 84.5,27.3 24.6,8 62.3,20.2 147.5,47.7 36,11.6 80.6,26 99,32 52.3,16.9 97.9,31.7 142.5,46.1 22.6,7.2 41.5,13.4 42.2,13.6 0.7,0.3 -0.2,-4.6 -2.4,-13.2 -2.2,-8.3 -3.2,-14 -2.7,-14.5 0.8,-0.8 28.1,16 63.9,39.4 4.4,2.9 28.2,18.3 53,34.2 24.7,15.9 49.9,32.1 56,36.1 6,3.9 14.7,9.5 19.3,12.3 4.5,2.8 8.2,5.3 8.2,5.5 0,0.4 -8.5,9.8 -44.4,49.4 -7.2,8 -15.6,17.2 -18.6,20.6 -3,3.4 -11.6,12.8 -19,21 -27.4,30.2 -45.9,50.9 -45.7,51.1 0.1,0.1 39.6,-7.7 87.6,-17.3 76.7,-15.3 87.6,-17.3 88.6,-16 0.6,0.9 5.3,16.8 10.5,35.4 5.1,18.6 9.5,34.2 9.7,34.6 0.3,0.4 2.9,-3.2 5.8,-8 2.9,-4.8 9.8,-16.2 15.3,-25.3 5.5,-9.1 12.9,-21.2 16.4,-27 3.5,-5.8 6.6,-11 7,-11.6 0.4,-0.6 -8.3,2.5 -19.3,6.9 -17,6.8 -20.2,7.8 -21.3,6.6 -0.7,-0.8 -4,-9.2 -7.2,-18.6 -3.2,-9.5 -6.4,-17.3 -6.9,-17.3 -1.2,0 -70.4,10.5 -96.8,14.6 -9.9,1.6 -17.2,2.3 -17.7,1.8 -0.5,-0.5 19.6,-22.4 47.6,-51.8 l 48.3,-50.9 -5.3,-4.1 c -2.9,-2.3 -15.1,-11.6 -27.2,-20.8 -12,-9.3 -41.8,-32 -66.1,-50.5 -24.2,-18.6 -50,-38.3 -57.2,-43.7 -9,-6.9 -12.8,-10.3 -12.1,-11 0.7,-0.7 22.9,4.4 70.3,16.4 38,9.5 69.7,17.5 70.4,17.7 1.1,0.4 -0.5,-6.1 -8.7,-36.2 -2.3,-8.3 -3.5,-14.4 -3,-14.9 0.8,-0.8 3.2,0 17.5,6.5 19.9,8.9 47.9,20.8 48.3,20.4 0.3,-0.3 -3,-12.1 -7.3,-26.2 -4.3,-14.2 -8.6,-28.5 -9.6,-31.8 -0.9,-3.3 -3.3,-11.4 -5.4,-18 -2,-6.6 -5.8,-19.2 -8.5,-28 -2.7,-8.8 -14.6,-48.2 -26.5,-87.5 -12,-39.3 -21.8,-71.9 -21.9,-72.4 0,-0.5 0.4,-1 1.1,-1.3 1.4,-0.5 0.5,-1.7 45.8,60.8 12.7,17.4 34.9,48 49.5,68 14.6,19.9 27.2,37.3 28,38.5 1.2,1.7 40.4,55.8 41.6,57.2 0.1,0.2 3.3,-4.1 7.2,-9.5 29.3,-41.5 52.6,-74.4 58.9,-83.3 41.3,-58.3 79.5,-113 98.1,-140.5 10.7,-15.7 13.9,-19.4 13.6,-15.5 -0.1,0.8 -9.2,29.9 -20.3,64.5 -11.2,34.7 -22.5,70 -25.2,78.5 -2.8,8.5 -7.7,23.8 -10.9,34 -3.3,10.2 -12.4,38.8 -20.4,63.5 -7.9,24.8 -14.3,45.1 -14.2,45.3 0.2,0.1 14.2,-5.2 31.2,-11.8 17,-6.6 31.4,-11.8 32.1,-11.6 0.7,0.3 -0.9,8.4 -5.3,25.8 -3.5,13.9 -6.4,25.8 -6.4,26.4 0,1.2 6.6,-0.4 74.5,-17.1 64.6,-15.9 62.6,-15.5 63.2,-13.9 0.2,0.6 -36.1,28.5 -80.7,61.9 l -81.1,60.8 10.9,11.1 c 45,45.8 85,86.9 88.4,90.8 3.5,4.2 3.8,4.9 2.2,5.5 -2.7,1 -38.7,-5.3 -107.7,-19 -16.7,-3.4 -16.7,-3.4 -17.2,-1.3 -0.3,1.2 -2.3,13.1 -4.5,26.5 -2.2,13.5 -4.3,24.8 -4.8,25.3 -0.5,0.5 -9,-5.2 -19,-12.7 -10,-7.4 -18.2,-13.2 -18.2,-12.9 0,0.9 46.2,74.6 46.5,74.2 0.1,-0.2 4.6,-16.7 10,-36.8 5.4,-20.1 10.1,-36.9 10.5,-37.3 0.4,-0.5 41.8,8.4 92,19.8 50.2,11.3 91.4,20.4 91.6,20.2 0.3,-0.2 -113.1,-118.1 -139.9,-145.4 -5.7,-5.8 -6,-6.4 -4.5,-7.9 0.9,-0.9 10.2,-7.1 20.7,-13.8 10.4,-6.6 27,-17.3 36.8,-23.6 23.2,-14.9 64.3,-41.2 106.8,-68.4 18.7,-12 35.1,-22.6 36.5,-23.5 4.1,-2.9 7,-4.2 7.9,-3.7 0.4,0.3 -0.7,7.6 -2.5,16.3 -1.8,8.7 -3.3,16.4 -3.4,17.2 0,1.7 -4,2.8 42.5,-12.4 21.5,-6.9 58.4,-19 82,-26.7 23.7,-7.6 61.7,-20 84.5,-27.4 62,-20.2 73.5,-24 121,-39.4 56.4,-18.3 116.1,-37.8 163,-53.1 20.6,-6.7 38.2,-12.2 39,-12.3 2.4,-0.2 1.7,2.3 -1.2,4.2 -1.5,0.9 -17.7,12.7 -35.9,26.2 -18.3,13.5 -34.3,25.2 -35.5,26 -2.1,1.3 -50.9,37.1 -79.9,58.5 -6,4.5 -16.2,11.9 -22.5,16.5 -6.3,4.6 -15.5,11.4 -20.5,15 -4.9,3.7 -20.9,15.4 -35.5,26 -14.6,10.7 -30.5,22.4 -35.5,26 -4.9,3.7 -20.9,15.4 -35.5,26 -14.6,10.7 -30.5,22.4 -35.5,26 -4.9,3.7 -28.6,21 -52.5,38.5 -23.9,17.5 -49.7,36.4 -57.3,41.9 l -13.7,10.1 35.2,0.6 c 160.5,2.9 175.7,3.4 176,5.4 0.1,0.6 -5,3.2 -11.3,5.8 -55.2,23.4 -99.8,42.3 -106.9,45.2 -3,1.3 -19,8 -35.5,15 -16.5,7 -40.1,17 -52.5,22.2 -12.4,5.2 -32.6,13.8 -45,19 -58,24.6 -67.8,28.7 -71.9,30.3 l -4.4,1.7 9.2,5.9 c 34.8,22.3 46.5,30 46.8,31 0.4,1.1 -354.3,204.4 -356.3,204.4 -0.5,0 -4.9,-2.3 -9.9,-5.1 z m 21.9,-254.4 13.2,-149 -12,-16.5 c -6.6,-9.1 -13,-18 -14.2,-19.8 l -2.3,-3.3 -2.5,3.3 c -14.1,17.9 -27.6,37.4 -27.6,39.7 0,1.4 1.1,13 2.5,25.6 1.3,12.7 3.1,29.8 4,38 3.2,30.7 6.6,62.5 8.5,80.5 1.1,10.2 3.1,29.5 4.5,43 1.5,13.5 3.9,36.7 5.5,51.5 1.6,14.9 3.7,34.9 4.7,44.5 1,9.6 1.9,16.2 2.1,14.5 0.2,-1.6 6.3,-70 13.6,-152 z"
|
||||||
|
id="path17"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
style="fill:#fbd208" /></g></svg>
|
After Width: | Height: | Size: 10 KiB |
Binary file not shown.
Before Width: | Height: | Size: 2.3 KiB |
121
oxt/icons/team-mystic.svg
Normal file
121
oxt/icons/team-mystic.svg
Normal file
@ -0,0 +1,121 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<!-- Generator: Adobe Illustrator 19.2.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||||
|
|
||||||
|
<svg
|
||||||
|
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||||
|
xmlns:cc="http://creativecommons.org/ns#"
|
||||||
|
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||||
|
xmlns:svg="http://www.w3.org/2000/svg"
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||||
|
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||||
|
version="1.1"
|
||||||
|
id="Layer_1"
|
||||||
|
x="0px"
|
||||||
|
y="0px"
|
||||||
|
viewBox="0 0 1717.3562 1717.6593"
|
||||||
|
xml:space="preserve"
|
||||||
|
inkscape:version="0.48.5 r10040"
|
||||||
|
width="100%"
|
||||||
|
height="100%"
|
||||||
|
sodipodi:docname="team-mystic-vector.svg"><metadata
|
||||||
|
id="metadata39"><rdf:RDF><cc:Work
|
||||||
|
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
|
||||||
|
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /></cc:Work></rdf:RDF></metadata><defs
|
||||||
|
id="defs37" /><sodipodi:namedview
|
||||||
|
pagecolor="#ffffff"
|
||||||
|
bordercolor="#666666"
|
||||||
|
borderopacity="1"
|
||||||
|
objecttolerance="10"
|
||||||
|
gridtolerance="10"
|
||||||
|
guidetolerance="10"
|
||||||
|
inkscape:pageopacity="0"
|
||||||
|
inkscape:pageshadow="2"
|
||||||
|
inkscape:window-width="706"
|
||||||
|
inkscape:window-height="480"
|
||||||
|
id="namedview35"
|
||||||
|
showgrid="false"
|
||||||
|
fit-margin-top="7.5"
|
||||||
|
fit-margin-bottom="7.5"
|
||||||
|
fit-margin-left="0"
|
||||||
|
fit-margin-right="0"
|
||||||
|
inkscape:zoom="0.1380117"
|
||||||
|
inkscape:cx="853"
|
||||||
|
inkscape:cy="861.17546"
|
||||||
|
inkscape:window-x="0"
|
||||||
|
inkscape:window-y="27"
|
||||||
|
inkscape:window-maximized="0"
|
||||||
|
inkscape:current-layer="Layer_1" /><style
|
||||||
|
type="text/css"
|
||||||
|
id="style3">
|
||||||
|
.st0{fill:#0677EE;}
|
||||||
|
</style><g
|
||||||
|
id="g5"
|
||||||
|
transform="translate(-5.5,5.3215017)"><path
|
||||||
|
class="st0"
|
||||||
|
d="m 361.3,1703.5 c -9.8,-2.7 -21.9,-10.3 -30.6,-19.3 -3,-3 -3.5,-4.1 -2.5,-4.9 0.7,-0.6 6.7,-2.4 13.3,-4 29.2,-7.3 46.8,-19 55.9,-37.2 7.1,-14 8.2,-21.2 10.1,-66.6 1.9,-44.8 4,-59.6 11.5,-82.7 19.4,-59.2 65.9,-98.6 133.5,-113.3 19.6,-4.2 35.4,-5.8 58,-5.8 23.1,-0.1 33.7,1 55.5,5.3 30.6,6.1 52.8,14.1 90.3,32.4 71.3,34.9 149.1,70.5 166.3,76.1 31.1,10.2 82.8,6 131.2,-10.6 24.2,-8.3 31.8,-12.9 77.6,-46.4 63.8,-46.7 79.6,-62.2 116.9,-114.5 15.2,-21.2 27.1,-40.1 29.7,-46.8 4.5,-12.1 13,-20 23.9,-22.3 11,-2.3 34.9,0.9 52.8,7.2 34.4,12 56.9,36.1 69.3,73.9 13,39.6 13.4,79.9 1.3,117.5 -5.8,17.9 -24.5,57.8 -35.9,76.6 -40,66.1 -95,116.4 -164.3,150.3 -21.6,10.6 -29,13 -55.3,18 -30.4,5.8 -41.2,7 -57.8,6.3 -12.5,-0.5 -29.8,-2.9 -32.3,-4.4 -0.6,-0.4 -2.3,-0.8 -3.7,-1 -5.7,-0.6 -28.1,-5.5 -36.5,-7.9 -11.1,-3.3 -32.9,-11.7 -45.5,-17.6 -7.7,-3.6 -207.8,-128.4 -239.8,-149.5 -10.8,-7.2 -47,-25.5 -61.5,-31.1 -32.8,-12.8 -63.3,-18.6 -98.2,-18.6 -20.9,0 -29.5,1 -45,5.6 -60,17.4 -85.6,77.1 -69.9,162.8 1.4,7.4 3.6,17.7 4.8,22.8 1.5,5.8 2,9.4 1.4,9.8 -1.5,1 -9.9,-7.8 -19.6,-20.3 -4.7,-6.2 -8.9,-11.3 -9.3,-11.3 -0.4,0 -1,1.2 -1.3,2.6 -0.4,1.5 -2.7,6.9 -5.1,12.1 -10.2,21.8 -25.7,39.9 -40.1,46.8 -11.3,5.4 -19,8.1 -27.7,9.9 -9.2,1.9 -14.5,1.9 -21.4,0.1 z"
|
||||||
|
id="path7"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
style="fill:#0677ee" /><path
|
||||||
|
class="st0"
|
||||||
|
d="m 766.1,1410.6 c -0.7,-0.8 -0.8,-1.7 -0.3,-2 0.6,-0.3 1.5,0.1 2.1,0.8 0.7,0.8 0.8,1.7 0.3,2 -0.6,0.3 -1.5,-0.1 -2.1,-0.8 z"
|
||||||
|
id="path9"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
style="fill:#0677ee" /><path
|
||||||
|
class="st0"
|
||||||
|
d="m 1452.3,1343.4 c -0.6,-1 -2.3,-6.2 -3.8,-11.4 -10.1,-34.9 -21.3,-55.2 -40.9,-73.7 -21.5,-20.4 -46.4,-31.2 -81.2,-35.5 -13.5,-1.6 -65,-1.6 -78.9,0 -27.8,3.2 -48.4,7.5 -73,15.2 -15,4.7 -40.9,10.1 -61,12.7 -18.9,2.4 -62,2.4 -77.8,0 -25.9,-4 -50.7,-11.3 -71.2,-21.1 -9.1,-4.3 -14.1,-7.7 -28.5,-19.3 -31.2,-25 -39.3,-32.5 -46.9,-43.1 -20,-28.1 -59.2,-97.2 -68.5,-120.8 -3.7,-9.3 -4.4,-13.8 -2.6,-14.9 0.6,-0.4 11.5,9.5 24.2,22 18.8,18.6 23.3,22.4 24.3,21.3 12.3,-13.3 61.2,-63.4 62.2,-63.6 2.4,-0.6 4.1,1.7 12.7,16.2 9.3,15.7 15.9,24.9 21.2,29.5 1.9,1.7 8.1,5.3 13.7,8 31.6,15.1 61.8,18.3 98.7,10.5 6.3,-1.3 32.2,-8.9 57.5,-16.8 25.3,-7.9 50.5,-15.2 56,-16.2 7.8,-1.5 14.9,-1.9 32,-1.9 21.9,0 22.1,0 37,3.7 20.6,5 34.6,9.8 50.3,17.3 23.4,11.3 40.3,23.4 60.3,43.4 22.9,23 40.6,48.6 59,85.2 16.8,33.6 24.2,54 29.6,81.8 2.3,12 2.7,16.1 2.7,34.6 0.1,17.3 -0.2,22.3 -1.7,28.2 -1.1,3.9 -2.5,8 -3.2,8.9 -1.2,1.7 -1.3,1.7 -2.2,-0.2 z"
|
||||||
|
id="path11"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
style="fill:#0677ee" /><path
|
||||||
|
class="st0"
|
||||||
|
d="m 858.2,1045.3 c -2.1,-1 -20.3,-21.4 -51,-57 -60.2,-69.9 -56.3,-65 -62.2,-76.8 -10.6,-21.4 -12.3,-43.4 -5.4,-71.3 2.5,-10.2 25.1,-71.9 33.9,-92.7 2.6,-6 8.8,-19.5 14,-30 14.9,-30.4 19.2,-45 20.2,-69.1 1,-24.8 -3.9,-51 -15,-79.7 -2,-5.2 -2.3,-6.9 -1.3,-7.3 1.4,-0.5 43.7,13.5 62.1,20.6 6.1,2.3 11.5,4.2 12,4.2 0.6,0.1 15.3,-5.4 32.7,-12.1 17.5,-6.8 32.1,-12 32.6,-11.7 0.5,0.3 0.5,2.6 0.1,5.3 -0.4,2.6 -1.4,16.6 -2,31.1 -1.9,39 0.5,82.7 5.6,102.3 2,7.7 6,16.6 23.5,52.9 24.1,49.9 34.9,74.8 40.6,93.6 2.5,8.1 2.8,10.4 2.8,24.9 0,14.7 -0.2,16.6 -2.7,24 -3.4,10.2 -7.2,16.8 -14,24.2 -2.9,3.2 -27.7,30.6 -55.1,60.8 -27.4,30.3 -51.4,56.5 -53.4,58.3 -3.9,3.5 -10.6,7.2 -13.2,7.2 -0.8,0 -3,-0.8 -4.8,-1.7 z m 22.5,-430.9 c -4.6,-4.4 -23.3,-4.5 -28.9,-0.2 -1.5,1.2 -0.8,2.7 6,14.3 4.3,7.2 8.1,13.6 8.6,14.4 0.7,1 2.9,-2.5 8.2,-13 5.4,-10.9 6.9,-14.7 6.1,-15.5 z"
|
||||||
|
id="path13"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
style="fill:#0677ee" /><path
|
||||||
|
class="st0"
|
||||||
|
d="m 622,847.4 c -19,-5.1 -26.4,-13.2 -26.3,-28.9 0,-11.7 3.3,-17.9 22.9,-44.2 6.2,-8.3 11.9,-16.4 12.7,-18 1.7,-3.3 0.7,-6.3 -2.1,-6.3 -0.9,0 -15.6,14.1 -32.7,31.4 -35,35.5 -32.3,33.6 -49.2,33.6 -22.4,0 -49.6,-10.6 -61.5,-23.8 -8.7,-9.7 -4.4,-16.5 30.5,-48.6 6.8,-6.3 11.7,-11.5 11.5,-12.4 -0.8,-4.2 -3.3,-3.6 -18.6,4.7 -20.2,11 -37.6,19.2 -50.3,23.7 -8.9,3.2 -11.7,3.7 -19.4,3.8 l -9,0.1 -19.6,-14.2 C 391,733.8 388,730.8 389.4,726.2 c 1.2,-3.5 5,-6 30.6,-19.5 38.7,-20.4 55.4,-30.6 54.8,-33.4 -0.7,-3.9 -3,-3.6 -35.8,4.5 -17.9,4.5 -39,10.2 -47,12.8 -21.8,7.1 -32.6,7.2 -43.2,0.5 -4.7,-3 -10,-10.1 -24.3,-32.9 -7.4,-11.9 -9,-16.3 -7.5,-20.8 2,-5.8 5.2,-7.2 28.6,-12 44.1,-8.9 70.1,-15.9 71.1,-19.1 0.8,-2.4 -12.3,-4.9 -46.2,-8.7 -29.4,-3.4 -68.4,-6.8 -70,-6.3 -4.6,1.8 -28.1,-30.5 -40.7,-55.9 -8.3,-16.9 -9.6,-23.4 -5.5,-27.2 1.4,-1.3 4.2,-2.6 6.4,-2.8 2.1,-0.3 21.8,1.5 43.8,4 22,2.5 49.3,5.3 60.8,6.2 19.6,1.7 20.8,1.7 22.4,0.1 3.4,-3.4 0.6,-5 -11.8,-7 -23.4,-3.7 -74.9,-12.8 -89,-15.6 -32,-6.5 -35.1,-7.9 -50.1,-22 -30.7,-28.9 -80.7,-100.7 -80.8,-116.2 0,-4.5 3.3,-7.9 7.8,-7.9 1.8,0 36.6,11.5 77.4,25.5 56.8,19.5 74.4,25.2 75.5,24.4 3.7,-3.1 1.6,-4.5 -22.4,-15.4 C 261.1,366.4 236.8,356.1 220.5,350.1 168.6,331 142.7,314.8 123.5,289.2 113.6,276 107,262 96.4,231.6 91.7,218 92.2,211 97.9,211 c 8.5,0 73.7,26.5 169.6,69 43.3,19.2 39.5,17.8 41,15.6 2.8,-3.7 10.9,0.8 -112,-62.1 C 115.7,192.1 104.6,185.8 85.7,171.2 53.6,146.5 37.4,123.7 20.6,79.7 11.5,56 5.8,35.2 5.6,25 L 5.5,16.5 8.7,16.2 c 7.7,-0.8 42.4,16.4 197.8,97.8 93.2,48.8 122.2,63.8 154.3,79.9 22.5,11.3 27,13.2 30.3,12.9 l 4,-0.3 -6,-9.2 c -10.2,-15.7 -21.2,-25.3 -42.6,-37 -4.9,-2.7 -14.8,-8.3 -22,-12.3 -7.1,-4 -21.1,-11.1 -31,-15.7 -9.9,-4.5 -19.6,-9.1 -21.5,-10 -7.3,-3.7 -5.9,-12.3 1.9,-12.3 12.9,0 74.5,29.2 106.7,50.5 17.9,11.9 28.8,24.8 62.5,74.5 20.5,30.3 28.7,44.9 43.9,78.5 17.4,38.3 39.5,90.7 62.2,147.5 15.8,39.5 21.2,49.3 34.3,62.6 7.8,7.9 10.3,9.8 18.5,13.7 5.2,2.5 14.1,5.7 19.7,7.1 46.9,12.1 85.1,32.5 118,63 16,14.9 25.2,29.6 29.4,47.2 2.7,11.4 2.3,29 -0.8,36.9 -3.7,9.5 -87.4,136.7 -94.8,144 -4.6,4.7 -14.3,9.8 -22.5,12 -7,1.9 -21.9,1.8 -29,-0.1 z"
|
||||||
|
id="path15"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
style="fill:#0677ee" /><path
|
||||||
|
class="st0"
|
||||||
|
d="m 1077.6,833.5 c -7.3,-1.9 -19,-8 -23,-12 -5.3,-5.3 -43.4,-62.2 -81.8,-122 -14.9,-23.3 -15.3,-24.4 -15.3,-41.5 0,-15.3 1.4,-21.9 7.1,-33.9 5.1,-10.9 10.9,-18.5 23.3,-30.3 29.5,-28.3 64,-47.7 107.2,-60.3 24.7,-7.3 28.9,-8.8 35,-12.3 9,-5.3 18.1,-14.2 25,-24.5 8.4,-12.6 9.7,-15.4 27.2,-58.7 34.7,-85.9 57.5,-138.4 75.6,-173.5 13.8,-26.9 54.2,-85.3 71.6,-103.4 12,-12.6 29.6,-23.6 67,-42.3 21.6,-10.8 43.1,-20 52.4,-22.3 5.7,-1.5 6.4,-1.5 8.6,-0.1 2.9,1.9 4.1,5.6 2.6,8.3 -0.6,1.1 -6.6,4.5 -13.8,7.8 -17.6,8 -38.4,18.4 -48.4,24.3 -4.6,2.7 -12,6.8 -16.4,9.2 -22.8,12.4 -35.4,24 -46,42.3 l -2.7,4.7 h 3.2 c 1.7,0 6.3,-1.3 10.2,-3 10.2,-4.3 80.3,-40.5 174.8,-90 88.2,-46.3 170.8,-88.4 185.5,-94.4 5.9,-2.4 10.1,-3.6 12.5,-3.4 3.4,0.3 3.5,0.4 3.8,5.1 0.5,7.4 -2.3,19.2 -9.8,41.7 -14.8,44.5 -25.8,64.5 -48.4,87.8 -15.9,16.4 -30.9,27.8 -54.3,41.3 -4.8,2.8 -42.5,22.5 -83.8,43.6 -112.4,57.7 -107.5,55.1 -107.5,57.8 0,3.7 2.4,3.7 10.7,-0.1 4.3,-2 22.4,-10 40.3,-17.9 88.6,-38.9 146,-62.4 158.7,-64.8 7.1,-1.4 8,6.8 2.4,22.1 -1.6,4.2 -4.5,12.2 -6.5,17.7 -5.5,14.9 -11.8,27.2 -18.7,36.6 -18.7,25.3 -46.5,43.8 -89.6,59.4 -20.4,7.4 -39.7,15.5 -73.8,30.8 -29.1,13.1 -32,14.6 -32,16.8 0,1.7 0.6,2.5 2,2.7 1.2,0.2 35.6,-11.2 76.5,-25.3 49.5,-17 75.2,-25.4 76.8,-25 3.9,1 6.2,4.1 6.2,8.4 0,14.3 -46.1,81.3 -77.5,112.6 -14.6,14.6 -19.6,17.6 -35.2,21.4 -16.8,4 -42,8.7 -83.8,15.6 -34.8,5.8 -38.1,6.7 -35.8,10.3 0.9,1.4 2.4,1.7 8.4,1.5 11.7,-0.4 29.4,-2.1 72.7,-6.9 44.8,-4.9 47.1,-5 51.1,-2.9 4.9,2.5 5.4,7.1 1.7,16.7 -5.5,14.7 -16.4,33.5 -29.2,50.5 -12.5,16.5 -13,16.8 -25.5,17.7 -16.3,1.1 -67,6.3 -82.4,8.5 -23.8,3.4 -27.8,4.7 -23.9,7.6 4.2,3 29.2,9.4 68.9,17.5 11,2.2 21.2,4.5 22.7,5.1 4.6,1.9 7.3,5.6 7.2,10 -0.2,5 -2.5,9.4 -16,30.3 -9.1,14.1 -11.6,17.4 -15.9,20.2 -10.4,6.9 -21.7,6.9 -42.8,0 -13.4,-4.5 -76.4,-20.6 -80.4,-20.6 -2.2,0 -3.6,2.1 -2.8,4.3 1.2,2.9 26.4,17.6 59.6,34.8 18.4,9.5 25.9,14.9 25.9,18.7 0,1.1 -1.1,3.4 -2.5,5 -2.7,3.3 -32.7,25.5 -38.5,28.5 -6.3,3.3 -18.8,1.3 -37.2,-6.1 -8.4,-3.4 -34.9,-16.5 -48,-23.7 -8.7,-4.9 -12.1,-5.4 -12.6,-1.9 -0.2,1.6 3.3,5.4 15.2,16.3 24.6,22.5 30.6,29.9 30.6,37.8 0,3.3 -0.7,4.4 -5.9,9.3 -16.7,15.6 -49.7,25.2 -71.7,20.8 l -5.8,-1.2 -31,-31.3 c -17,-17.2 -31.7,-31.3 -32.7,-31.3 -0.9,0 -2.2,0.6 -2.8,1.4 -1.7,2 -0.1,4.9 11.5,20.3 20.7,27.5 24.6,34.7 24.8,45.7 0.2,14.4 -6.4,23 -21.6,28.1 -10.2,3.4 -24.2,4.3 -33.2,2 z"
|
||||||
|
id="path17"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
style="fill:#0677ee" /><path
|
||||||
|
class="st0"
|
||||||
|
d="m 785.6,538 c -34.1,-18.1 -62.3,-33.5 -62.7,-34.2 -0.8,-1.5 -32.7,-91.6 -33.1,-93.7 -0.2,-0.8 0.4,-1.6 1.2,-1.8 0.8,-0.2 23.5,7.7 50.4,17.5 l 49,17.9 29.8,62.8 c 16.4,34.5 29.5,63.1 29.2,63.6 -0.3,0.5 -0.8,0.9 -1.2,0.8 -0.4,0 -28.6,-14.8 -62.6,-32.9 z"
|
||||||
|
id="path19"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
style="fill:#0677ee" /><path
|
||||||
|
class="st0"
|
||||||
|
d="m 879.5,570 c -0.5,-0.8 57.3,-121 60.9,-126.5 0.9,-1.3 4,-3.1 7.3,-4.3 55.5,-19.3 90.7,-31.1 91.4,-30.6 0.5,0.3 0.9,1 0.9,1.6 0,2.5 -30.5,84 -35.9,96 -1.5,3.5 -3.7,7.1 -4.7,8 -1.1,0.9 -12.9,6.9 -26.4,13.3 -30.9,14.8 -92,43.5 -92.5,43.5 -0.2,0 -0.7,-0.4 -1,-1 z"
|
||||||
|
id="path21"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
style="fill:#0677ee" /><path
|
||||||
|
class="st0"
|
||||||
|
d="M 860.7,558.3 C 846,529.1 802.9,437.4 803.3,436.1 c 0.6,-2 58.4,-136.6 59.8,-139.3 0.9,-1.7 1.3,-1.8 2.4,-0.7 1.1,1.2 62.5,140.9 62.5,142.3 0,1.3 -61.9,125.4 -62.8,126 -0.7,0.4 -2.4,-1.9 -4.5,-6.1 z"
|
||||||
|
id="path23"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
style="fill:#0677ee" /></g><g
|
||||||
|
id="g25"
|
||||||
|
transform="translate(-5.5,5.3215017)"><path
|
||||||
|
class="st0"
|
||||||
|
d="m 856.5,1607 c -2.2,-1 -8,-3.5 -13,-5.5 -4.9,-2.1 -10.1,-4.3 -11.5,-5 -1.4,-0.7 -4.3,-1.8 -6.5,-2.5 -2.2,-0.7 -4.4,-1.6 -5,-2 -0.5,-0.5 -3.9,-1.8 -7.5,-3.1 -3.6,-1.2 -7.4,-2.8 -8.5,-3.4 -1.1,-0.7 -3.1,-1.6 -4.5,-2 -2.6,-0.8 -3,-0.9 -17.5,-7 -11.5,-4.9 -17.8,-7.5 -29,-12 -4.9,-2 -12.7,-5.2 -17.2,-7.1 -4.5,-1.9 -8.6,-3.4 -9.1,-3.4 -0.6,0 -2.3,-0.7 -3.9,-1.5 -3.8,-1.9 -10.4,-4.8 -18.3,-7.8 -3.6,-1.4 -7.9,-3.3 -9.5,-4.1 -1.7,-0.9 -3.7,-1.6 -4.6,-1.6 -0.8,0 -1.9,-0.4 -2.5,-0.8 -0.5,-0.4 -3.6,-1.9 -6.9,-3.1 -3.3,-1.3 -8.2,-3.4 -11,-4.6 -2.7,-1.2 -9.3,-3.9 -14.5,-5.9 -5.2,-2.1 -10.7,-4.4 -12.2,-5.2 -1.4,-0.8 -3.1,-1.4 -3.7,-1.4 -1.2,0 -8.8,-3.2 -13.3,-5.6 -1.4,-0.8 -3.2,-1.4 -4,-1.4 -0.7,0 -3.5,-1.1 -6.2,-2.5 -2.7,-1.4 -5.7,-2.5 -6.5,-2.5 -2.1,0 -7.5,-5.9 -10.1,-11 -3.6,-7 -2.8,-9.6 5.2,-16.9 l 7,-6.5 15.6,3.9 c 37.5,9.2 103.4,41.8 165.6,81.8 6,3.8 19.3,11.7 29.5,17.5 20.9,11.8 47.8,27.9 48.6,29.2 0.6,1 -6.9,5 -9.3,4.9 -0.9,0 -3.5,-0.9 -5.7,-1.9 z"
|
||||||
|
id="path27"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
style="fill:#0677ee" /><path
|
||||||
|
class="st0"
|
||||||
|
d="m 459.7,1386.2 c -1.6,-0.9 -8.8,-8.4 -16,-16.7 -53.4,-60.7 -163.4,-183.7 -180.9,-202.3 -22.9,-24.2 -34.1,-45.2 -39.4,-73.7 -1.6,-8.5 -1.9,-14.8 -1.8,-41.5 0,-17.3 0.1,-132.6 0.2,-256.2 0.2,-148.7 0.6,-224.9 1.3,-225.4 1.8,-1 3.7,1.5 19.6,25.5 8.6,13 24.7,37.3 35.9,54.1 21.3,32.2 24.9,38.5 28.8,50.2 6.1,18.2 5.7,3 5.6,235.8 l -0.1,212.5 2.9,4.5 c 6.1,9.6 28,36.2 102.4,124.7 44.5,52.9 67.6,80.9 71,86.1 2.8,4.3 2.3,8.3 -1.4,11.8 -12.5,11.6 -21.2,14.9 -28.1,10.6 z"
|
||||||
|
id="path29"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
style="fill:#0677ee" /><path
|
||||||
|
class="st0"
|
||||||
|
d="m 1437.5,1178.1 c -4.8,-2.2 -14.4,-12.1 -17.4,-17.9 l -2.1,-4.1 V 919.7 c 0,-233 0,-236.5 2,-244.2 1.6,-6.2 4.8,-12.8 15.6,-31.9 42.8,-75.5 57.9,-99.3 70.4,-111 2.9,-2.7 5.5,-4.4 6,-4 1.1,1.1 -0.6,478.7 -2,541.3 l -0.9,47.3 -2.5,4.2 c -3.3,5.4 -15.1,17.6 -37.7,39 -21.9,20.7 -23.3,21.5 -31.4,17.7 z"
|
||||||
|
id="path31"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
style="fill:#0677ee" /><path
|
||||||
|
class="st0"
|
||||||
|
d="m 524.5,355.6 c -5.8,-2.7 -10.4,-10 -14.4,-23 -3.7,-12 -2.5,-18.9 4.2,-24 1.8,-1.4 18.9,-8.4 38.1,-15.6 31.8,-11.9 101.1,-38.5 243.4,-93.4 37,-14.3 55.5,-20.9 60.3,-21.7 11.9,-1.8 16.8,-0.5 67.7,18.7 174.1,65.6 267.2,100.8 270.3,102.5 4.5,2.2 8.5,6.9 9.4,10.8 0.4,2.1 -0.8,6.9 -4.4,17.4 -2.7,8 -5.4,15.4 -5.9,16.4 -2,3.5 -7,7.5 -10.8,8.4 -8.6,2 0.8,5.4 -184.3,-66.3 -66.7,-25.8 -124.3,-47.6 -128,-48.4 -15.4,-3.2 -22.4,-1.8 -58.1,12.1 -15.1,5.9 -72.3,27.8 -127,48.7 -54.7,20.9 -110.7,42.4 -124.5,47.9 -13.7,5.5 -26.8,10.2 -29,10.4 -2.3,0.3 -5.3,-0.1 -7,-0.9 z"
|
||||||
|
id="path33"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
style="fill:#0677ee" /></g></svg>
|
After Width: | Height: | Size: 14 KiB |
Binary file not shown.
Before Width: | Height: | Size: 2.3 KiB |
87
oxt/icons/team-valor.svg
Normal file
87
oxt/icons/team-valor.svg
Normal file
File diff suppressed because one or more lines are too long
After Width: | Height: | Size: 18 KiB |
Loading…
Reference in New Issue
Block a user