Skip to content

Commit

Permalink
Merge branch 'master' of https://github.com/Schrodinger71/Develop_ADT
Browse files Browse the repository at this point in the history
…into upstream1107
  • Loading branch information
Schrodinger71 committed Jul 15, 2024
2 parents 58647ce + c7df884 commit 9d8ad90
Show file tree
Hide file tree
Showing 237 changed files with 95 additions and 209 deletions.
5 changes: 5 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"omnisharp.analyzeOpenDocumentsOnly": true,
"dotnet.defaultSolution": "SpaceStation14.sln",
"dotnet.preferCSharpExtension": true
}
50 changes: 19 additions & 31 deletions Content.Server/Speech/EntitySystems/MothAccentSystem.cs
Original file line number Diff line number Diff line change
Expand Up @@ -21,38 +21,26 @@ private void OnAccent(EntityUid uid, MothAccentComponent component, AccentGetEve
{
var message = args.Message;

// buzzz
message = RegexLowerBuzz.Replace(message, "zzz");
// buZZZ
message = RegexUpperBuzz.Replace(message, "ZZZ");

// Corvax-Localization-Start
// ж => жжж
message = Regex.Replace(
message,
"ж+",
_random.Pick(new List<string>() { "жж", "жжж" })
);
// Ж => ЖЖЖ
message = Regex.Replace(
message,
"Ж+",
_random.Pick(new List<string>() { "ЖЖ", "ЖЖЖ" })
);
// з => ссс
message = Regex.Replace(
message,
"з+",
_random.Pick(new List<string>() { "зз", "ззз" })
);
// З => CCC
message = Regex.Replace(
message,
"З+",
_random.Pick(new List<string>() { "ЗЗ", "ЗЗЗ" })
);
// Corvax-Localization-End
// Changed By 1Stepka1 Moth_speech_ADT start

message = Regex.Replace(message, "з{1,3}", "ззз");

message = Regex.Replace(message, "с{1,3}", "зз");

message = Regex.Replace(message, "ц{1,3}", "зз");

message = Regex.Replace(message, "ж{1,3}", "жзж");

message = Regex.Replace(message, "З{1,3}", "ЗЗЗ");

message = Regex.Replace(message, "С{1,3}", "ЗЗ");

message = Regex.Replace(message, "Ц{1,3}", "ЗЗ");

message = Regex.Replace(message, "Ж{1,3}", "ЖЗЖ");

// Changed By 1Stepka1 Moth_speech_ADT end

args.Message = message;
}
}
4 changes: 2 additions & 2 deletions Content.Shared/CCVar/CCVars.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1630,10 +1630,10 @@ public static readonly CVarDef<int>
CVarDef.Create("viewport.minimum_width", 15, CVar.REPLICATED | CVar.SERVER);

public static readonly CVarDef<int> ViewportMaximumWidth =
CVarDef.Create("viewport.maximum_width", 21, CVar.REPLICATED | CVar.SERVER);
CVarDef.Create("viewport.maximum_width", 29, CVar.REPLICATED | CVar.SERVER); //ADT 16:9

public static readonly CVarDef<int> ViewportWidth =
CVarDef.Create("viewport.width", 21, CVar.CLIENTONLY | CVar.ARCHIVE);
CVarDef.Create("viewport.width", 29, CVar.CLIENTONLY | CVar.ARCHIVE); //ADT 16:9

public static readonly CVarDef<bool> ViewportVerticalFit =
CVarDef.Create("viewport.vertical_fit", true, CVar.CLIENTONLY | CVar.ARCHIVE);
Expand Down
11 changes: 11 additions & 0 deletions Resources/Locale/ru-RU/ADT/traits/neutral.ftl
Original file line number Diff line number Diff line change
@@ -1,2 +1,13 @@

trait-tall-name = Высокий
trait-tall-desc = Вы слегка выше других представителей своего вида.
trait-short-name = Низкий
trait-short-desc = Вы слегка ниже других представителей своего вида.
trait-moth-accent-name = Жужжащий акцент
trait-moth-accent-desc = Вам либо нравятся моли, либо вы ботаник
trait-deutsch-accent-name = Немецкий акцент
trait-deutsch-accent-desc = Неизвестно, как вы получили этот акцент. Может быть, вы пересмотрели слишком много фильмов о Второй мировой войне?
9 changes: 8 additions & 1 deletion Resources/Prototypes/ADT/Traits/neutral.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
- type: trait
id: ADTMothAccent
name: trait-moth-accent-name
description: trait-moth-accent-desc
components:
- type: MothAccent

- type: trait
id: ADTGermanAccent
name: trait-deutsch-accent-name
description: trait-deutsch-accent-desc
components:
- type: DeutschAccent
- type: DeutschAccent
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"version": 1,
"license": "CC-BY-SA-3.0",
"copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/2fea0a59470c476cf3f927833d3918d89cbe6af8. Vox states taken from paradise at https://github.com/ParadiseSS13/Paradise/blob/765461f14aa4dd4f1edc33242c667843134678b5/icons/mob/clothing/species/vox/head.dmi",
"copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/pull/78007/commits/3e58e726d821118ecf098fe447ff9549d0ca7419. Vox states taken from paradise at https://github.com/ParadiseSS13/Paradise/blob/765461f14aa4dd4f1edc33242c667843134678b5/icons/mob/clothing/species/vox/head.dmi",
"size": {
"x": 32,
"y": 32
Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"version": 1,
"license": "CC-BY-SA-3.0",
"copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/2fea0a59470c476cf3f927833d3918d89cbe6af8, reptilian made by kuro(388673708753027083)",
"copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/pull/78007/commits/3e58e726d821118ecf098fe447ff9549d0ca7419, edited by ratyyy, reptilian made by kuro(388673708753027083)",
"size": {
"x": 32,
"y": 32
Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"version": 1,
"license": "CC-BY-SA-3.0",
"copyright": "Taken from cev-eris at commit https://github.com/discordia-space/CEV-Eris/commit/f18aa05685f13c8b424867e4219a1e727019c026",
"copyright": "Taken from TGstation at commit https://github.com/tgstation/tgstation/commit/35484728f1fd4217fba7f9c8a6fcf2283212e014",
"size": {
"x": 32,
"y": 32
Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"version": 1,
"license": "CC-BY-SA-3.0",
"copyright": "Taken from cev-eris at commit https://github.com/discordia-space/CEV-Eris/commit/f18aa05685f13c8b424867e4219a1e727019c026",
"copyright": "Taken from TGstation at commit https://github.com/tgstation/tgstation/commit/35484728f1fd4217fba7f9c8a6fcf2283212e014",
"size": {
"x": 32,
"y": 32
Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"version": 1,
"license": "CC-BY-SA-3.0",
"copyright": "Taken from cev-eris at commit https://github.com/discordia-space/CEV-Eris/commit/f18aa05685f13c8b424867e4219a1e727019c026",
"copyright": "Taken from TGstation at commit https://github.com/tgstation/tgstation/commit/35484728f1fd4217fba7f9c8a6fcf2283212e014",
"size": {
"x": 32,
"y": 32
Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"version": 1,
"license": "CC-BY-SA-3.0",
"copyright": "Taken from cev-eris at commit https://github.com/discordia-space/CEV-Eris/commit/f18aa05685f13c8b424867e4219a1e727019c026",
"copyright": "Taken from TGstation at commit https://github.com/tgstation/tgstation/commit/35484728f1fd4217fba7f9c8a6fcf2283212e014",
"size": {
"x": 32,
"y": 32
Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"version": 1,
"license": "CC-BY-SA-3.0",
"copyright": "Taken from cev-eris at commit https://github.com/discordia-space/CEV-Eris/commit/f18aa05685f13c8b424867e4219a1e727019c026",
"copyright": "Taken from TGstation at commit https://github.com/tgstation/tgstation/commit/35484728f1fd4217fba7f9c8a6fcf2283212e014",
"size": {
"x": 32,
"y": 32
Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
{
"version": 1,
"license": "CC-BY-SA-3.0",
"copyright": "Modified from sprite taken from cev-eris at commit https://github.com/discordia-space/CEV-Eris/commit/f18aa05685f13c8b424867e4219a1e727019c026",
"copyright": "Taken from TGstation at commit https://github.com/tgstation/tgstation/commit/35484728f1fd4217fba7f9c8a6fcf2283212e014",
"size": {
"x": 32,
"y": 32
Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified Resources/Textures/Objects/Materials/Sheets/glass.rsi/glass.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified Resources/Textures/Objects/Materials/Sheets/glass.rsi/glass_2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified Resources/Textures/Objects/Materials/Sheets/glass.rsi/glass_3.png
Binary file modified Resources/Textures/Objects/Materials/Sheets/glass.rsi/pglass.png
Binary file modified Resources/Textures/Objects/Materials/Sheets/glass.rsi/pglass_2.png
Binary file modified Resources/Textures/Objects/Materials/Sheets/glass.rsi/pglass_3.png
Binary file modified Resources/Textures/Objects/Materials/Sheets/glass.rsi/rglass.png
Binary file modified Resources/Textures/Objects/Materials/Sheets/glass.rsi/rglass_2.png
Binary file modified Resources/Textures/Objects/Materials/Sheets/glass.rsi/rglass_3.png
Binary file modified Resources/Textures/Objects/Materials/Sheets/glass.rsi/rpglass.png
Binary file modified Resources/Textures/Objects/Materials/Sheets/glass.rsi/ruglass.png
Binary file modified Resources/Textures/Objects/Materials/Sheets/glass.rsi/uglass.png
Binary file modified Resources/Textures/Objects/Materials/Sheets/glass.rsi/uglass_2.png
Binary file modified Resources/Textures/Objects/Materials/Sheets/metal.rsi/brass.png
Binary file modified Resources/Textures/Objects/Materials/Sheets/metal.rsi/brass_2.png
Binary file modified Resources/Textures/Objects/Materials/Sheets/metal.rsi/brass_3.png
Binary file modified Resources/Textures/Objects/Materials/Sheets/metal.rsi/plasteel.png
Binary file modified Resources/Textures/Objects/Materials/Sheets/metal.rsi/steel.png
Binary file modified Resources/Textures/Objects/Materials/Sheets/metal.rsi/steel_2.png
Binary file modified Resources/Textures/Objects/Materials/Sheets/metal.rsi/steel_3.png
67 changes: 8 additions & 59 deletions Resources/Textures/Objects/Materials/Sheets/other.rsi/meta.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"version": 1,
"license": "CC-BY-SA-3.0",
"copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c6e3401f2e7e1e55c57060cdf956a98ef1fefc24 and skyrat-tg at https://github.com/Skyrat-SS13/Skyrat-tg/commit/72ef384db938dfef549413970258cda93d42dafb, plasma_2 & plasma_3 combined from plasma",
"copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/9ea07b7f120ba1a25856365fb044aec3bdfc24d6 and skyrat-tg at https://github.com/Skyrat-SS13/Skyrat-tg/commit/72ef384db938dfef549413970258cda93d42dafb, plasma_2 & plasma_3 combined from plasma",
"size": {
"x": 32,
"y": 32
Expand Down Expand Up @@ -53,64 +53,13 @@
"directions": 4
},
{
"name": "plasma",
"delays": [
[
0.1,
0.1,
0.1,
0.1,
0.1,
0.1,
0.1,
0.1,
0.1,
0.1,
0.1,
0.1,
0.1
]
]
},
{
"name": "plasma_2",
"delays": [
[
0.1,
0.1,
0.1,
0.1,
0.1,
0.1,
0.1,
0.1,
0.1,
0.1,
0.1,
0.1,
0.1
]
]
},
{
"name": "plasma_3",
"delays": [
[
0.1,
0.1,
0.1,
0.1,
0.1,
0.1,
0.1,
0.1,
0.1,
0.1,
0.1,
0.1,
0.1
]
]
"name": "plasma"
},
{
"name": "plasma_2"
},
{
"name": "plasma_3"
},
{
"name": "plasma-inhand-left",
Expand Down
Binary file modified Resources/Textures/Objects/Materials/Sheets/other.rsi/plasma.png
Binary file modified Resources/Textures/Objects/Materials/Sheets/other.rsi/plastic.png
Binary file modified Resources/Textures/Objects/Materials/Sheets/other.rsi/uranium.png
Binary file modified Resources/Textures/Objects/Materials/ingots.rsi/alpha.png
Binary file modified Resources/Textures/Objects/Materials/ingots.rsi/alpha_2.png
Binary file modified Resources/Textures/Objects/Materials/ingots.rsi/alpha_3.png
Binary file modified Resources/Textures/Objects/Materials/ingots.rsi/gold.png
Binary file modified Resources/Textures/Objects/Materials/ingots.rsi/gold_2.png
Binary file modified Resources/Textures/Objects/Materials/ingots.rsi/gold_3.png
Binary file modified Resources/Textures/Objects/Materials/ingots.rsi/silver.png
Binary file modified Resources/Textures/Objects/Materials/ingots.rsi/silver_2.png
Binary file modified Resources/Textures/Objects/Materials/ingots.rsi/silver_3.png
Binary file modified Resources/Textures/Objects/Materials/ore.rsi/bananium.png
Binary file modified Resources/Textures/Objects/Materials/ore.rsi/gold.png
Binary file modified Resources/Textures/Objects/Materials/ore.rsi/iron.png
2 changes: 1 addition & 1 deletion Resources/Textures/Objects/Materials/ore.rsi/meta.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"version": 1,
"license": "CC-BY-NC-SA-3.0",
"copyright": "silver, plasma taken from https://github.com/vgstation-coders/vgstation13 at commit f2ef221849675915a78fd92fe622c32ab740e085, spacequartz taken from https://github.com/goonstation/goonstation at commit b51daf824df46a3a1426475f982c09479818e522 and reshaded by Alekshhh, bananium; uranium; iron; gold; coal by Alekshhh",
"copyright": "silver taken from https://github.com/vgstation-coders/vgstation13 at commit f2ef221849675915a78fd92fe622c32ab740e085, spacequartz taken from https://github.com/goonstation/goonstation at commit b51daf824df46a3a1426475f982c09479818e522 and reshaded by Alekshhh, bananium; else taken from https://github.com/tgstation/tgstation/commit/002051a3d5e4a35af504e52c0990bf4e22a908dc",
"size": {
"x": 32,
"y": 32
Expand Down
Binary file modified Resources/Textures/Objects/Materials/ore.rsi/plasma.png
Binary file modified Resources/Textures/Objects/Materials/ore.rsi/uranium.png
Binary file modified Resources/Textures/Objects/Misc/Lights/lights.rsi/floodlight.png
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"version": 1,
"license": "CC-BY-SA-3.0",
"copyright": "Taken from tgstation at https://github.com/tgstation/tgstation/commit/fb020482a6737372d5b8f2b603d58737b22b0270, directional sprites by SonicDC#9046",
"copyright": "Taken from tgstation at https://github.com/tgstation/tgstation/commit/b5654d720384bbd044077b746012d12401e9cf07, directional sprites by SonicDC#9046",
"size": {
"x": 32,
"y": 32
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"version": 1,
"license": "CC-BY-SA-3.0",
"copyright": "Taken from https://github.com/tgstation/tgstation at commit 9bebd81ae0b0a7f952b59886a765c681205de31f",
"copyright": "Taken from https://github.com/tgstation/tgstation/commit/650492a26d71ba668e89bf97bd97b91a515745be, inhands made by tamioki",
"size": {
"x": 32,
"y": 32
Expand Down
Binary file modified Resources/Textures/Objects/Power/light_bulb.rsi/broken.png
Binary file modified Resources/Textures/Objects/Power/light_bulb.rsi/burned.png
2 changes: 1 addition & 1 deletion Resources/Textures/Objects/Power/light_bulb.rsi/meta.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"version": 1,
"license": "CC-BY-SA-3.0",
"copyright": "Taken from cev-eris at https://github.com/discordia-space/CEV-Eris/commit/ad7c8621e5567b1b3b2b609f699b3b80cca785f2",
"copyright": "Taken from TGstation at commit https://github.com/tgstation/tgstation/commit/b5654d720384bbd044077b746012d12401e9cf07",
"size": {
"x": 32,
"y": 32
Expand Down
Binary file modified Resources/Textures/Objects/Power/light_bulb.rsi/normal.png
Binary file modified Resources/Textures/Objects/Power/light_tube.rsi/broken.png
Binary file modified Resources/Textures/Objects/Power/light_tube.rsi/burned.png
2 changes: 1 addition & 1 deletion Resources/Textures/Objects/Power/light_tube.rsi/meta.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"version": 1,
"license": "CC-BY-SA-3.0",
"copyright": "Taken from cev-eris at https://github.com/discordia-space/CEV-Eris/commit/ad7c8621e5567b1b3b2b609f699b3b80cca785f2",
"copyright": "Taken from TGstation at commit https://github.com/tgstation/tgstation/commit/b5654d720384bbd044077b746012d12401e9cf07",
"size": {
"x": 32,
"y": 32
Expand Down
Binary file modified Resources/Textures/Objects/Power/light_tube.rsi/normal.png
Binary file modified Resources/Textures/Objects/Specific/Chemistry/beaker.rsi/beaker.png
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"version": 1,
"license": "CC-BY-SA-3.0",
"copyright": "Taken from cev-eris at https://github.com/discordia-space/CEV-Eris/commit/740ff31a81313086cf16761f3677cf1e2ab46c93",
"copyright": "Taken from TGstation at commit https://github.com/tgstation/tgstation/commit/c045d79fcabda92ea29214eda93863e746fd404c",
"size": {
"x": 32,
"y": 32
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"version": 1,
"license": "CC-BY-SA-3.0",
"copyright": "Taken from cev-eris at https://github.com/discordia-space/CEV-Eris/commit/740ff31a81313086cf16761f3677cf1e2ab46c93",
"copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c045d79fcabda92ea29214eda93863e746fd404c",
"size": {
"x": 32,
"y": 32
Expand All @@ -11,8 +11,11 @@
"name": "beakerbluespace",
"delays": [
[
0.1,
0.1
1.5,
1.5,
1.5,
1.5,
1.5
]
]
}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"version": 1,
"license": "CC-BY-SA-3.0",
"copyright": "Taken from cev-eris at https://github.com/discordia-space/CEV-Eris/blob/2b969adc2dfd3e9621bf3597c5cbffeb3ac8c9f0/icons/obj/chemical.dmi",
"copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c045d79fcabda92ea29214eda93863e746fd404c",
"size": {
"x": 32,
"y": 32
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"version": 1,
"license": "CC-BY-SA-3.0",
"copyright": "Taken from cev-eris at https://github.com/discordia-space/CEV-Eris/blob/2b969adc2dfd3e9621bf3597c5cbffeb3ac8c9f0/icons/obj/chemical.dmi",
"copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c045d79fcabda92ea29214eda93863e746fd404c",
"size": {
"x": 32,
"y": 32
Expand Down
Binary file modified Resources/Textures/Objects/Specific/Chemistry/pills.rsi/pill.png
Binary file modified Resources/Textures/Objects/Specific/Chemistry/pills.rsi/pill1.png
Binary file modified Resources/Textures/Objects/Specific/Chemistry/pills.rsi/pill10.png
Binary file modified Resources/Textures/Objects/Specific/Chemistry/pills.rsi/pill11.png
Binary file modified Resources/Textures/Objects/Specific/Chemistry/pills.rsi/pill12.png
Binary file modified Resources/Textures/Objects/Specific/Chemistry/pills.rsi/pill13.png
Binary file modified Resources/Textures/Objects/Specific/Chemistry/pills.rsi/pill14.png
Binary file modified Resources/Textures/Objects/Specific/Chemistry/pills.rsi/pill15.png
Binary file modified Resources/Textures/Objects/Specific/Chemistry/pills.rsi/pill16.png
Binary file modified Resources/Textures/Objects/Specific/Chemistry/pills.rsi/pill17.png
Binary file modified Resources/Textures/Objects/Specific/Chemistry/pills.rsi/pill18.png
Binary file modified Resources/Textures/Objects/Specific/Chemistry/pills.rsi/pill19.png
Binary file modified Resources/Textures/Objects/Specific/Chemistry/pills.rsi/pill2.png
Binary file modified Resources/Textures/Objects/Specific/Chemistry/pills.rsi/pill20.png
Binary file modified Resources/Textures/Objects/Specific/Chemistry/pills.rsi/pill21.png
Binary file modified Resources/Textures/Objects/Specific/Chemistry/pills.rsi/pill3.png
Binary file modified Resources/Textures/Objects/Specific/Chemistry/pills.rsi/pill4.png
Binary file modified Resources/Textures/Objects/Specific/Chemistry/pills.rsi/pill5.png
Binary file modified Resources/Textures/Objects/Specific/Chemistry/pills.rsi/pill6.png
Binary file modified Resources/Textures/Objects/Specific/Chemistry/pills.rsi/pill7.png
Binary file modified Resources/Textures/Objects/Specific/Chemistry/pills.rsi/pill8.png
Binary file modified Resources/Textures/Objects/Specific/Chemistry/pills.rsi/pill9.png
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"version": 1,
"license": "CC-BY-SA-3.0",
"copyright": "Taken from cev-eris at https://github.com/discordia-space/CEV-Eris/blob/2b969adc2dfd3e9621bf3597c5cbffeb3ac8c9f0/icons/obj/chemical.dmi",
"copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c045d79fcabda92ea29214eda93863e746fd404cn",
"size": {
"x": 32,
"y": 32
Expand Down
Binary file modified Resources/Textures/Objects/Specific/Mech/mecha.rsi/clarke.png
Binary file modified Resources/Textures/Objects/Specific/Mech/mecha.rsi/darkgygax.png
Binary file modified Resources/Textures/Objects/Specific/Mech/mecha.rsi/deathripley.png
Binary file modified Resources/Textures/Objects/Specific/Mech/mecha.rsi/durand-open.png
Binary file modified Resources/Textures/Objects/Specific/Mech/mecha.rsi/durand.png
Binary file modified Resources/Textures/Objects/Specific/Mech/mecha.rsi/firefighter.png
Binary file modified Resources/Textures/Objects/Specific/Mech/mecha.rsi/gygax-open.png
Binary file modified Resources/Textures/Objects/Specific/Mech/mecha.rsi/gygax.png
Binary file modified Resources/Textures/Objects/Specific/Mech/mecha.rsi/marauder.png
Binary file modified Resources/Textures/Objects/Specific/Mech/mecha.rsi/mauler-open.png
Binary file modified Resources/Textures/Objects/Specific/Mech/mecha.rsi/mauler.png
Loading

0 comments on commit 9d8ad90

Please sign in to comment.