Technology prototype camelCase

This commit is contained in:
py01
2020-07-18 20:47:10 -06:00
parent d9ce973af0
commit 07e4318893
2 changed files with 19 additions and 19 deletions

View File

@@ -1,4 +1,4 @@
using System; using System;
using System.Collections.Generic; using System.Collections.Generic;
using Robust.Shared.Prototypes; using Robust.Shared.Prototypes;
using Robust.Shared.Serialization; using Robust.Shared.Serialization;
@@ -68,9 +68,9 @@ namespace Content.Shared.Research
serializer.DataField(ref _id, "id", string.Empty); serializer.DataField(ref _id, "id", string.Empty);
serializer.DataField(ref _description, "description", string.Empty); serializer.DataField(ref _description, "description", string.Empty);
serializer.DataField(ref _icon, "icon", SpriteSpecifier.Invalid); serializer.DataField(ref _icon, "icon", SpriteSpecifier.Invalid);
serializer.DataField(ref _requiredPoints, "requiredpoints", 0); serializer.DataField(ref _requiredPoints, "requiredPoints", 0);
serializer.DataField(ref _requiredTechnologies, "requiredtechnologies", new List<string>()); serializer.DataField(ref _requiredTechnologies, "requiredTechnologies", new List<string>());
serializer.DataField(ref _unlockedRecipes, "unlockedrecipes", new List<string>()); serializer.DataField(ref _unlockedRecipes, "unlockedRecipes", new List<string>());
} }
} }
} }

View File

@@ -1,4 +1,4 @@
# In order to make this list somewhat organized, please place new technologies underneath their overarching "base" technology. # In order to make this list somewhat organized, please place new technologies underneath their overarching "base" technology.
# The technology tree is using this layout - https://tgstation13.org/wiki//images/thumb/f/f4/ResearchTree.png/800px-ResearchTree.png # The technology tree is using this layout - https://tgstation13.org/wiki//images/thumb/f/f4/ResearchTree.png/800px-ResearchTree.png
# Base Technology # Base Technology
@@ -8,7 +8,7 @@
id: BasicResearch id: BasicResearch
description: Nanotransen basic research technologies. description: Nanotransen basic research technologies.
icon: Constructible/Power/server.rsi/server-on.png icon: Constructible/Power/server.rsi/server-on.png
requiredpoints: 250 requiredPoints: 250
# Biological Technology Tree # Biological Technology Tree
@@ -17,8 +17,8 @@
id: BiologicalTechnology id: BiologicalTechnology
description: Investigations into the natural world. description: Investigations into the natural world.
icon: Constructible/Misc/potted_plants.rsi/applebush.png icon: Constructible/Misc/potted_plants.rsi/applebush.png
requiredpoints: 1000 requiredPoints: 1000
requiredtechnologies: requiredTechnologies:
- BasicResearch - BasicResearch
# Data Theory Technology Tree # Data Theory Technology Tree
@@ -28,8 +28,8 @@
id: DataTheory id: DataTheory
description: Just like regular data, but in space! description: Just like regular data, but in space!
icon: Constructible/Power/computers.rsi/computer-datatheory.png icon: Constructible/Power/computers.rsi/computer-datatheory.png
requiredpoints: 1000 requiredPoints: 1000
requiredtechnologies: requiredTechnologies:
- BasicResearch - BasicResearch
# Industrial Engineering Technology Tree # Industrial Engineering Technology Tree
@@ -39,8 +39,8 @@
id: IndustrialEngineering id: IndustrialEngineering
description: A refresher course on modern engineering technology. description: A refresher course on modern engineering technology.
icon: Constructible/Power/protolathe.rsi/protolathe.png icon: Constructible/Power/protolathe.rsi/protolathe.png
requiredpoints: 1000 requiredPoints: 1000
requiredtechnologies: requiredTechnologies:
- BasicResearch - BasicResearch
- type: technology - type: technology
@@ -48,10 +48,10 @@
id: Sheets id: Sheets
description: Print those sheets! description: Print those sheets!
icon: Objects/Materials/sheet_metal.png icon: Objects/Materials/sheet_metal.png
requiredpoints: 250 requiredPoints: 250
requiredtechnologies: requiredTechnologies:
- IndustrialEngineering - IndustrialEngineering
unlockedrecipes: unlockedRecipes:
- MetalStack - MetalStack
- GlassStack - GlassStack
@@ -62,8 +62,8 @@
id: ElectromagneticTheory id: ElectromagneticTheory
description: Try not to fry yourself. description: Try not to fry yourself.
icon: Constructible/Power/apc.rsi/apcewires.png icon: Constructible/Power/apc.rsi/apcewires.png
requiredpoints: 1000 requiredPoints: 1000
requiredtechnologies: requiredTechnologies:
- BasicResearch - BasicResearch
# Bluespace Theory Technology Tree # Bluespace Theory Technology Tree
@@ -73,6 +73,6 @@
id: BluespaceTheory id: BluespaceTheory
description: An experimental course on the mysterious technology known as bluespace. description: An experimental course on the mysterious technology known as bluespace.
icon: Objects/Misc/hand_tele.png icon: Objects/Misc/hand_tele.png
requiredpoints: 1000 requiredPoints: 1000
requiredtechnologies: requiredTechnologies:
- BasicResearch - BasicResearch