Adds a bunch of UI icons for verbs. (#3007)
Co-authored-by: Pieter-Jan Briers <pieterjan.briers+git@gmail.com>
@@ -16,6 +16,7 @@ namespace Content.Client.GlobalVerbs
|
||||
{
|
||||
data.Visibility = VerbVisibility.Visible;
|
||||
data.Text = Loc.GetString("Examine");
|
||||
data.IconTexture = "/Textures/Interface/VerbIcons/examine.svg.96dpi.png";
|
||||
}
|
||||
|
||||
public override void Activate(IEntity user, IEntity target)
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
using Content.Shared.GameObjects.Verbs;
|
||||
using Content.Shared.GameObjects.Verbs;
|
||||
using Robust.Client.Console;
|
||||
using Robust.Client.ViewVariables;
|
||||
using Robust.Shared.GameObjects;
|
||||
@@ -26,6 +26,7 @@ namespace Content.Client.GlobalVerbs
|
||||
|
||||
data.Text = "View Variables";
|
||||
data.CategoryData = VerbCategories.Debug;
|
||||
data.IconTexture = "/Textures/Interface/VerbIcons/vv.svg.96dpi.png";
|
||||
}
|
||||
|
||||
public override void Activate(IEntity user, IEntity target)
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
#nullable enable
|
||||
#nullable enable
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Threading.Tasks;
|
||||
@@ -263,6 +263,7 @@ namespace Content.Server.GameObjects.Components.Access
|
||||
}
|
||||
|
||||
data.Text = Loc.GetString("Eject Privileged ID");
|
||||
data.IconTexture = "/Textures/Interface/VerbIcons/eject.svg.96dpi.png";
|
||||
data.Visibility = component.PrivilegedIDEmpty ? VerbVisibility.Invisible : VerbVisibility.Visible;
|
||||
}
|
||||
|
||||
@@ -288,6 +289,7 @@ namespace Content.Server.GameObjects.Components.Access
|
||||
|
||||
data.Text = Loc.GetString("Eject Target ID");
|
||||
data.Visibility = component.TargetIDEmpty ? VerbVisibility.Invisible : VerbVisibility.Visible;
|
||||
data.IconTexture = "/Textures/Interface/VerbIcons/eject.svg.96dpi.png";
|
||||
}
|
||||
|
||||
protected override void Activate(IEntity user, IdCardConsoleComponent component)
|
||||
|
||||
@@ -792,6 +792,7 @@ namespace Content.Server.GameObjects.Components.Disposal
|
||||
|
||||
data.Visibility = VerbVisibility.Visible;
|
||||
data.Text = Loc.GetString("Flush");
|
||||
data.IconTexture = "/Textures/Interface/VerbIcons/eject.svg.96dpi.png";
|
||||
}
|
||||
|
||||
protected override void Activate(IEntity user, DisposalMailingUnitComponent component)
|
||||
|
||||
@@ -703,6 +703,7 @@ namespace Content.Server.GameObjects.Components.Disposal
|
||||
|
||||
data.Visibility = VerbVisibility.Visible;
|
||||
data.Text = Loc.GetString("Flush");
|
||||
data.IconTexture = "/Textures/Interface/VerbIcons/eject.svg.96dpi.png";
|
||||
}
|
||||
|
||||
protected override void Activate(IEntity user, DisposalUnitComponent component)
|
||||
|
||||
@@ -666,6 +666,7 @@ namespace Content.Server.GameObjects.Components.GUI
|
||||
data.Visibility = VerbVisibility.Visible;
|
||||
data.Text = Loc.GetString("Set Outfit");
|
||||
data.CategoryData = VerbCategories.Debug;
|
||||
data.IconTexture = "/Textures/Interface/VerbIcons/outfit.svg.96dpi.png";
|
||||
}
|
||||
|
||||
protected override void Activate(IEntity user, InventoryComponent component)
|
||||
|
||||
@@ -472,6 +472,7 @@ namespace Content.Server.GameObjects.Components.Items.Storage
|
||||
}
|
||||
|
||||
data.Text = Loc.GetString(component.Open ? "Close" : "Open");
|
||||
data.IconTexture = component.Open ? "/Textures/Interface/VerbIcons/close.svg.96dpi.png" : "/Textures/Interface/VerbIcons/open.svg.96dpi.png";
|
||||
}
|
||||
|
||||
void IExAct.OnExplosion(ExplosionEventArgs eventArgs)
|
||||
|
||||
@@ -112,7 +112,7 @@ namespace Content.Server.GameObjects.Components.Items.Storage
|
||||
return;
|
||||
}
|
||||
|
||||
data.Text = Loc.GetString("Pick Up");
|
||||
data.Text = Loc.GetString("Pick up");
|
||||
}
|
||||
|
||||
protected override void Activate(IEntity user, ItemComponent component)
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
using Content.Server.GameObjects.Components.Access;
|
||||
using Content.Server.GameObjects.Components.Access;
|
||||
using Content.Shared.GameObjects.Components.Storage;
|
||||
using Content.Shared.GameObjects.EntitySystems.ActionBlocker;
|
||||
using Content.Shared.GameObjects.Verbs;
|
||||
@@ -77,6 +77,7 @@ namespace Content.Server.GameObjects.Components.Items.Storage
|
||||
if (Locked)
|
||||
{
|
||||
data.Visibility = VerbVisibility.Invisible;
|
||||
|
||||
return;
|
||||
}
|
||||
|
||||
|
||||
@@ -380,6 +380,7 @@ namespace Content.Server.GameObjects.Components.PDA
|
||||
|
||||
data.Text = Loc.GetString("Eject ID");
|
||||
data.Visibility = component.IdSlotEmpty ? VerbVisibility.Invisible : VerbVisibility.Visible;
|
||||
data.IconTexture = "/Textures/Interface/VerbIcons/eject.svg.96dpi.png";
|
||||
}
|
||||
|
||||
protected override void Activate(IEntity user, PDAComponent component)
|
||||
@@ -401,6 +402,7 @@ namespace Content.Server.GameObjects.Components.PDA
|
||||
|
||||
data.Text = Loc.GetString("Eject Pen");
|
||||
data.Visibility = component.PenSlotEmpty ? VerbVisibility.Invisible : VerbVisibility.Visible;
|
||||
data.IconTexture = "/Textures/Interface/VerbIcons/eject.svg.96dpi.png";
|
||||
}
|
||||
|
||||
protected override void Activate(IEntity user, PDAComponent component)
|
||||
@@ -421,6 +423,7 @@ namespace Content.Server.GameObjects.Components.PDA
|
||||
}
|
||||
|
||||
data.Text = Loc.GetString("Toggle flashlight");
|
||||
data.IconTexture = "/Textures/Interface/VerbIcons/light.svg.96dpi.png";
|
||||
}
|
||||
|
||||
protected override void Activate(IEntity user, PDAComponent component)
|
||||
|
||||
@@ -134,14 +134,14 @@ namespace Content.Server.GameObjects.Components.Power.ApcNetComponents.PowerRece
|
||||
|
||||
if (component._container.ContainedEntity != null || handsComponent.GetActiveHand == null)
|
||||
{
|
||||
data.Visibility = VerbVisibility.Disabled;
|
||||
data.Text = Loc.GetString("Insert");
|
||||
data.Visibility = VerbVisibility.Invisible;
|
||||
return;
|
||||
}
|
||||
|
||||
var heldItemName = Loc.GetString(handsComponent.GetActiveHand.Owner.Name);
|
||||
|
||||
data.Text = Loc.GetString("Insert {0}", heldItemName);
|
||||
data.IconTexture = "/Textures/Interface/VerbIcons/insert.svg.96dpi.png";
|
||||
}
|
||||
|
||||
protected override void Activate(IEntity user, BaseCharger component)
|
||||
@@ -173,14 +173,14 @@ namespace Content.Server.GameObjects.Components.Power.ApcNetComponents.PowerRece
|
||||
}
|
||||
if (component._container.ContainedEntity == null)
|
||||
{
|
||||
data.Text = Loc.GetString("Eject");
|
||||
data.Visibility = VerbVisibility.Disabled;
|
||||
data.Visibility = VerbVisibility.Invisible;
|
||||
return;
|
||||
}
|
||||
|
||||
var containerItemName = Loc.GetString(component._container.ContainedEntity.Name);
|
||||
|
||||
data.Text = Loc.GetString("Eject {0}", containerItemName);
|
||||
data.IconTexture = "/Textures/Interface/VerbIcons/eject.svg.96dpi.png";
|
||||
}
|
||||
|
||||
protected override void Activate(IEntity user, BaseCharger component)
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
#nullable enable
|
||||
#nullable enable
|
||||
using System;
|
||||
using Content.Server.GameObjects.Components.GUI;
|
||||
using Content.Server.GameObjects.Components.Items.Storage;
|
||||
@@ -187,11 +187,13 @@ namespace Content.Server.GameObjects.Components.Power
|
||||
|
||||
if (component.Cell == null)
|
||||
{
|
||||
data.Text = Loc.GetString("Eject cell (cell missing)");
|
||||
data.Text = Loc.GetString("No cell");
|
||||
data.Visibility = VerbVisibility.Disabled;
|
||||
}
|
||||
else
|
||||
{
|
||||
data.Text = Loc.GetString("Eject cell");
|
||||
data.IconTexture = "/Textures/Interface/VerbIcons/eject.svg.96dpi.png";
|
||||
}
|
||||
|
||||
if (component.Cell == null || !component.CanRemoveCell)
|
||||
|
||||
@@ -216,6 +216,7 @@ namespace Content.Server.GameObjects.Components.Weapon.Ranged.Ammunition
|
||||
|
||||
data.Text = Loc.GetString("Dump 10");
|
||||
data.Visibility = component.AmmoLeft > 0 ? VerbVisibility.Visible : VerbVisibility.Disabled;
|
||||
data.IconTexture = "/Textures/Interface/VerbIcons/eject.svg.96dpi.png";
|
||||
}
|
||||
|
||||
protected override void Activate(IEntity user, AmmoBoxComponent component)
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
using System;
|
||||
using System;
|
||||
using System.Threading.Tasks;
|
||||
using Content.Server.GameObjects.Components.Weapon.Ranged.Ammunition;
|
||||
using Content.Shared.GameObjects;
|
||||
@@ -294,6 +294,7 @@ namespace Content.Server.GameObjects.Components.Weapon.Ranged.Barrels
|
||||
}
|
||||
|
||||
data.Visibility = component.ShotsLeft > 0 ? VerbVisibility.Visible : VerbVisibility.Disabled;
|
||||
data.IconTexture = "/Textures/Interface/VerbIcons/refresh.svg.96dpi.png";
|
||||
}
|
||||
|
||||
protected override void Activate(IEntity user, RevolverBarrelComponent component)
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
using System;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Threading.Tasks;
|
||||
using Content.Server.GameObjects.Components.GUI;
|
||||
@@ -302,12 +302,13 @@ namespace Content.Server.GameObjects.Components.Weapon.Ranged.Barrels
|
||||
|
||||
if (component.PowerCell == null)
|
||||
{
|
||||
data.Text = Loc.GetString("Eject cell (cell missing)");
|
||||
data.Text = Loc.GetString("No cell");
|
||||
data.Visibility = VerbVisibility.Disabled;
|
||||
}
|
||||
else
|
||||
{
|
||||
data.Text = Loc.GetString("Eject cell");
|
||||
data.IconTexture = "/Textures/Interface/VerbIcons/eject.svg.96dpi.png";
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
using System;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Threading.Tasks;
|
||||
using Content.Server.GameObjects.Components.GUI;
|
||||
@@ -463,6 +463,7 @@ namespace Content.Server.GameObjects.Components.Weapon.Ranged.Barrels
|
||||
}
|
||||
|
||||
data.Text = Loc.GetString("Eject magazine");
|
||||
data.IconTexture = "/Textures/Interface/VerbIcons/eject.svg.96dpi.png";
|
||||
if (component.MagNeedsOpenBolt)
|
||||
{
|
||||
data.Visibility = component.HasMagazine && component.BoltOpen
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
#nullable enable
|
||||
#nullable enable
|
||||
using Content.Shared.GameObjects.Verbs;
|
||||
using Robust.Server.Console;
|
||||
using Robust.Server.GameObjects;
|
||||
@@ -33,6 +33,7 @@ namespace Content.Server.GlobalVerbs
|
||||
data.Text = Loc.GetString("Delete");
|
||||
data.CategoryData = VerbCategories.Debug;
|
||||
data.Visibility = VerbVisibility.Visible;
|
||||
data.IconTexture = "/Textures/Interface/VerbIcons/delete.svg.96dpi.png";
|
||||
}
|
||||
|
||||
public override void Activate(IEntity user, IEntity target)
|
||||
|
||||
@@ -31,6 +31,7 @@ namespace Content.Server.GlobalVerbs
|
||||
data.Visibility = VerbVisibility.Visible;
|
||||
data.Text = Loc.GetString("Make Sentient");
|
||||
data.CategoryData = VerbCategories.Debug;
|
||||
data.IconTexture = "/Textures/Interface/VerbIcons/sentient.svg.96dpi.png";
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
using Content.Server.GameObjects.Components.Pointing;
|
||||
using Content.Server.GameObjects.Components.Pointing;
|
||||
using Content.Server.GameObjects.EntitySystems;
|
||||
using Content.Shared.GameObjects.Verbs;
|
||||
using Robust.Server.GameObjects;
|
||||
@@ -18,6 +18,7 @@ namespace Content.Server.GlobalVerbs
|
||||
public override void GetData(IEntity user, IEntity target, VerbData data)
|
||||
{
|
||||
data.Visibility = VerbVisibility.Invisible;
|
||||
data.IconTexture = "/Textures/Interface/VerbIcons/point.svg.96dpi.png";
|
||||
|
||||
if (!user.HasComponent<IActorComponent>())
|
||||
{
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
using Content.Server.GameObjects.Components.Atmos;
|
||||
using Content.Server.GameObjects.Components.Atmos;
|
||||
using Content.Server.GameObjects.Components.Mobs;
|
||||
using Content.Server.GameObjects.Components.Nutrition;
|
||||
using Content.Shared.GameObjects.Components.Damage;
|
||||
@@ -26,6 +26,7 @@ namespace Content.Server.GlobalVerbs
|
||||
data.Text = Loc.GetString("Rejuvenate");
|
||||
data.CategoryData = VerbCategories.Debug;
|
||||
data.Visibility = VerbVisibility.Invisible;
|
||||
data.IconTexture = "/Textures/Interface/VerbIcons/rejuvenate.svg.96dpi.png";
|
||||
|
||||
var groupController = IoCManager.Resolve<IConGroupController>();
|
||||
|
||||
|
||||
@@ -17,6 +17,7 @@ namespace Content.Server.GlobalVerbs
|
||||
{
|
||||
data.CategoryData = VerbCategories.Debug;
|
||||
data.Visibility = VerbVisibility.Invisible;
|
||||
data.IconTexture = "/Textures/Interface/VerbIcons/anchor.svg.96dpi.png";
|
||||
|
||||
var groupController = IoCManager.Resolve<IConGroupController>();
|
||||
|
||||
|
||||
3
Resources/Textures/Interface/VerbIcons/ATTRIBUTION.txt
Normal file
@@ -0,0 +1,3 @@
|
||||
All icons are public domain.
|
||||
|
||||
Pulled mostly from this source https://github.com/apancik/public-domain-icons.
|
||||
10
Resources/Textures/Interface/VerbIcons/Spare/ATTRIBUTION.txt
Normal file
@@ -0,0 +1,10 @@
|
||||
The icons in this folder are all Public Domain. They include icons from
|
||||
|
||||
Public Icons
|
||||
DOT/AIGA Symbol Signs
|
||||
National Park Service Map Symbols
|
||||
SEGD Healthcare Symbols
|
||||
|
||||
You can copy, modify, distribute and perform the work, even for commercial purposes, all without asking permission, or attribution.
|
||||
|
||||
Last updated by Swept
|
||||
1
Resources/Textures/Interface/VerbIcons/Spare/clock.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 28 29"><title>Shape + Shape</title><g fill-rule="evenodd"><path d="M13.98 28.066C6.27 28.066 0 21.796 0 14.08 0 6.367 6.27.092 13.98.092S27.97 6.367 27.97 14.08c0 7.716-6.28 13.986-13.99 13.986zm0-3.462c5.802 0 10.53-4.72 10.53-10.528 0-5.798-4.73-10.526-10.53-10.526-5.803 0-10.52 4.728-10.52 10.526-.002 5.81 4.717 10.528 10.52 10.528z"/><path d="M14.053 15.927a1.04 1.04 0 0 1-1.005-.076 1.047 1.047 0 0 1-.47-.723L12.563 7a1.052 1.052 0 0 1 2.105 0v6.304l5.393-2.538a1.048 1.048 0 0 1 1.4.498c.25.53.02 1.154-.5 1.403l-6.905 3.26z"/></g></svg>
|
||||
|
After Width: | Height: | Size: 600 B |
1
Resources/Textures/Interface/VerbIcons/Spare/dna.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 25"><title>genetics human hospital healthcare health family doctor dna biology person</title><g fill-rule="evenodd"><path d="M74.913 14.033a292.18 292.18 0 0 1-3.254-2.57c-.91-.724-1.83-1.456-2.75-2.173-5.5-4.303-11.23-8.227-17.6-8.798A17.592 17.592 0 0 0 49.71.416c-.54 0-1.066.07-1.594.116-6.39.58-12.14 4.48-17.66 8.798l.58.46c.672.534 1.332 1.047 2 1.57C38.53 7.107 43.88 3.6 49.715 3.6c5.813 0 11.153 3.487 16.624 7.725a219.36 219.36 0 0 1 3.34 2.63c.885.704 1.77 1.414 2.664 2.112C78.324 20.747 84.568 25 91.614 25c2.73 0 5.338-.65 7.856-1.707v-3.48c-2.557 1.23-5.156 2.002-7.856 2.002-5.84 0-11.2-3.516-16.703-7.782z"/><path d="M72.34 9.353c.182.146.367.29.55.437.68.546 1.353 1.062 2.026 1.598 1.99-1.54 3.968-2.978 5.95-4.19v8.562c1.063.695 2.126 1.34 3.188 1.882V5.486c1.966-.918 3.96-1.547 6.003-1.766v15.855c.49.06.982.113 1.478.113.57 0 1.143-.055 1.71-.13V3.698c2.123.23 4.187.902 6.225 1.88V2.102C96.962 1.06 94.367.416 91.652.416c-7.05 0-13.31 4.25-19.313 8.937zm-45.3 6.75c-.21-.167-.426-.334-.637-.506-.65-.52-1.292-1.015-1.94-1.528-5.48 4.24-10.832 7.74-16.655 7.74C5.125 21.81 2.544 21 0 19.7v3.513C2.504 24.32 5.092 25 7.807 25c7.028 0 13.26-4.23 19.233-8.896z"/><path d="M6.18 19.584c.528.07 1.06.12 1.59.12.535 0 1.066-.05 1.598-.12V3.7c2.057.22 4.062.85 6.042 1.782-.01.072-.043.142-.043.222v11.893a36.36 36.36 0 0 0 3.188-1.89V7.2c3.046 1.872 6.07 4.277 9.172 6.753C34.534 19.383 41.573 25 49.675 25c7.02 0 13.256-4.22 19.237-8.878l-.66-.524c-.646-.513-1.28-1.004-1.917-1.51-1.955 1.51-3.89 2.91-5.838 4.11V9.773A36.35 36.35 0 0 0 57.31 7.88v11.834c0 .065.027.12.035.182-1.977.932-3.982 1.572-6.035 1.798V5.857a12.31 12.31 0 0 0-1.667-.128c-.51 0-1.016.05-1.52.11v15.88c-2.064-.22-4.074-.848-6.054-1.77.01-.08.04-.15.04-.24V7.8a35.183 35.183 0 0 0-3.19 1.89v8.55c-3.06-1.87-6.1-4.29-9.21-6.77C22.91 6.037 15.87.417 7.77.417c-2.7 0-5.274.6-7.77 1.57v3.436c2.023-.9 4.073-1.525 6.18-1.736V19.58z"/></g></svg>
|
||||
|
After Width: | Height: | Size: 1.9 KiB |
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 120 120"><path d="M48.732 69.783L91.04 27.476l11.74 11.74-42.308 42.31z"/><path d="M51 3.424h19.054v60.21H51z"/><path d="M60.543 81.572L18.22 39.282l11.72-11.74L72.27 69.85zM9 99.575h103v17H9z"/><path d="M5.5 68.576h17v48h-17zm92 0h17v48h-17z"/></svg>
|
||||
|
After Width: | Height: | Size: 304 B |
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" version="1" viewBox="0 0 100 83.034"><path d="M0 73.67h18.203V55.145H36.29V36.492h18.37V18.187h18.247V0H100v9.28H81.99v18.254H63.72v18.512H45.49V64.46H27.186v18.574H0V73.67zm60.66 9.004h16.1c4.434 0 4.604-6.822 0-6.822h-8.253L84.2 60.16c3.48-3.48-1.44-8.515-5.138-4.82L63.604 70.844v-8.168c.023-4.433-6.855-4.604-6.866 0v16c0 2.387 1.603 4 3.922 4z"/></svg>
|
||||
|
After Width: | Height: | Size: 397 B |
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 120 120"><path d="M120.09 16.696H60.256V.096L120.09.09z" fill="#020202"/><path d="M57.99 48.64l42.573-42.574 13.475 13.475-42.574 42.58z" fill="#020202"/><path d="M119.98.107l.02 59.83-16.59.013-.02-59.846zM3 23.5h17v87H3zm83.49 52.56h17V113h-17z" fill="#020202"/><path d="M3 16.692h40.655v17H3zM3 96h100.49v17H3z" fill="#020202"/></svg>
|
||||
|
After Width: | Height: | Size: 390 B |
1
Resources/Textures/Interface/VerbIcons/Spare/fire.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 120 120"><path d="M107.58 80.6c0 20.51-16.63 37.14-37.143 37.142-20.514-.002-37.143-16.63-37.143-37.143 0-9.75 2.203-23.92 15.156-36.88 23.698-23.7 24.81-37.3 24.81-37.3 28.48 28.48 34.32 53.66 34.32 74.172z" fill="#010101"/><path d="M29.833 28.5s3.46 22.667 23.558 35.616c11.16 7.19 34.28 27.322 34.28 34.384 0 14.86-35.34 19.24-50.2 19.24s-26.91-12.047-26.91-26.908c0-14.863-1.35-41.7 19.28-62.332z" fill="#010101"/><path d="M60.92 49.177s.6 7.37 13.442 20.212c7.018 7.01 8.21 14.69 8.21 19.97 0 11.112-9.01 20.123-20.124 20.123s-20.126-9.01-20.125-20.125c0-11.11 3.166-24.757 18.596-40.188z" fill="#fff"/></svg>
|
||||
|
After Width: | Height: | Size: 667 B |
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" version="1" viewBox="0 0 100 99.989"><path d="M32.57 0h34.728v32.713H100v34.62H67.562V99.99h-34.86V67.332H0v-34.62h32.57z"/></svg>
|
||||
|
After Width: | Height: | Size: 170 B |
1
Resources/Textures/Interface/VerbIcons/Spare/gps.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 120 120"><path d="M.04 55.602L120 0 64.354 119.96l-4.7-59.61z"/></svg>
|
||||
|
After Width: | Height: | Size: 123 B |
1
Resources/Textures/Interface/VerbIcons/Spare/in.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 120 120"><path d="M66.783 71.268L24.475 28.96l11.74-11.74 42.313 42.31z"/><path d="M.424 49.946h60.21V69H.424z"/><path d="M78.572 59.457l-42.29 42.323-11.74-11.722 42.308-42.33zM96.574 8h17v103h-17z"/><path d="M65.575 97.5h48v17h-48zm0-92h48v17h-48z"/></svg>
|
||||
|
After Width: | Height: | Size: 311 B |
1
Resources/Textures/Interface/VerbIcons/Spare/knife.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" version="1" viewBox="0 0 100 11.655"><path d="M64.974 0v11.787h29.132A5.9 5.9 0 0 0 100 5.893 5.89 5.89 0 0 0 94.107 0h-29.13zm-54.78 8.468l2.695-1.125 1.675 2.874 2.72-1.964 1.94 2.72 2.6-2.108 2.107 2.574L26.39 9.2l2.228 2.455 2.36-2.372 2.372 2.372 2.36-2.372 2.335 2.372 2.373-2.372 2.36 2.372 2.36-2.372 2.36 2.372 2.348-2.372 2.358 2.372 2.36-2.372 2.36 2.372 2.348-2.372 2.384 2.372V.025H0v.047a35.422 35.422 0 0 0 10.194 8.396"/></svg>
|
||||
|
After Width: | Height: | Size: 483 B |
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 65 100"><title>laboratory</title><g fill="#000" fill-rule="evenodd"><path d="M3.2 63.062l24.825 14.336-2.46 4.258L.742 67.32 3.2 63.062z"/><path d="M50.9 89.814c7.17-6.772 11.71-16.284 11.71-26.9 0-13.082-6.868-24.88-17.553-31.51l11.97-20.718-1.88-1.083L58.1 4.47 50.36 0 47.4 5.127l-1.98-1.144-29.425 50.974 2.57 1.484-3.65 6.313 6.467 3.736 3.65-6.318 2.564 1.484 12.374-21.43c7.587 4.836 12.458 13.312 12.458 22.688 0 14.832-12.078 26.9-26.912 26.9H3.834V100h61.033V89.814H50.9z"/></g></svg>
|
||||
|
After Width: | Height: | Size: 547 B |
1
Resources/Textures/Interface/VerbIcons/Spare/mine.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 8 8"><title>Group</title><g fill="#1A1918" fill-rule="evenodd"><path d="M5.668 5.653l.385.326.672-.792-.79-.672-.33.39.063.747zM7.877 6.157l-1.49-.002-.002 1.52h1.013l.48-.516V6.156zM5.184 7.755l.504-.15-.453-1.516-1.076.32-.21.905 1.234.44zM4.147 1.112C2.983.428 2.37.407 1.312.284l-.04.2c1.315.304 1.648.612 2.553 1.16l.125.6L.964 7.16a.44.44 0 0 0 .383.64c.16.003.3-.08.38-.206l2.94-4.806 1.195.765.615-1.013-2.33-1.428"/></g></svg>
|
||||
|
After Width: | Height: | Size: 488 B |
1
Resources/Textures/Interface/VerbIcons/Spare/no.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" version="1" viewBox="0 0 100 100"><path d="M85.36 14.64C75.918 5.2 63.362 0 50.004 0h-.06c-13.346 0-25.89 5.2-35.326 14.642S-.01 36.632 0 49.968c-.01 13.363 5.186 25.926 14.63 35.38C24.07 94.798 36.62 100 49.97 100h.004c13.365 0 25.93-5.202 35.377-14.65C94.798 75.902 100 63.34 100 49.972c0-13.348-5.2-25.895-14.64-35.334zm-35.356-3.49c21.42 0 38.848 17.416 38.848 38.822a38.66 38.66 0 0 1-7.345 22.71l-54.2-54.247c6.553-4.73 14.397-7.286 22.637-7.286h.06zM22.517 77.467c-7.337-7.343-11.373-17.105-11.365-27.5-.008-8.506 2.713-16.602 7.744-23.286l54.36 54.41a38.68 38.68 0 0 1-23.282 7.762c-10.373 0-20.123-4.042-27.457-11.383z"/></svg>
|
||||
|
After Width: | Height: | Size: 676 B |
1
Resources/Textures/Interface/VerbIcons/Spare/out.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 120 120"><path d="M107.36 71.768L65.052 29.46l11.74-11.738L119.1 60.03z" fill="#010101"/><path d="M41 50.446h60.21V69.5H41z" fill="#010101"/><path d="M119.15 59.957L76.858 102.28l-11.74-11.722 42.312-42.33zM5 8.5h17v103H5z" fill="#010101"/><path d="M5 5h48v17H5zm0 92h48v17H5z" fill="#010101"/></svg>
|
||||
|
After Width: | Height: | Size: 353 B |
1
Resources/Textures/Interface/VerbIcons/Spare/plus.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 8 8"><path d="M.336 3.097h7.328v1.807H.336z"/><path d="M3.097.336h1.807v7.328H3.097z"/></svg>
|
||||
|
After Width: | Height: | Size: 146 B |
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 120 120"><path d="M3.272 58.772c0 31.204 25.296 56.5 56.5 56.5 31.203 0 56.5-25.296 56.5-56.5 0-16.264-6.882-30.91-17.88-41.22L84.03 32.885c6.912 6.482 11.244 15.688 11.244 25.89 0 19.574-15.926 35.5-35.5 35.5-19.575 0-35.5-15.926-35.5-35.5" fill="#010101"/><path d="M95.272 58.772c0 19.575-15.925 35.5-35.5 35.5-19.574 0-35.5-15.926-35.5-35.5 0-10.2 4.332-19.406 11.245-25.89l-14.365-15.33C10.154 27.86 3.272 42.507 3.272 58.77c0 31.204 25.297 56.5 56.5 56.5 31.204 0 56.5-25.297 56.5-56.5" fill="#010101"/><path d="M49.785 0H69.76v61.576H49.785z" fill="#010101"/></svg>
|
||||
|
After Width: | Height: | Size: 624 B |
1
Resources/Textures/Interface/VerbIcons/Spare/recycle.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 9 8"><title>Group</title><g fill="#1A1918" fill-rule="evenodd"><path d="M.72 3.012l.592.342.158.092-.462.798a.467.467 0 0 0-.064.233c0 .078.02.156.062.226 0 0 .404.703.734 1.272.024-.08.054-.158.096-.233L2.74 4.18l.156.09.594.344-.924-1.6L.72 3.012z"/><path d="M2.486 5.25l-.374.646a.534.534 0 0 0-.076.278.54.54 0 0 0 .55.545H4.41V5.25H2.486zM7.34.652l-.593.342-.157.092-.46-.8a.452.452 0 0 0-.396-.232h-1.47c.058.06.11.125.152.2l.903 1.562-.158.092-.594.342h1.845L7.34.652z"/><path d="M4.52 1.06L4.146.414A.573.573 0 0 0 3.944.21.58.58 0 0 0 3.67.134a.545.545 0 0 0-.47.28l-.915 1.58 1.273.732c.137-.238.878-1.52.96-1.666m1.518 6.503v-.867l.92.002a.456.456 0 0 0 .235-.064.436.436 0 0 0 .17-.166l.733-1.27c-.08.016-.163.032-.247.032H6.038v-.182l.002-.685-.926 1.6.922 1.6z"/><path d="M7.092 4.916h.746a.556.556 0 0 0 .48-.273.55.55 0 0 0-.004-.547l-.912-1.582-1.272.734.962 1.668"/></g></svg>
|
||||
|
After Width: | Height: | Size: 947 B |
1
Resources/Textures/Interface/VerbIcons/Spare/refresh.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 120 120"><path d="M60 95.5c-19.575 0-35.5-15.926-35.5-35.5 0-19.575 15.925-35.5 35.5-35.5 13.62 0 25.467 7.714 31.418 19h22.627c-7.06-23.153-28.578-40-54.04-40-31.204 0-56.5 25.296-56.5 56.5 0 31.203 25.296 56.5 56.5 56.5 16.264 0 30.91-6.882 41.22-17.88l-15.33-14.365C79.422 91.168 70.217 95.5 60.015 95.5z"/><path d="M120 0v45.336M91.418 43.5h22.622" fill="none"/><path d="M120 21.832l-.01 47.01-45.163-13.03z"/></svg>
|
||||
|
After Width: | Height: | Size: 473 B |
1
Resources/Textures/Interface/VerbIcons/Spare/resize.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 120 120"><path d="M120 57.953V0H62.047zM0 120h62.19L0 57.81z"/><path d="M44.61 60l17.6 17.6-32.588 32.59L12.02 92.588zm45.055-46.53l17.6 17.6-32.588 32.59-17.602-17.6z"/></svg>
|
||||
|
After Width: | Height: | Size: 229 B |
1
Resources/Textures/Interface/VerbIcons/Spare/star.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 120 120"><path d="M41.504 39.537L60.062 0l18.556 39.538 41.502 6.34-30.032 30.775 7.088 43.457L60.06 99.593 22.947 120.11l7.09-43.457L.01 45.878z"/></svg>
|
||||
|
After Width: | Height: | Size: 207 B |
1
Resources/Textures/Interface/VerbIcons/Spare/sun.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 120 120"><path d="M18.932 64.777H.104V54.81h18.828v9.967zM27.42 34.32L14.13 21.03l7.015-7.013 13.29 13.29-7.015 7.013zm0 51.13l7.014 7.013-13.29 13.293-7.01-7.02 13.286-13.29zm37.474-66.636h-9.97V-.012h9.97v18.826zm-9.97 82.146h9.97v18.822h-9.97v-18.82zM92.58 34.32l-7.2-7.014 13.472-13.29 7.014 7.015-13.29 13.29zm0 50.94l13.285 13.476-7.014 7.02-13.28-13.3 7.016-7.202zm27.32-30.45v9.967h-18.825V54.81h18.82z" fill="#010101"/><circle cy="59.883" cx="59.147" r="31.38" fill="#010101"/></svg>
|
||||
|
After Width: | Height: | Size: 545 B |
1
Resources/Textures/Interface/VerbIcons/Spare/upload.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 120 120"><path d="M73.265 13.79L30.958 56.096l-11.74-11.74 42.308-42.31z"/><path d="M51.943 19.938h19.055v60.21H51.943z"/><path d="M61.454 2l42.326 42.29-11.724 11.74-42.33-42.307zM10 99.575h103v17H10z"/><path d="M6.5 68.576h17v48h-17zm92 0h17v48h-17z"/></svg>
|
||||
|
After Width: | Height: | Size: 313 B |
34
Resources/Textures/Interface/VerbIcons/Spare/upstairs.svg
Normal file
@@ -0,0 +1,34 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="135" height="112" viewBox="0 0 135 112">
|
||||
<metadata><?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?>
|
||||
<x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 6.0-c002 79.164352, 2020/01/30-15:50:38 ">
|
||||
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
|
||||
<rdf:Description rdf:about=""
|
||||
xmlns:xmp="http://ns.adobe.com/xap/1.0/">
|
||||
<xmp:CreatorTool>Adobe Photoshop 21.1 (Windows)</xmp:CreatorTool>
|
||||
</rdf:Description>
|
||||
</rdf:RDF>
|
||||
</x:xmpmeta>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<?xpacket end="w"?></metadata>
|
||||
<image width="135" height="112" xlink:href="data:img/png;base64,iVBORw0KGgoAAAANSUhEUgAAAIcAAABwCAYAAAA0cGOrAAADQUlEQVR4nO3d7XHTQBRG4WvGBbiE0EHoIFQAVEBKIBUkVMCkAqAC0kHcgdMBpgLSgTOCNcMY3ljy7l3dlc4zo1+ZyIp1IlkfKy8MUdwEWxPrZYCFwG/X0d6HFwGWAUERByTigEQckIgDEnFAIg5IxAGJOCARByTigMS1lXZ9MbOvjku/JY52/eiunHouPbsVSMQBiTggEQck4oBEHJCIAxJxQCIOSJwh7ecsTbNCHP1cRhxX4o3dCiTigEQckIgDEnFAIg5IxAGJOCARByTigEQckLi24uej8/xdhyUYcbiK9nTAwditQCIOSMQBiTggEQck4oBEHJCIAxJxQCIOSFM5fX7vPP/ZDWjqTOWbmnYBluFQ8+8tuxVIxAGJOCARByTigEQckIgDEnFAIg5IxAGJOCDNddyK9xfZTMJc43D/IpspYLcCiTggEQck4oBEHJCIw9cqPYrhe7qV0Wvq5v95rve6HjP0Ta/17IyNcxSH008zOy+18Gw5/HwouaJ66rZU30rNjDj8vBnpdc/SV4BkIw4/FyO+dpHPHjXiuKiwr41oG3S5emPL4af5azfE4ee29T+AOPw8mNm7lncvPIfU112ahnw47Q5HP0U4oUUcdfT9/LFKTwwIcaaT3coJdrvdr6mwfRi1T5xJxDGQQxQWMQwjjhBChmHEMbqwYRhxjCp0GEYcozk1jIc0VRH1ULZ7Ax4d5z/miamcMF6XvCR/TNQ4riY6riQ3DM9/mH+wW6mnqTCMOKppLgwjjiqaDMOIw12zYRhxuGo6DCMON82HYcThYhJhGHEUN5kwjDiKmlQYRhzF1Ayjz7WVIpcHlumWNM/b0sJedSyk9hbjNo1oW4mfb9N9q0XcVB7s22cac7TYs/a3CP51R9j9CX/f5pmV28e5GLm/KfnPyA3GeS5PCLnEZ4xuHi/Ta+9f/6705XziyPN+4G+X/vC59rx6zQfSPEO2GmGPShTiyNP3qKC5MIw4svXZpDcZhhFHtqsjK73ZMIw4sj2mlf+/o4R1y2EYRytFdGG8SucX3qYY1jXvEvdCHAMtFos/J8AOhkZWGTbQvX4t7FYaUjMMI47T1F5JY1kGHR8S/mk4kw/EzJ4AFecbW6WVaR8AAAAASUVORK5CYII="/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 3.8 KiB |
1
Resources/Textures/Interface/VerbIcons/Spare/wrench.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" version="1" viewBox="0 0 82.025 100"><path d="M63.122 22.983l-9.542-7.51V0c-3.897 1.985-10.616 8.48-8.857 17.56.182 2.68 2.254 9.564 1.37 13.318-1.188 5.008-1.627 5.116-8.75 14.086L1.64 88.974c-2.393 2.737-2.138 6.937.57 9.365 2.71 2.426 6.834 2.16 9.237-.58L56.13 42.277c2.816-3.546 8-6.675 12.49-7.902 7.71-2.37 13.405-9.596 13.405-18.174 0-6.91-3.946-13.453-9.128-16.2l-.026 15.23-9.747 7.753z"/></svg>
|
||||
|
After Width: | Height: | Size: 445 B |
1
Resources/Textures/Interface/VerbIcons/Spare/zap.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 78 120"><title>Shape</title><path d="M77.74 41.135L18.71 119.7l13.61-55.26-31.664.533L51.996 0 36.58 41.17l41.16-.035z" fill-rule="evenodd"/></svg>
|
||||
|
After Width: | Height: | Size: 200 B |
59
Resources/Textures/Interface/VerbIcons/anchor.svg
Normal file
@@ -0,0 +1,59 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<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"
|
||||
viewBox="0 0 32 32"
|
||||
id="svg4"
|
||||
sodipodi:docname="anchor.svg"
|
||||
width="32"
|
||||
height="32"
|
||||
inkscape:version="1.0.1 (3bc2e813f5, 2020-09-07)"
|
||||
inkscape:export-filename="C:\Users\Pieter-Jan Briers\Projects\space-station-14\Resources\Textures\Interface\VerbIcons\anchor.svg.96dpi.png"
|
||||
inkscape:export-xdpi="96"
|
||||
inkscape:export-ydpi="96">
|
||||
<metadata
|
||||
id="metadata10">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title></dc:title>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<defs
|
||||
id="defs8" />
|
||||
<sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1051"
|
||||
id="namedview6"
|
||||
showgrid="false"
|
||||
inkscape:pagecheckerboard="true"
|
||||
inkscape:zoom="17.6"
|
||||
inkscape:cx="8.4347286"
|
||||
inkscape:cy="18.178821"
|
||||
inkscape:window-x="-9"
|
||||
inkscape:window-y="-9"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="svg4" />
|
||||
<path
|
||||
d="m 16.060239,8.3624997 c -0.774502,0 -1.4095,-0.6355 -1.4095,-1.415 0,-0.7867499 0.635499,-1.4179999 1.4095,-1.4179999 a 1.4132499,1.4132499 0 0 1 1.417499,1.4175 1.4159998,1.4159998 0 0 1 -1.417499,1.4157499 z M 27.498737,20.760998 26.744237,16.059 c -0.0875,-0.439501 -0.47125,-0.774251 -0.92875,-0.774251 -0.27875,0 -0.5245,0.1175 -0.705,0.3075 l -3.475748,3.26275 c -0.0575,0.04875 -0.1125,0.1045 -0.1625,0.174 a 1.0134999,1.0134999 0 0 0 0.2125,1.409249 c 0.085,0.06325 0.178,0.105 0.271002,0.1425 l 0.873,0.29 c -0.841502,2.37675 -2.896502,4.18375 -5.420501,4.68425 l 0.0054,-15.434999 A 3.4419998,3.4419998 0 0 0 19.506238,6.9469998 C 19.506238,5.0407499 17.966237,3.5 16.059239,3.5 c -1.898501,0 -3.445001,1.5404999 -3.445001,3.4474997 0,1.421 0.8855,2.6459998 2.11675,3.1725003 l 0.0054,15.45925 c -2.5789,-0.463502 -4.71315,-2.288252 -5.5748995,-4.708002 l 0.8792505,-0.2905 c 0.0935,-0.0375 0.18625,-0.079 0.2735,-0.1425 0.445749,-0.332499 0.544999,-0.96375 0.21,-1.408999 a 0.84749993,0.84749993 0 0 0 -0.1605,-0.17425 l -3.4770004,-3.26075 a 0.94599993,0.94599993 0 0 0 -0.6995,-0.30925 A 0.95299993,0.95299993 0 0 0 5.2522387,16.059 l -0.7537499,4.701998 c -0.0175,0.07325 -0.0235,0.1545 -0.0235,0.23575 a 1.0074999,1.0074999 0 0 0 1.0074999,1.007502 c 0.105,0 0.205,-0.01133 0.2975001,-0.04325 L 6.5974886,21.6955 C 7.8972385,25.643 11.614738,28.5 15.999738,28.5 c 4.385,0 8.104999,-2.8575 9.403249,-6.810748 l 0.815,0.270998 c 0.09375,0.03252 0.1925,0.045 0.2975,0.045 a 1.0079999,1.0079999 0 0 0 1.0095,-1.0075 1.0499999,1.0499999 0 0 0 -0.025,-0.235 z"
|
||||
id="path2"
|
||||
style="fill:#ffffff;fill-opacity:1;stroke-width:0.25" />
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 3.3 KiB |
BIN
Resources/Textures/Interface/VerbIcons/anchor.svg.96dpi.png
Normal file
|
After Width: | Height: | Size: 635 B |
93
Resources/Textures/Interface/VerbIcons/close.svg
Normal file
@@ -0,0 +1,93 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<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 32 32"
|
||||
xml:space="preserve"
|
||||
sodipodi:docname="close.svg"
|
||||
width="32"
|
||||
height="32"
|
||||
inkscape:version="1.0.1 (3bc2e813f5, 2020-09-07)"
|
||||
inkscape:export-filename="C:\Users\Pieter-Jan Briers\Projects\space-station-14\Resources\Textures\Interface\VerbIcons\close.svg.96dpi.png"
|
||||
inkscape:export-xdpi="96"
|
||||
inkscape:export-ydpi="96"><metadata
|
||||
id="metadata19"><rdf:RDF><cc:Work
|
||||
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs
|
||||
id="defs17"><inkscape:path-effect
|
||||
effect="fillet_chamfer"
|
||||
id="path-effect991"
|
||||
is_visible="true"
|
||||
lpeversion="1"
|
||||
satellites_param="F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1"
|
||||
unit="px"
|
||||
method="auto"
|
||||
mode="F"
|
||||
radius="1"
|
||||
chamfer_steps="1"
|
||||
flexible="false"
|
||||
use_knot_distance="true"
|
||||
apply_no_radius="true"
|
||||
apply_with_radius="true"
|
||||
only_selected="false"
|
||||
hide_knots="false" /></defs><sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1051"
|
||||
id="namedview15"
|
||||
showgrid="true"
|
||||
inkscape:pagecheckerboard="true"
|
||||
inkscape:zoom="16"
|
||||
inkscape:cx="3.3863933"
|
||||
inkscape:cy="11.266322"
|
||||
inkscape:window-x="-9"
|
||||
inkscape:window-y="-9"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="g851"><inkscape:grid
|
||||
empspacing="4"
|
||||
type="xygrid"
|
||||
id="grid844" /></sodipodi:namedview>
|
||||
<style
|
||||
type="text/css"
|
||||
id="style2">
|
||||
.st0{fill:#010101;}
|
||||
</style>
|
||||
|
||||
|
||||
|
||||
|
||||
<g
|
||||
id="g851"
|
||||
transform="matrix(0.19104308,0,0,0.19104308,4.5447848,4.0447847)"
|
||||
inkscape:label="left"><path
|
||||
id="path4"
|
||||
style="fill:#ffffff;fill-opacity:1;stroke-width:1"
|
||||
d="M 86.133532,20.703264 44.25816,62.578636 86.133532,104.45401 97.829193,92.758348 78.169444,73.047479 H 122.77448 V 52.109793 H 78.169444 L 97.829193,32.409149 Z"
|
||||
sodipodi:nodetypes="cccccccccc" /><path
|
||||
id="rect10"
|
||||
style="fill:#ffffff;fill-opacity:1;stroke-width:1"
|
||||
d="M -2.8516339,-0.23442263 V 125.39169 H 49.492582 V 104.45401 H 18.086053 V 20.703264 H 49.492582 V -0.23442263 Z"
|
||||
sodipodi:nodetypes="ccccccccc"
|
||||
inkscape:path-effect="#path-effect991"
|
||||
inkscape:original-d="M -2.8516339,-0.23442263 V 125.39169 H 49.492582 V 104.45401 H 18.086053 V 20.703264 H 49.492582 V -0.23442263 Z" /></g>
|
||||
<style
|
||||
type="text/css"
|
||||
id="style962">
|
||||
.st0{fill:#010101;}
|
||||
</style></svg>
|
||||
|
After Width: | Height: | Size: 3.2 KiB |
BIN
Resources/Textures/Interface/VerbIcons/close.svg.96dpi.png
Normal file
|
After Width: | Height: | Size: 303 B |
81
Resources/Textures/Interface/VerbIcons/delete.svg
Normal file
@@ -0,0 +1,81 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<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"
|
||||
viewBox="0 0 32 32"
|
||||
version="1.1"
|
||||
id="svg6"
|
||||
sodipodi:docname="delete.svg"
|
||||
width="32"
|
||||
height="32"
|
||||
inkscape:version="1.0.1 (3bc2e813f5, 2020-09-07)">
|
||||
<metadata
|
||||
id="metadata12">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title></dc:title>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<defs
|
||||
id="defs10" />
|
||||
<sodipodi:namedview
|
||||
pagecolor="#1d1d1d"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0.28627451"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1051"
|
||||
id="namedview8"
|
||||
showgrid="true"
|
||||
inkscape:pagecheckerboard="false"
|
||||
showguides="true"
|
||||
inkscape:guide-bbox="true"
|
||||
inkscape:zoom="22.627417"
|
||||
inkscape:cx="15.029827"
|
||||
inkscape:cy="14.811786"
|
||||
inkscape:window-x="-9"
|
||||
inkscape:window-y="-9"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="svg6">
|
||||
<inkscape:grid
|
||||
type="xygrid"
|
||||
id="grid837"
|
||||
empspacing="4" />
|
||||
<sodipodi:guide
|
||||
position="24.91123,3.1839064"
|
||||
orientation="-0.99756278,0.069774599"
|
||||
id="guide848" />
|
||||
<sodipodi:guide
|
||||
position="6.8635256,3.1839064"
|
||||
orientation="-0.99830447,-0.058208125"
|
||||
id="guide850" />
|
||||
</sodipodi:namedview>
|
||||
<g
|
||||
id="g846"
|
||||
transform="translate(0.99999985,0.4620656)"
|
||||
style="fill:#ffffff;fill-opacity:1">
|
||||
<path
|
||||
id="path2"
|
||||
style="fill:#ffffff;fill-opacity:1;stroke-width:0.225696"
|
||||
d="M 11.875975,2.7218408 11.26413,4.2466048 H 3.8056135 L 3.3542233,7.7523717 H 26.645777 L 26.194387,4.2466048 H 18.73587 l -0.611845,-1.524764 z" />
|
||||
<path
|
||||
style="fill:#ffffff;fill-opacity:1;stroke-width:0.225696"
|
||||
d="M 20.609312,9 V 25.675027 H 18.976634 V 9 H 15.704055 V 25.675027 H 14.071152 V 9 H 10.573781 V 25.675027 H 8.9413298 V 9 H 4.7350507 L 5.8742488,28.537934 H 23.898367 L 25.264949,9 Z"
|
||||
id="path841"
|
||||
sodipodi:nodetypes="ccccccccccccccccc" />
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.6 KiB |
BIN
Resources/Textures/Interface/VerbIcons/delete.svg.96dpi.png
Normal file
|
After Width: | Height: | Size: 710 B |
82
Resources/Textures/Interface/VerbIcons/eject.svg
Normal file
@@ -0,0 +1,82 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<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 8.5333333 6.4"
|
||||
xml:space="preserve"
|
||||
sodipodi:docname="eject.svg"
|
||||
width="32"
|
||||
height="32"
|
||||
inkscape:version="1.0.1 (3bc2e813f5, 2020-09-07)"
|
||||
inkscape:export-filename="C:\Users\Pieter-Jan Briers\Projects\space-station-14\Resources\Textures\Interface\VerbIcons\eject.svg.96dpi.png"
|
||||
inkscape:export-xdpi="96"
|
||||
inkscape:export-ydpi="96"><metadata
|
||||
id="metadata17"><rdf:RDF><cc:Work
|
||||
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs
|
||||
id="defs15"><inkscape:path-effect
|
||||
effect="fillet_chamfer"
|
||||
id="path-effect991"
|
||||
is_visible="true"
|
||||
lpeversion="1"
|
||||
satellites_param="F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1"
|
||||
unit="px"
|
||||
method="auto"
|
||||
mode="F"
|
||||
radius="1"
|
||||
chamfer_steps="1"
|
||||
flexible="false"
|
||||
use_knot_distance="true"
|
||||
apply_no_radius="true"
|
||||
apply_with_radius="true"
|
||||
only_selected="false"
|
||||
hide_knots="false" /></defs><sodipodi:namedview
|
||||
pagecolor="#000000"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1051"
|
||||
id="namedview13"
|
||||
showgrid="true"
|
||||
inkscape:pagecheckerboard="false"
|
||||
viewbox-width="32"
|
||||
inkscape:zoom="20.741799"
|
||||
inkscape:cx="14.790334"
|
||||
inkscape:cy="14.296274"
|
||||
inkscape:window-x="-9"
|
||||
inkscape:window-y="-9"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="Layer_1"><inkscape:grid
|
||||
type="xygrid"
|
||||
id="grid842"
|
||||
empspacing="4" /></sodipodi:namedview>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<path
|
||||
id="path4"
|
||||
style="fill:#ffffff;fill-opacity:1;stroke-width:0.0509448"
|
||||
d="M 2.1333327,4.266666 4.2666657,6.4 6.3999997,4.266666 5.8041657,3.670833 4.7999997,4.672395 V 2.4 H 3.7333327 V 4.672395 L 2.7296867,3.670833 Z"
|
||||
sodipodi:nodetypes="cccccccccc" /><path
|
||||
id="rect10"
|
||||
style="fill:#ffffff;fill-opacity:1;stroke-width:0.0509448"
|
||||
d="m 7.4666667,0 h -6.4 v 2.666667 h 1.066666 v -1.6 h 4.266667 v 1.6 h 1.066667 z"
|
||||
sodipodi:nodetypes="ccccccccc"
|
||||
inkscape:path-effect="#path-effect991"
|
||||
inkscape:original-d="m 7.4666667,0 h -6.4 v 2.666667 h 1.066666 v -1.6 h 4.266667 v 1.6 h 1.066667 z" /></svg>
|
||||
|
After Width: | Height: | Size: 2.9 KiB |
BIN
Resources/Textures/Interface/VerbIcons/eject.svg.96dpi.png
Normal file
|
After Width: | Height: | Size: 312 B |
63
Resources/Textures/Interface/VerbIcons/examine.svg
Normal file
@@ -0,0 +1,63 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<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"
|
||||
viewBox="0 0 32 32"
|
||||
version="1.1"
|
||||
id="svg4"
|
||||
sodipodi:docname="examine.svg"
|
||||
width="32"
|
||||
height="32"
|
||||
inkscape:version="1.0.1 (3bc2e813f5, 2020-09-07)"
|
||||
inkscape:export-filename="C:\Users\Pieter-Jan Briers\Projects\space-station-14\Resources\Textures\Interface\VerbIcons\examine.svg.96dpi.png"
|
||||
inkscape:export-xdpi="96"
|
||||
inkscape:export-ydpi="96">
|
||||
<metadata
|
||||
id="metadata10">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title></dc:title>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<defs
|
||||
id="defs8" />
|
||||
<sodipodi:namedview
|
||||
pagecolor="#2e2e2e"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1051"
|
||||
id="namedview6"
|
||||
showgrid="true"
|
||||
inkscape:zoom="19.445437"
|
||||
inkscape:cx="22.213239"
|
||||
inkscape:cy="19.801013"
|
||||
inkscape:window-x="-9"
|
||||
inkscape:window-y="-9"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="svg4">
|
||||
<inkscape:grid
|
||||
type="xygrid"
|
||||
id="grid835"
|
||||
empspacing="4" />
|
||||
</sodipodi:namedview>
|
||||
<path
|
||||
d="M 5.0000002,24.068685 10.89944,18.167521 a 8.6771045,8.675592 0 1 1 7.416281,4.183661 8.6165405,8.615039 0 0 1 -4.487208,-1.25785 L 7.9235679,27 Z M 23.683854,13.681095 a 5.379144,5.3782064 0 0 0 -5.368133,-5.3671975 5.3763911,5.375454 0 0 0 -5.368132,5.3671975 5.3681327,5.367197 0 0 0 10.736265,0 z"
|
||||
id="path2"
|
||||
style="stroke-width:2.75265;fill:#ffffff;fill-opacity:1" />
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.1 KiB |
BIN
Resources/Textures/Interface/VerbIcons/examine.svg.96dpi.png
Normal file
|
After Width: | Height: | Size: 498 B |
93
Resources/Textures/Interface/VerbIcons/in.svg
Normal file
@@ -0,0 +1,93 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<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"
|
||||
viewBox="0 0 32 32"
|
||||
version="1.1"
|
||||
id="svg10"
|
||||
sodipodi:docname="in.svg"
|
||||
width="32"
|
||||
height="32"
|
||||
inkscape:version="1.0.1 (3bc2e813f5, 2020-09-07)"
|
||||
inkscape:export-filename="C:\Users\Pieter-Jan Briers\Projects\space-station-14\Resources\Textures\Interface\VerbIcons\in.svg.96dpi.png"
|
||||
inkscape:export-xdpi="96"
|
||||
inkscape:export-ydpi="96">
|
||||
<metadata
|
||||
id="metadata16">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title></dc:title>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<defs
|
||||
id="defs14">
|
||||
<inkscape:path-effect
|
||||
effect="fillet_chamfer"
|
||||
id="path-effect991"
|
||||
is_visible="true"
|
||||
lpeversion="1"
|
||||
satellites_param="F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1"
|
||||
unit="px"
|
||||
method="auto"
|
||||
mode="F"
|
||||
radius="1"
|
||||
chamfer_steps="1"
|
||||
flexible="false"
|
||||
use_knot_distance="true"
|
||||
apply_no_radius="true"
|
||||
apply_with_radius="true"
|
||||
only_selected="false"
|
||||
hide_knots="false" />
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
pagecolor="#000000"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="1"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1051"
|
||||
id="namedview12"
|
||||
showgrid="true"
|
||||
inkscape:zoom="20.741799"
|
||||
inkscape:cx="17.912676"
|
||||
inkscape:cy="18.995037"
|
||||
inkscape:window-x="-9"
|
||||
inkscape:window-y="-9"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="g859">
|
||||
<inkscape:grid
|
||||
type="xygrid"
|
||||
id="grid841"
|
||||
empspacing="4" />
|
||||
</sodipodi:namedview>
|
||||
<g
|
||||
id="g859"
|
||||
transform="rotate(180,18,16)">
|
||||
<path
|
||||
id="path4"
|
||||
style="fill:#ffffff;fill-opacity:1;stroke-width:0.191043"
|
||||
d="m 28.071396,20.975328 -7.999998,-8.000003 -8.000003,8.000003 2.234378,2.234373 3.765622,-3.755857 0,8.521481 4.000001,0 0,-8.521481 3.763673,3.755857 z"
|
||||
sodipodi:nodetypes="cccccccccc" />
|
||||
<path
|
||||
id="rect10"
|
||||
style="fill:#ffffff;fill-opacity:1;stroke-width:0.191043"
|
||||
d="M 32,4 H 8.0000001 V 14.000001 H 11.999998 V 8.0000012 H 27.999999 V 14.000001 H 32 Z"
|
||||
sodipodi:nodetypes="ccccccccc"
|
||||
inkscape:path-effect="#path-effect991"
|
||||
inkscape:original-d="M 32,4 H 8.0000001 V 14.000001 H 11.999998 V 8.0000012 H 27.999999 V 14.000001 H 32 Z" />
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 3.0 KiB |
BIN
Resources/Textures/Interface/VerbIcons/in.svg.96dpi.png
Normal file
|
After Width: | Height: | Size: 404 B |
93
Resources/Textures/Interface/VerbIcons/insert.svg
Normal file
@@ -0,0 +1,93 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<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"
|
||||
viewBox="0 0 32 32"
|
||||
version="1.1"
|
||||
id="svg10"
|
||||
sodipodi:docname="insert.svg"
|
||||
width="32"
|
||||
height="32"
|
||||
inkscape:version="1.0.1 (3bc2e813f5, 2020-09-07)"
|
||||
inkscape:export-filename="C:\Users\Pieter-Jan Briers\Projects\space-station-14\Resources\Textures\Interface\VerbIcons\insert.svg.96dpi.png"
|
||||
inkscape:export-xdpi="96"
|
||||
inkscape:export-ydpi="96">
|
||||
<metadata
|
||||
id="metadata16">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title></dc:title>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<defs
|
||||
id="defs14">
|
||||
<inkscape:path-effect
|
||||
effect="fillet_chamfer"
|
||||
id="path-effect991"
|
||||
is_visible="true"
|
||||
lpeversion="1"
|
||||
satellites_param="F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1"
|
||||
unit="px"
|
||||
method="auto"
|
||||
mode="F"
|
||||
radius="1"
|
||||
chamfer_steps="1"
|
||||
flexible="false"
|
||||
use_knot_distance="true"
|
||||
apply_no_radius="true"
|
||||
apply_with_radius="true"
|
||||
only_selected="false"
|
||||
hide_knots="false" />
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
pagecolor="#000000"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="1"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1051"
|
||||
id="namedview12"
|
||||
showgrid="true"
|
||||
inkscape:zoom="20.741799"
|
||||
inkscape:cx="17.912676"
|
||||
inkscape:cy="18.995037"
|
||||
inkscape:window-x="-9"
|
||||
inkscape:window-y="-9"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="g859">
|
||||
<inkscape:grid
|
||||
type="xygrid"
|
||||
id="grid841"
|
||||
empspacing="4" />
|
||||
</sodipodi:namedview>
|
||||
<g
|
||||
id="g859"
|
||||
transform="rotate(180,18,16)">
|
||||
<path
|
||||
id="path4"
|
||||
style="fill:#ffffff;fill-opacity:1;stroke-width:0.191043"
|
||||
d="M 11.928604,10.999997 19.928602,19 27.928605,10.999997 25.694227,8.765624 21.928605,12.521481 V 4 h -4.000001 v 8.521481 L 14.164931,8.765624 Z"
|
||||
sodipodi:nodetypes="cccccccccc" />
|
||||
<path
|
||||
id="rect10"
|
||||
style="fill:#ffffff;fill-opacity:1;stroke-width:0.191043"
|
||||
d="M 8.0000001,27.975325 H 32 V 17.975324 h -3.999998 v 6 H 12.000001 v -6 H 8.0000001 Z"
|
||||
sodipodi:nodetypes="ccccccccc"
|
||||
inkscape:path-effect="#path-effect991"
|
||||
inkscape:original-d="M 8.0000001,27.975325 H 32 V 17.975324 h -3.999998 v 6 H 12.000001 v -6 H 8.0000001 Z" />
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 3.0 KiB |
BIN
Resources/Textures/Interface/VerbIcons/insert.svg.96dpi.png
Normal file
|
After Width: | Height: | Size: 429 B |
96
Resources/Textures/Interface/VerbIcons/light.svg
Normal file
@@ -0,0 +1,96 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<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"
|
||||
viewBox="0 0 32 32"
|
||||
version="1.1"
|
||||
id="svg6"
|
||||
sodipodi:docname="light.svg"
|
||||
width="32"
|
||||
height="32"
|
||||
inkscape:export-filename="C:\Users\Pieter-Jan Briers\Projects\space-station-14\Resources\Textures\Interface\VerbIcons\light.svg.96dpi.png"
|
||||
inkscape:export-xdpi="96"
|
||||
inkscape:export-ydpi="96"
|
||||
inkscape:version="1.0.1 (3bc2e813f5, 2020-09-07)">
|
||||
<metadata
|
||||
id="metadata12">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title></dc:title>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<defs
|
||||
id="defs10">
|
||||
<inkscape:path-effect
|
||||
effect="copy_rotate"
|
||||
starting_point="0,0"
|
||||
origin="16,16"
|
||||
id="path-effect863"
|
||||
is_visible="true"
|
||||
lpeversion="1"
|
||||
method="normal"
|
||||
num_copies="8"
|
||||
starting_angle="0"
|
||||
rotation_angle="60"
|
||||
gap="-0.01"
|
||||
copies_to_360="true"
|
||||
mirror_copies="false"
|
||||
split_items="false" />
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
pagecolor="#464646"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1051"
|
||||
id="namedview8"
|
||||
showgrid="true"
|
||||
inkscape:zoom="45.254834"
|
||||
inkscape:cx="16.029967"
|
||||
inkscape:cy="17.928813"
|
||||
inkscape:window-x="-9"
|
||||
inkscape:window-y="-9"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="g841">
|
||||
<inkscape:grid
|
||||
type="xygrid"
|
||||
id="grid837"
|
||||
empspacing="4"
|
||||
empcolor="#49ff3f"
|
||||
empopacity="0.25098039" />
|
||||
</sodipodi:namedview>
|
||||
<g
|
||||
id="g841"
|
||||
transform="matrix(0.69624803,0,0,0.69625965,4.8600315,4.8598456)">
|
||||
<ellipse
|
||||
fill="#010101"
|
||||
id="circle4"
|
||||
style="fill:#ffffff;fill-opacity:1;stroke-width:0.263765"
|
||||
cy="16"
|
||||
cx="16"
|
||||
rx="8.6176186"
|
||||
ry="8.6174746" />
|
||||
<path
|
||||
style="fill:#ffffff;fill-opacity:1;stroke-width:0.263765"
|
||||
d="m 17.43627,27.489966 v 4.308738 h -2.87254 v -4.308738 z m 7.703959,-4.380929 3.046738,3.046737 -2.031193,2.031193 -3.046737,-3.046738 z m 2.349737,-8.545307 h 4.308738 v 2.87254 H 27.489966 Z M 23.109037,6.8597709 26.155774,3.813033 28.186967,5.8442255 25.140229,8.8909634 Z M 14.56373,4.510034 V 0.201296 h 2.87254 V 4.510034 Z M 6.8597709,8.8909634 3.813033,5.8442255 5.8442255,3.813033 8.8909634,6.8597709 Z M 4.510034,17.43627 H 0.201296 V 14.56373 H 4.510034 Z M 8.8909634,25.140229 5.8442255,28.186967 3.813033,26.155774 6.8597709,23.109037 Z"
|
||||
id="path855"
|
||||
inkscape:path-effect="#path-effect863"
|
||||
inkscape:original-d="m 17.43627,27.489966 v 4.308738 h -2.87254 v -4.308738 z"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 3.3 KiB |
BIN
Resources/Textures/Interface/VerbIcons/light.svg.96dpi.png
Normal file
|
After Width: | Height: | Size: 407 B |
94
Resources/Textures/Interface/VerbIcons/open.svg
Normal file
@@ -0,0 +1,94 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<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 32 32"
|
||||
xml:space="preserve"
|
||||
sodipodi:docname="open.svg"
|
||||
width="32"
|
||||
height="32"
|
||||
inkscape:version="1.0.1 (3bc2e813f5, 2020-09-07)"
|
||||
inkscape:export-filename="C:\Users\Pieter-Jan Briers\Projects\space-station-14\Resources\Textures\Interface\VerbIcons\open.svg.96dpi.png"
|
||||
inkscape:export-xdpi="96"
|
||||
inkscape:export-ydpi="96"><metadata
|
||||
id="metadata19"><rdf:RDF><cc:Work
|
||||
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs
|
||||
id="defs17"><inkscape:path-effect
|
||||
effect="fillet_chamfer"
|
||||
id="path-effect991"
|
||||
is_visible="true"
|
||||
lpeversion="1"
|
||||
satellites_param="F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1"
|
||||
unit="px"
|
||||
method="auto"
|
||||
mode="F"
|
||||
radius="1"
|
||||
chamfer_steps="1"
|
||||
flexible="false"
|
||||
use_knot_distance="true"
|
||||
apply_no_radius="true"
|
||||
apply_with_radius="true"
|
||||
only_selected="false"
|
||||
hide_knots="false" /></defs><sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1051"
|
||||
id="namedview15"
|
||||
showgrid="true"
|
||||
inkscape:pagecheckerboard="true"
|
||||
inkscape:zoom="22.627417"
|
||||
inkscape:cx="14.004212"
|
||||
inkscape:cy="17.557422"
|
||||
inkscape:window-x="-9"
|
||||
inkscape:window-y="-9"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="g851"
|
||||
inkscape:document-rotation="0"><inkscape:grid
|
||||
empspacing="4"
|
||||
type="xygrid"
|
||||
id="grid844" /></sodipodi:namedview>
|
||||
<style
|
||||
type="text/css"
|
||||
id="style2">
|
||||
.st0{fill:#010101;}
|
||||
</style>
|
||||
|
||||
|
||||
|
||||
|
||||
<g
|
||||
id="g851"
|
||||
transform="matrix(0.19104308,0,0,0.19104308,4.5447848,4.0447847)"
|
||||
inkscape:label="left"><path
|
||||
id="path4"
|
||||
style="fill:#ffffff;fill-opacity:1;stroke-width:1"
|
||||
d="M 80.899108,104.45401 122.77448,62.578638 80.899108,20.703264 69.203447,32.398926 88.863196,52.109795 H 44.25816 V 73.047481 H 88.863196 L 69.203447,92.748125 Z"
|
||||
sodipodi:nodetypes="cccccccccc" /><path
|
||||
id="rect10"
|
||||
style="fill:#ffffff;fill-opacity:1;stroke-width:1"
|
||||
d="M -2.8516339,-0.23442263 V 125.39169 H 49.492582 V 104.45401 H 18.086053 V 20.703264 H 49.492582 V -0.23442263 Z"
|
||||
sodipodi:nodetypes="ccccccccc"
|
||||
inkscape:path-effect="#path-effect991"
|
||||
inkscape:original-d="M -2.8516339,-0.23442263 V 125.39169 H 49.492582 V 104.45401 H 18.086053 V 20.703264 H 49.492582 V -0.23442263 Z" /></g>
|
||||
<style
|
||||
type="text/css"
|
||||
id="style962">
|
||||
.st0{fill:#010101;}
|
||||
</style></svg>
|
||||
|
After Width: | Height: | Size: 3.2 KiB |
BIN
Resources/Textures/Interface/VerbIcons/open.svg.96dpi.png
Normal file
|
After Width: | Height: | Size: 305 B |
63
Resources/Textures/Interface/VerbIcons/outfit.svg
Normal file
@@ -0,0 +1,63 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<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"
|
||||
viewBox="0 0 32 32"
|
||||
id="svg4"
|
||||
sodipodi:docname="outfit.svg"
|
||||
width="32"
|
||||
height="32"
|
||||
inkscape:version="1.0.1 (3bc2e813f5, 2020-09-07)"
|
||||
inkscape:export-filename="C:\Users\Pieter-Jan Briers\Projects\space-station-14\Resources\Textures\Interface\VerbIcons\outfit.svg.96dpi.png"
|
||||
inkscape:export-xdpi="96"
|
||||
inkscape:export-ydpi="96">
|
||||
<metadata
|
||||
id="metadata10">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title></dc:title>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<defs
|
||||
id="defs8" />
|
||||
<sodipodi:namedview
|
||||
pagecolor="#535353"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1051"
|
||||
id="namedview6"
|
||||
showgrid="true"
|
||||
inkscape:zoom="24.634679"
|
||||
inkscape:cx="15.960557"
|
||||
inkscape:cy="17.972297"
|
||||
inkscape:window-x="-9"
|
||||
inkscape:window-y="-9"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="svg4">
|
||||
<inkscape:grid
|
||||
type="xygrid"
|
||||
id="grid835"
|
||||
empspacing="4" />
|
||||
</sodipodi:namedview>
|
||||
<path
|
||||
d="M 26.943304,20.289449 16.830858,14.320394 v -1.016525 c 0,-1.152142 -1.257275,-1.652844 -1.257275,-1.652844 -0.8137,-0.396049 -0.741691,-1.251514 -0.741691,-1.251514 0,-1.003804 0.897711,-1.325924 1.29856,-1.325924 0.672083,0 1.332164,0.373246 1.401773,1.226551 0.109213,1.339366 1.62572,0.998524 1.62572,-0.07681 0.0019,-1.015325 -0.924594,-2.797785 -3.038534,-2.797785 -2.284362,0 -2.941083,2.233956 -2.941083,2.940363 0,0.532865 0.08401,1.024926 0.412851,1.586595 0.559269,0.954358 1.677087,1.104136 1.677087,1.735894 v 0.632238 L 5.0533273,20.311772 c -1.008124,0.595273 -1.189587,1.861189 -0.97092,2.629283 0.212426,0.745052 0.960119,1.633402 2.305244,1.633402 H 25.484404 c 1.504986,0 2.19195,-0.863627 2.405097,-1.609159 0.216026,-0.765694 0.216026,-1.956241 -0.948117,-2.673929 z M 25.509848,22.89857 H 6.4174153 c -0.621677,0.024 -1.005724,-0.846344 -0.391248,-1.230391 l 9.9605067,-5.815196 9.906981,5.789512 c 0.614956,0.435174 0.281555,1.253675 -0.384047,1.255355 z"
|
||||
id="path2"
|
||||
style="fill:#fdfdfd;fill-opacity:1;stroke-width:0.24003" />
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.8 KiB |
BIN
Resources/Textures/Interface/VerbIcons/outfit.svg.96dpi.png
Normal file
|
After Width: | Height: | Size: 558 B |
63
Resources/Textures/Interface/VerbIcons/point.svg
Normal file
@@ -0,0 +1,63 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<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"
|
||||
viewBox="0 0 32 32"
|
||||
version="1.1"
|
||||
id="svg4"
|
||||
sodipodi:docname="point.svg"
|
||||
width="32"
|
||||
height="32"
|
||||
inkscape:version="1.0.1 (3bc2e813f5, 2020-09-07)"
|
||||
inkscape:export-filename="C:\Users\Pieter-Jan Briers\Projects\space-station-14\Resources\Textures\Interface\VerbIcons\point.svg.96dpi.png"
|
||||
inkscape:export-xdpi="96"
|
||||
inkscape:export-ydpi="96">
|
||||
<metadata
|
||||
id="metadata10">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title></dc:title>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<defs
|
||||
id="defs8" />
|
||||
<sodipodi:namedview
|
||||
pagecolor="#5e5e5e"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1051"
|
||||
id="namedview6"
|
||||
showgrid="true"
|
||||
inkscape:zoom="14.666667"
|
||||
inkscape:cx="12.86923"
|
||||
inkscape:cy="14.546734"
|
||||
inkscape:window-x="-9"
|
||||
inkscape:window-y="-9"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="svg4">
|
||||
<inkscape:grid
|
||||
type="xygrid"
|
||||
id="grid835"
|
||||
empspacing="4" />
|
||||
</sodipodi:namedview>
|
||||
<path
|
||||
d="M 4,15.124108 28,4 16.867089,28 15.926776,16.074025 Z"
|
||||
id="path2"
|
||||
style="fill:#ffffff;fill-opacity:1;stroke-width:0.200067" />
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.9 KiB |
BIN
Resources/Textures/Interface/VerbIcons/point.svg.96dpi.png
Normal file
|
After Width: | Height: | Size: 447 B |
73
Resources/Textures/Interface/VerbIcons/refresh.svg
Normal file
@@ -0,0 +1,73 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<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"
|
||||
viewBox="0 0 32 32"
|
||||
version="1.1"
|
||||
id="svg8"
|
||||
sodipodi:docname="refresh.svg"
|
||||
width="32"
|
||||
height="32"
|
||||
inkscape:version="1.0.1 (3bc2e813f5, 2020-09-07)"
|
||||
inkscape:export-filename="C:\Users\Pieter-Jan Briers\Projects\space-station-14\Resources\Textures\Interface\VerbIcons\refresh.svg.96dpi.png"
|
||||
inkscape:export-xdpi="96"
|
||||
inkscape:export-ydpi="96">
|
||||
<metadata
|
||||
id="metadata14">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title></dc:title>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<defs
|
||||
id="defs12" />
|
||||
<sodipodi:namedview
|
||||
pagecolor="#515151"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1051"
|
||||
id="namedview10"
|
||||
showgrid="true"
|
||||
inkscape:zoom="11.313708"
|
||||
inkscape:cx="23.694746"
|
||||
inkscape:cy="15.521133"
|
||||
inkscape:window-x="-9"
|
||||
inkscape:window-y="-9"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="svg8">
|
||||
<inkscape:grid
|
||||
type="xygrid"
|
||||
id="grid844"
|
||||
empspacing="4" />
|
||||
</sodipodi:namedview>
|
||||
<g
|
||||
id="g842"
|
||||
style="fill:#ffffff;fill-opacity:1"
|
||||
transform="matrix(0.20601895,0,0,0.20600858,3.2777263,4.0000002)">
|
||||
<path
|
||||
id="path2"
|
||||
d="m 60.005859,3.5 c -31.204,0 -56.4999996,25.296 -56.4999996,56.5 0,31.203 25.2959996,56.5 56.4999996,56.5 16.264,0 30.90875,-6.88286 41.218751,-17.880859 L 85.894531,84.255859 C 79.421531,91.168859 70.217625,95.5 60.015625,95.5 H 60 C 40.425,95.5 24.5,79.574 24.5,60 24.5,40.425 40.425,24.5 60,24.5 c 13.571989,0 25.38017,7.661742 31.351562,18.882812 L 74.826172,55.8125 119.99023,68.841797 120,21.832031 108.27344,30.652344 C 98.359656,14.375179 80.45857,3.5 60.005859,3.5 Z"
|
||||
style="fill:#ffffff;fill-opacity:1" />
|
||||
<path
|
||||
d="M 120,0 V 45.336 M 91.418,43.5 h 22.622"
|
||||
fill="none"
|
||||
id="path4"
|
||||
style="fill:#ffffff;fill-opacity:1" />
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.6 KiB |
BIN
Resources/Textures/Interface/VerbIcons/refresh.svg.96dpi.png
Normal file
|
After Width: | Height: | Size: 610 B |
72
Resources/Textures/Interface/VerbIcons/rejuvenate.svg
Normal file
@@ -0,0 +1,72 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<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"
|
||||
viewBox="0 0 32 32"
|
||||
id="svg6"
|
||||
sodipodi:docname="rejuvenate.svg"
|
||||
width="32"
|
||||
height="32"
|
||||
inkscape:version="1.0.1 (3bc2e813f5, 2020-09-07)"
|
||||
inkscape:export-filename="C:\Users\Pieter-Jan Briers\Projects\space-station-14\Resources\Textures\Interface\VerbIcons\rejuvenate.svg.96dpi.png"
|
||||
inkscape:export-xdpi="96"
|
||||
inkscape:export-ydpi="96">
|
||||
<metadata
|
||||
id="metadata12">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title></dc:title>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<defs
|
||||
id="defs10" />
|
||||
<sodipodi:namedview
|
||||
pagecolor="#6b6b6b"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1051"
|
||||
id="namedview8"
|
||||
showgrid="true"
|
||||
inkscape:zoom="17.610214"
|
||||
inkscape:cx="13.809962"
|
||||
inkscape:cy="17.415455"
|
||||
inkscape:window-x="-9"
|
||||
inkscape:window-y="-9"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="svg6">
|
||||
<inkscape:grid
|
||||
type="xygrid"
|
||||
id="grid837"
|
||||
empspacing="4" />
|
||||
</sodipodi:namedview>
|
||||
<g
|
||||
id="g841"
|
||||
transform="matrix(0.24002638,0,0,0.24002638,3.9999998,4.0060018)"
|
||||
style="fill:#ffffff;fill-opacity:1">
|
||||
<path
|
||||
d="m 7.094,53.56 h 8.896 c 0.676,0 1.3,0.337 1.672,0.89 0,0 1.696,2.56 3.388,5.102 0.938,-8.32 4.207,-37.396 4.207,-37.396 a 2.01,2.01 0 0 1 1.876,-1.773 c 0.97,-0.06 1.84,0.588 2.065,1.533 0,0 4.26,17.864 6.277,26.303 l 2.668,-7.56 a 2.01,2.01 0 0 1 1.88,-1.34 c 0.84,-0.004 1.6,0.52 1.89,1.314 0,0 3.957,10.75 4.75,12.914 h 7.722 c 0.674,0 1.3,0.337 1.672,0.89 0,0 1.696,2.56 3.387,5.102 0.94,-8.32 4.208,-37.396 4.208,-37.396 a 2.005,2.005 0 0 1 3.942,-0.24 c 0,0 4.257,17.858 6.273,26.305 1.326,-3.75 2.672,-7.55 2.672,-7.55 a 2,2 0 0 1 3.76,-0.024 c 0,0 3.96,10.747 4.75,12.913 h 7.89 l 0.42,-0.8 c 3.83,-6.595 6.63,-18.808 6.63,-27.7 C 100,13.707 91.74,0 75.64,0 52.648,0 49.69,21.544 49.69,21.544 c 0,0 -2.85,-21.44 -25.83,-21.44 C 8.33,0.104 0,13.314 0,25.057 c 0,10.14 4.44,22.657 6.715,27.8 l 0.38,0.703 z"
|
||||
id="path2"
|
||||
style="fill:#ffffff;fill-opacity:1" />
|
||||
<path
|
||||
d="m 83.658,57.57 a 2.005,2.005 0 0 1 -1.88,-1.313 c 0,0 -1.778,-4.823 -3.318,-9.01 -1.438,4.086 -3.07,8.714 -3.07,8.714 a 1.99,1.99 0 0 1 -1.995,1.33 1.988,1.988 0 0 1 -1.844,-1.53 L 66.36,34 62.82,65.475 a 2.005,2.005 0 0 1 -1.52,1.72 2,2 0 0 1 -2.14,-0.835 c 0,0 -4.86,-7.315 -5.844,-8.784 H 45.27 c -0.84,0 -1.59,-0.53 -1.878,-1.313 l -3.315,-9.01 -3.08,8.715 A 1.99,1.99 0 0 1 35,57.29 2,2 0 0 1 33.15,55.755 c 0,0 -2.86,-12.007 -5.185,-21.747 -1.383,12.277 -3.54,31.46 -3.54,31.46 a 2.008,2.008 0 0 1 -3.664,0.885 c 0,0 -4.86,-7.315 -5.84,-8.784 H 9.27 c 14.38,25.54 40.424,42.37 40.424,42.37 0,0 26.516,-16.829 41.122,-42.369 z"
|
||||
id="path4"
|
||||
style="fill:#ffffff;fill-opacity:1" />
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 3.5 KiB |
BIN
Resources/Textures/Interface/VerbIcons/rejuvenate.svg.96dpi.png
Normal file
|
After Width: | Height: | Size: 719 B |
67
Resources/Textures/Interface/VerbIcons/sentient.svg
Normal file
@@ -0,0 +1,67 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<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 32 32"
|
||||
xml:space="preserve"
|
||||
sodipodi:docname="sentient.svg"
|
||||
width="32"
|
||||
height="32"
|
||||
inkscape:version="1.0.1 (3bc2e813f5, 2020-09-07)"
|
||||
inkscape:export-filename="C:\Users\Pieter-Jan Briers\Projects\space-station-14\Resources\Textures\Interface\VerbIcons\sentient.svg.96dpi.png"
|
||||
inkscape:export-xdpi="96"
|
||||
inkscape:export-ydpi="96"><metadata
|
||||
id="metadata13"><rdf:RDF><cc:Work
|
||||
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs
|
||||
id="defs11" /><sodipodi:namedview
|
||||
pagecolor="#404040"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1051"
|
||||
id="namedview9"
|
||||
showgrid="true"
|
||||
inkscape:zoom="24.890159"
|
||||
inkscape:cx="14.062729"
|
||||
inkscape:cy="17.916991"
|
||||
inkscape:window-x="-9"
|
||||
inkscape:window-y="-9"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="Layer_1"><inkscape:grid
|
||||
type="xygrid"
|
||||
id="grid843"
|
||||
empspacing="4" /></sodipodi:namedview>
|
||||
|
||||
|
||||
<g
|
||||
id="g841"
|
||||
style="fill:#ffffff;fill-opacity:1"
|
||||
transform="matrix(0.23781213,0,0,0.23781213,5.9999999,4.1093935)"><path
|
||||
d="m 58.2,24.5 c -2.2,0 -4,1.8 -4,4 0,0 0,0 0,0 0,2.2 1.8,4 4,4 2.2,0 4,-1.8 4,-4 0,0 0,0 0,0 0,-2.2 -1.8,-4 -4,-4 0,0 0,0 0,0 z m -0.9,32.8 c 0,2.2 1.8,4 4,4 2.2,0 4,-1.8 4,-4 0,-2.2 -1.8,-4 -4,-4 0,0 0,0 0,0 -2.2,0 -4,1.8 -4,4 z M 28,20.1 c -2.2,0 -4,1.9 -3.9,4.1 0,2.2 1.8,3.9 3.9,3.9 2.2,0 4,-1.8 4,-4 0,0 0,0 0,0 0.1,-2.2 -1.7,-4 -4,-4 0.1,0 0,0 0,0 z"
|
||||
id="path2"
|
||||
style="fill:#ffffff;fill-opacity:1" /><path
|
||||
d="M 46.1,0 C 28.9,0 13,12.9 9.7,27.2 9,30.3 8.2,38.6 8.2,38.6 l -7.9,20 C 0.1,58.9 0,59.3 0,59.8 c 0,1.7 1.4,3.1 3.1,3.1 h 5.1 v 10.6 c 0,8.3 6.7,15 15,15 h 5.9 V 100 H 69.6 V 67.8 C 78.4,60.9 84.1,50.1 84.1,38 84,17 67.1,0 46.1,0 Z M 17.5,46.2 c -2.3,0 -4.2,-1.9 -4.2,-4.2 0,-2.3 1.9,-4.2 4.2,-4.2 2.3,0 4.3,1.9 4.3,4.2 -0.1,2.3 -2,4.2 -4.3,4.2 0,0 0,0 0,0 z m 56,-5.8 -3.9,3.9 -4.9,-3.3 c -0.9,0.5 -1.9,0.9 -2.9,1.1 l -0.9,5.2 h 1.8 l 0.5,2.8 c 0.2,0 0.4,0.1 0.6,0.1 0.5,0.2 1,0.4 1.4,0.7 l 2.2,-1.6 1.8,1.8 -1.6,2.3 c 0.4,0.6 0.6,1.3 0.8,2 l 2.7,0.5 v 2.6 L 68.3,59 c -0.1,0.2 -0.1,0.4 -0.2,0.6 -0.2,0.5 -0.4,1 -0.7,1.4 L 69,63.2 67.2,65 64.9,63.4 c -0.6,0.4 -1.3,0.6 -2,0.8 l -0.5,2.7 H 59.8 L 59.3,64.1 C 59.2,64 59,64 58.8,63.9 58.3,63.7 57.9,63.5 57.4,63.2 l -2.2,1.6 -1.9,-1.8 1.6,-2.3 c -0.4,-0.6 -0.6,-1.3 -0.8,-2 l -2.7,-0.5 v -2.6 l 2.8,-0.5 c 0.1,-0.2 0.1,-0.4 0.2,-0.6 0.2,-0.5 0.4,-0.9 0.7,-1.4 l -1.5,-2.1 1.8,-1.8 2.3,1.6 c 0.6,-0.4 1.3,-0.6 2,-0.8 l 0.4,-2.3 h -4.8 l -1,-5.8 c -0.2,-0.1 -0.4,-0.1 -0.7,-0.2 -0.8,-0.3 -1.5,-0.6 -2.2,-1 l -4.6,3.3 -3.9,-4 3.4,-4.8 c -0.5,-0.9 -0.9,-1.9 -1.1,-2.9 l -5.6,-1 v -4.6 l -2.8,0.5 c 0,0.1 -0.1,0.3 -0.1,0.4 -0.2,0.5 -0.4,1 -0.7,1.4 l 2,3 -2.6,2.6 -3.2,-2.2 c -0.6,0.3 -1.2,0.5 -1.8,0.7 l -0.6,3.7 H 26.2 L 25.5,33 c -0.1,0 -0.3,-0.1 -0.4,-0.1 -0.5,-0.2 -1,-0.4 -1.4,-0.7 l -3.1,2.2 -2.6,-2.7 2.2,-3.2 c -0.3,-0.6 -0.5,-1.2 -0.7,-1.8 l -3.7,-0.6 v -3.7 l 3.8,-0.7 c 0,-0.1 0.1,-0.3 0.1,-0.4 0.2,-0.5 0.4,-1 0.7,-1.4 l -2.2,-3.1 2.6,-2.6 3.2,2.2 c 0.6,-0.3 1.2,-0.6 1.8,-0.7 L 26.4,12 H 30 l 0.7,3.8 c 0.1,0 0.3,0.1 0.4,0.1 0.5,0.2 1,0.4 1.4,0.7 l 3.1,-2.2 2.6,2.6 -2.2,3.2 c 0.3,0.6 0.5,1.2 0.7,1.8 l 3.7,0.6 v 2.7 l 4.8,-0.8 c 0.1,-0.2 0.1,-0.4 0.2,-0.7 0.3,-0.8 0.7,-1.5 1.1,-2.2 l -3.3,-4.6 4,-4 4.8,3.4 c 0.9,-0.5 1.9,-0.9 2.9,-1.1 l 0.9,-5.6 h 5.6 l 1,5.8 c 0.2,0.1 0.4,0.1 0.7,0.2 0.8,0.3 1.5,0.6 2.2,1.1 l 4.6,-3.3 3.9,3.9 -3.4,4.8 c 0.5,0.9 0.9,1.9 1.1,2.9 l 5.6,1 v 5.6 l -5.8,1 c -0.1,0.2 -0.1,0.4 -0.2,0.7 -0.3,0.8 -0.7,1.5 -1.1,2.2 z"
|
||||
id="path4"
|
||||
style="fill:#ffffff;fill-opacity:1" /><rect
|
||||
x="12"
|
||||
y="37"
|
||||
width="10.5"
|
||||
height="9.1999998"
|
||||
id="rect6"
|
||||
style="fill:#ffffff;fill-opacity:1" /></g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 4.4 KiB |
BIN
Resources/Textures/Interface/VerbIcons/sentient.svg.96dpi.png
Normal file
|
After Width: | Height: | Size: 676 B |
@@ -1 +1,73 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-settings"><circle cx="12" cy="12" r="3"></circle><path d="M19.4 15a1.65 1.65 0 0 0 .33 1.82l.06.06a2 2 0 0 1 0 2.83 2 2 0 0 1-2.83 0l-.06-.06a1.65 1.65 0 0 0-1.82-.33 1.65 1.65 0 0 0-1 1.51V21a2 2 0 0 1-2 2 2 2 0 0 1-2-2v-.09A1.65 1.65 0 0 0 9 19.4a1.65 1.65 0 0 0-1.82.33l-.06.06a2 2 0 0 1-2.83 0 2 2 0 0 1 0-2.83l.06-.06a1.65 1.65 0 0 0 .33-1.82 1.65 1.65 0 0 0-1.51-1H3a2 2 0 0 1-2-2 2 2 0 0 1 2-2h.09A1.65 1.65 0 0 0 4.6 9a1.65 1.65 0 0 0-.33-1.82l-.06-.06a2 2 0 0 1 0-2.83 2 2 0 0 1 2.83 0l.06.06a1.65 1.65 0 0 0 1.82.33H9a1.65 1.65 0 0 0 1-1.51V3a2 2 0 0 1 2-2 2 2 0 0 1 2 2v.09a1.65 1.65 0 0 0 1 1.51 1.65 1.65 0 0 0 1.82-.33l.06-.06a2 2 0 0 1 2.83 0 2 2 0 0 1 0 2.83l-.06.06a1.65 1.65 0 0 0-.33 1.82V9a1.65 1.65 0 0 0 1.51 1H21a2 2 0 0 1 2 2 2 2 0 0 1-2 2h-.09a1.65 1.65 0 0 0-1.51 1z"></path></svg>
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<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"
|
||||
viewBox="0 0 32 32"
|
||||
version="1.1"
|
||||
id="svg4"
|
||||
sodipodi:docname="settings.svg"
|
||||
width="32"
|
||||
height="32"
|
||||
inkscape:version="1.0.1 (3bc2e813f5, 2020-09-07)"
|
||||
inkscape:export-filename="C:\Users\Pieter-Jan Briers\Projects\space-station-14\Resources\Textures\Interface\VerbIcons\settings.svg.96dpi.png"
|
||||
inkscape:export-xdpi="96"
|
||||
inkscape:export-ydpi="96">
|
||||
<metadata
|
||||
id="metadata10">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title></dc:title>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<defs
|
||||
id="defs8">
|
||||
<inkscape:path-effect
|
||||
effect="gears"
|
||||
id="path-effect839"
|
||||
is_visible="true"
|
||||
lpeversion="1"
|
||||
teeth="16"
|
||||
phi="11.9"
|
||||
min_radius="5" />
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
pagecolor="#505050"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1051"
|
||||
id="namedview6"
|
||||
showgrid="true"
|
||||
inkscape:zoom="14.666667"
|
||||
inkscape:cx="-0.59386811"
|
||||
inkscape:cy="2.6491635"
|
||||
inkscape:window-x="-9"
|
||||
inkscape:window-y="-9"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="svg4">
|
||||
<inkscape:grid
|
||||
type="xygrid"
|
||||
id="grid835"
|
||||
empspacing="4" />
|
||||
</sodipodi:namedview>
|
||||
<path
|
||||
d="m 13.826918,26.988453 c 0,0.44764 0.362974,0.864897 0.806968,0.926068 0,0 0.623861,0.08548 1.366214,0.08548 0.742354,0 1.365202,-0.08548 1.365202,-0.08548 0.443589,-0.06158 0.806157,-0.478023 0.806157,-0.926068 v -2.315779 c 0,-0.448451 0.285599,-0.913916 0.634799,-1.034232 0.3492,-0.120316 1.469516,-0.285598 1.78651,0.03241 l 1.636621,1.636621 c 0.316994,0.317197 0.858011,0.341908 1.202552,0.05469 l 1.926271,-1.926273 c 0.287624,-0.344338 0.263318,-0.885153 -0.05408,-1.20316 l -1.63662,-1.636621 c -0.317602,-0.315981 -0.44521,-0.844642 -0.284384,-1.172777 0.160827,-0.328134 0.839174,-1.248126 1.287422,-1.248126 h 2.318209 c 0.448248,0 0.864898,-0.363176 0.926069,-0.806968 0,0 0.08588,-0.623861 0.08588,-1.366417 0,-0.742556 -0.08588,-1.366012 -0.08588,-1.366012 -0.06077,-0.445007 -0.478023,-0.808183 -0.926069,-0.808183 h -2.315779 c -0.448247,0 -0.91351,-0.285598 -1.034231,-0.635406 -0.120721,-0.349808 -0.285598,-1.469516 0.03241,-1.78651 l 1.636622,-1.6366209 c 0.315779,-0.3176016 0.340085,-0.858416 0.05449,-1.2027547 L 23.435992,6.6400634 C 23.091654,6.3532496 22.55084,6.3775558 22.232833,6.6947525 L 20.596211,8.331374 C 20.279015,8.6483682 19.750961,8.7763811 19.422827,8.614947 19.094692,8.453513 18.174093,7.7763811 18.174093,7.3281331 V 5.0115442 c 0,-0.4476403 -0.362974,-0.8648977 -0.806968,-0.9256635 0,0 -0.623861,-0.085882 -1.366012,-0.085882 -0.742151,0 -1.365809,0.085882 -1.365809,0.085882 -0.444602,0.060766 -0.808183,0.4780231 -0.808183,0.9260686 V 7.329146 c 0,0.448653 -0.285599,0.9135102 -0.634799,1.0344338 -0.349402,0.119911 -1.469313,0.2855986 -1.786105,-0.031396 L 9.7695958,6.6955624 C 9.4517918,6.3787707 8.9109768,6.3544646 8.5666387,6.6416833 l -1.926271,1.9256635 c -0.287624,0.3443387 -0.263318,0.8851529 0.05469,1.202147 l 1.6366201,1.6366212 c 0.315982,0.316994 0.443589,0.845048 0.283573,1.173385 -0.160016,0.328337 -0.839781,1.247721 -1.287826,1.247721 h -2.315779 c -0.44764,0 -0.864898,0.363581 -0.925664,0.808183 0,0 -0.08669,0.623861 -0.08669,1.366012 0,0.742151 0.08568,1.366214 0.08568,1.366214 0.06076,0.4444 0.478023,0.807373 0.925663,0.807373 h 2.315171 c 0.4484509,0 0.9141179,0.285599 1.034434,0.635204 0.119911,0.349605 0.285599,1.469718 -0.03119,1.78651 l -1.636621,1.636621 c -0.317197,0.316994 -0.342314,0.858011 -0.05469,1.202755 l 1.925258,1.925663 c 0.344338,0.287624 0.8851529,0.263318 1.202552,-0.05469 L 11.40217,23.670445 c 0.3174,-0.316994 0.845656,-0.445007 1.173993,-0.283573 0.328134,0.160623 1.248126,0.838971 1.248126,1.287016 v 2.317197 z M 11.607352,15.999998 c 0,-2.425967 1.966174,-4.392546 4.392748,-4.392546 2.42455,0 4.391331,1.966781 4.391331,4.392546 0,2.425765 -1.966579,4.392749 -4.391128,4.392749 -2.424549,0 -4.392749,-1.966782 -4.392749,-4.392749 z"
|
||||
fill="#010101"
|
||||
id="path2"
|
||||
style="fill:#ffffff;fill-opacity:1;stroke-width:0.202552" />
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 1004 B After Width: | Height: | Size: 4.7 KiB |
|
Before Width: | Height: | Size: 704 B After Width: | Height: | Size: 548 B |
58
Resources/Textures/Interface/VerbIcons/smite.svg
Normal file
@@ -0,0 +1,58 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<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"
|
||||
viewBox="0 0 32 32"
|
||||
version="1.1"
|
||||
id="svg4"
|
||||
sodipodi:docname="smite.svg"
|
||||
width="32"
|
||||
height="32"
|
||||
inkscape:version="1.0.1 (3bc2e813f5, 2020-09-07)"
|
||||
inkscape:export-filename="C:\Users\Pieter-Jan Briers\Projects\space-station-14\Resources\Textures\Interface\VerbIcons\smite.svg.96dpi.png"
|
||||
inkscape:export-xdpi="96"
|
||||
inkscape:export-ydpi="96">
|
||||
<metadata
|
||||
id="metadata10">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title></dc:title>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<defs
|
||||
id="defs8" />
|
||||
<sodipodi:namedview
|
||||
pagecolor="#717171"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1051"
|
||||
id="namedview6"
|
||||
showgrid="false"
|
||||
inkscape:zoom="20.741799"
|
||||
inkscape:cx="15.039815"
|
||||
inkscape:cy="14.697973"
|
||||
inkscape:window-x="-9"
|
||||
inkscape:window-y="-9"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="svg4" />
|
||||
<path
|
||||
d="M 23.727719,12.24762 11.89213,28 14.620951,16.920301 8.2722805,17.027168 10.865563,4.0000003 h 7.700651 l -3.091128,8.2546377 z"
|
||||
id="path2"
|
||||
style="fill:#ffffff;fill-opacity:1;stroke-width:0.200502" />
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.9 KiB |
BIN
Resources/Textures/Interface/VerbIcons/smite.svg.96dpi.png
Normal file
|
After Width: | Height: | Size: 422 B |
62
Resources/Textures/Interface/VerbIcons/spill.svg
Normal file
@@ -0,0 +1,62 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<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"
|
||||
viewBox="0 0 32 32"
|
||||
version="1.1"
|
||||
id="svg6"
|
||||
sodipodi:docname="spill.svg"
|
||||
width="32"
|
||||
height="32"
|
||||
inkscape:version="1.0.1 (3bc2e813f5, 2020-09-07)"
|
||||
inkscape:export-filename="C:\Users\Pieter-Jan Briers\Projects\space-station-14\Resources\Textures\Interface\VerbIcons\spill.svg.96dpi.png"
|
||||
inkscape:export-xdpi="96"
|
||||
inkscape:export-ydpi="96">
|
||||
<metadata
|
||||
id="metadata12">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title>Shape</dc:title>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<defs
|
||||
id="defs10" />
|
||||
<sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1051"
|
||||
id="namedview8"
|
||||
showgrid="false"
|
||||
inkscape:pagecheckerboard="true"
|
||||
inkscape:zoom="15.95523"
|
||||
inkscape:cx="20.005286"
|
||||
inkscape:cy="21.839618"
|
||||
inkscape:window-x="-9"
|
||||
inkscape:window-y="-9"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="svg6" />
|
||||
<title
|
||||
id="title2">Shape</title>
|
||||
<path
|
||||
d="M 8.8174785,20.55402 C 8.8174785,15.398816 16.00096,4 16.00096,4 c 0,0 7.181561,11.399456 7.181561,16.55402 0,3.506589 -2.349677,7.44598 -7.18092,7.44598 -4.829323,0 -7.1834823,-3.939391 -7.1834823,-7.44598 z"
|
||||
fill-rule="evenodd"
|
||||
id="path4"
|
||||
style="stroke-width:0.640239;fill:#ffffff;fill-opacity:1" />
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.0 KiB |
BIN
Resources/Textures/Interface/VerbIcons/spill.svg.96dpi.png
Normal file
|
After Width: | Height: | Size: 451 B |
73
Resources/Textures/Interface/VerbIcons/vv.svg
Normal file
@@ -0,0 +1,73 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<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"
|
||||
viewBox="0 0 32 32"
|
||||
version="1.1"
|
||||
id="svg6"
|
||||
sodipodi:docname="vv.svg"
|
||||
inkscape:version="1.0.1 (3bc2e813f5, 2020-09-07)"
|
||||
width="32"
|
||||
height="32"
|
||||
inkscape:export-filename="C:\Users\Pieter-Jan Briers\Projects\space-station-14\Resources\Textures\Interface\VerbIcons\vv.svg.96dpi.png"
|
||||
inkscape:export-xdpi="96"
|
||||
inkscape:export-ydpi="96">
|
||||
<metadata
|
||||
id="metadata12">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title></dc:title>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<defs
|
||||
id="defs10" />
|
||||
<sodipodi:namedview
|
||||
pagecolor="#000000"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1051"
|
||||
id="namedview8"
|
||||
showgrid="true"
|
||||
inkscape:zoom="29.333333"
|
||||
inkscape:cx="7.3238692"
|
||||
inkscape:cy="17.821155"
|
||||
inkscape:window-x="-9"
|
||||
inkscape:window-y="-9"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="svg6">
|
||||
<inkscape:grid
|
||||
type="xygrid"
|
||||
id="grid837"
|
||||
empspacing="4" />
|
||||
</sodipodi:namedview>
|
||||
<g
|
||||
id="g841"
|
||||
transform="matrix(0.20017181,0,0,0.20017181,3.9893911,3.9896914)">
|
||||
<path
|
||||
d="M 60,19.09 C 22.382,19.09 0.053,60 0.053,60 c 0,0 22.33,40.91 59.947,40.91 37.617,0 59.95,-40.91 59.95,-40.91 0,0 -22.332,-40.91 -59.95,-40.91 z m 0,65.32 C 46.54,84.41 35.59,73.46 35.59,60 35.59,46.54 46.54,35.59 60,35.59 c 13.46,0 24.407,10.95 24.407,24.41 0,13.46 -10.95,24.41 -24.41,24.41 z"
|
||||
id="path2"
|
||||
style="fill:#ffffff;fill-opacity:1" />
|
||||
<circle
|
||||
cy="60"
|
||||
cx="60.001499"
|
||||
r="14.409"
|
||||
id="circle4"
|
||||
style="fill:#fefefe;fill-opacity:1" />
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.3 KiB |
BIN
Resources/Textures/Interface/VerbIcons/vv.svg.96dpi.png
Normal file
|
After Width: | Height: | Size: 513 B |