Physical desc fixes (#7093)
This commit is contained in:
@@ -28,8 +28,8 @@ namespace Content.Shared.Chemistry.Reagent
|
|||||||
[DataField("id", required: true)]
|
[DataField("id", required: true)]
|
||||||
public string ID { get; } = default!;
|
public string ID { get; } = default!;
|
||||||
|
|
||||||
[DataField("name")]
|
[DataField("name", required: true)]
|
||||||
public string Name { get; } = string.Empty;
|
public string Name { get; } = default!;
|
||||||
|
|
||||||
[DataField("group")]
|
[DataField("group")]
|
||||||
public string Group { get; } = "Unknown";
|
public string Group { get; } = "Unknown";
|
||||||
@@ -41,11 +41,11 @@ namespace Content.Shared.Chemistry.Reagent
|
|||||||
[DataField("abstract")]
|
[DataField("abstract")]
|
||||||
public bool Abstract { get; private set; }
|
public bool Abstract { get; private set; }
|
||||||
|
|
||||||
[DataField("desc")]
|
[DataField("desc", required: true)]
|
||||||
public string Description { get; } = string.Empty;
|
public string Description { get; } = default!;
|
||||||
|
|
||||||
[DataField("physicalDesc")]
|
[DataField("physicalDesc", required: true)]
|
||||||
public string PhysicalDescription { get; } = string.Empty;
|
public string PhysicalDescription { get; } = default!;
|
||||||
|
|
||||||
[DataField("color")]
|
[DataField("color")]
|
||||||
public Color SubstanceColor { get; } = Color.White;
|
public Color SubstanceColor { get; } = Color.White;
|
||||||
|
|||||||
@@ -3,7 +3,7 @@
|
|||||||
name: Astrotame
|
name: Astrotame
|
||||||
group: Foods
|
group: Foods
|
||||||
desc: The sweetness of a thousand sugars but none of the calories.
|
desc: The sweetness of a thousand sugars but none of the calories.
|
||||||
# physicalDesc:
|
physicalDesc: sugary
|
||||||
color: aquamarine
|
color: aquamarine
|
||||||
|
|
||||||
- type: reagent
|
- type: reagent
|
||||||
@@ -11,7 +11,7 @@
|
|||||||
name: BBQ sauce
|
name: BBQ sauce
|
||||||
group: Foods
|
group: Foods
|
||||||
desc: Hand wipes not included.
|
desc: Hand wipes not included.
|
||||||
physicalDesc: Gloopy.
|
physicalDesc: gloopy # splurgy
|
||||||
color: darkred
|
color: darkred
|
||||||
|
|
||||||
- type: reagent
|
- type: reagent
|
||||||
@@ -19,7 +19,7 @@
|
|||||||
name: corn oil
|
name: corn oil
|
||||||
group: Foods
|
group: Foods
|
||||||
desc: Corn oil, A delicious oil used in cooking. Made from corn.
|
desc: Corn oil, A delicious oil used in cooking. Made from corn.
|
||||||
# physicalDesc:
|
physicalDesc: oily
|
||||||
color: yellow
|
color: yellow
|
||||||
|
|
||||||
- type: reagent
|
- type: reagent
|
||||||
@@ -27,7 +27,7 @@
|
|||||||
name: frostoil
|
name: frostoil
|
||||||
group: Foods
|
group: Foods
|
||||||
desc: Leaves the tongue numb in its passage.
|
desc: Leaves the tongue numb in its passage.
|
||||||
# physicalDesc:
|
physicalDesc: cold
|
||||||
color: skyblue
|
color: skyblue
|
||||||
|
|
||||||
- type: reagent
|
- type: reagent
|
||||||
@@ -35,7 +35,7 @@
|
|||||||
name: horseradish sauce
|
name: horseradish sauce
|
||||||
group: Foods
|
group: Foods
|
||||||
desc: Smelly horseradish sauce.
|
desc: Smelly horseradish sauce.
|
||||||
physicalDesc: Overpowering.
|
physicalDesc: overpowering
|
||||||
color: gray
|
color: gray
|
||||||
|
|
||||||
- type: reagent
|
- type: reagent
|
||||||
@@ -43,7 +43,7 @@
|
|||||||
name: hotsauce
|
name: hotsauce
|
||||||
group: Foods
|
group: Foods
|
||||||
desc: Burns so good.
|
desc: Burns so good.
|
||||||
# physicalDesc:
|
physicalDesc: spicy
|
||||||
color: red
|
color: red
|
||||||
|
|
||||||
- type: reagent
|
- type: reagent
|
||||||
@@ -51,7 +51,7 @@
|
|||||||
name: ketchup
|
name: ketchup
|
||||||
group: Foods
|
group: Foods
|
||||||
desc: Made from pureed tomatoes and flavored with spices.
|
desc: Made from pureed tomatoes and flavored with spices.
|
||||||
# physicalDesc:
|
physicalDesc: tangy
|
||||||
color: red
|
color: red
|
||||||
|
|
||||||
- type: reagent
|
- type: reagent
|
||||||
@@ -59,7 +59,7 @@
|
|||||||
name: soy sauce
|
name: soy sauce
|
||||||
group: Foods
|
group: Foods
|
||||||
desc: A salty soy-based flavoring.
|
desc: A salty soy-based flavoring.
|
||||||
# physicalDesc:
|
physicalDesc: salty
|
||||||
color: saddlebrown
|
color: saddlebrown
|
||||||
|
|
||||||
- type: reagent
|
- type: reagent
|
||||||
|
|||||||
@@ -29,6 +29,7 @@
|
|||||||
name: universal enzyme
|
name: universal enzyme
|
||||||
group: Foods
|
group: Foods
|
||||||
desc: Used in cooking various dishes.
|
desc: Used in cooking various dishes.
|
||||||
|
physicalDesc: chalky
|
||||||
color: "#009900"
|
color: "#009900"
|
||||||
metabolisms:
|
metabolisms:
|
||||||
Food:
|
Food:
|
||||||
@@ -54,7 +55,7 @@
|
|||||||
name: sugar
|
name: sugar
|
||||||
group: Foods
|
group: Foods
|
||||||
desc: Tasty spacey sugar!
|
desc: Tasty spacey sugar!
|
||||||
physicalDesc:
|
physicalDesc: sweet
|
||||||
color: white
|
color: white
|
||||||
metabolisms:
|
metabolisms:
|
||||||
Food:
|
Food:
|
||||||
@@ -67,7 +68,7 @@
|
|||||||
name: black pepper
|
name: black pepper
|
||||||
group: Foods
|
group: Foods
|
||||||
desc: Often used to flavor food or make people sneeze.
|
desc: Often used to flavor food or make people sneeze.
|
||||||
physicalDesc: Grainy.
|
physicalDesc: grainy
|
||||||
color: black
|
color: black
|
||||||
metabolisms:
|
metabolisms:
|
||||||
Food:
|
Food:
|
||||||
@@ -80,6 +81,7 @@
|
|||||||
name: vinegar
|
name: vinegar
|
||||||
group: Foods
|
group: Foods
|
||||||
desc: Often used to flavor food.
|
desc: Often used to flavor food.
|
||||||
|
physicalDesc: sour
|
||||||
color: tan
|
color: tan
|
||||||
metabolisms:
|
metabolisms:
|
||||||
Food:
|
Food:
|
||||||
@@ -92,6 +94,7 @@
|
|||||||
name: rice
|
name: rice
|
||||||
group: Foods
|
group: Foods
|
||||||
desc: Hard, small white grains.
|
desc: Hard, small white grains.
|
||||||
|
physicalDesc: chewy
|
||||||
color: white
|
color: white
|
||||||
metabolisms:
|
metabolisms:
|
||||||
Food:
|
Food:
|
||||||
@@ -103,6 +106,7 @@
|
|||||||
name: olive oil
|
name: olive oil
|
||||||
group: Foods
|
group: Foods
|
||||||
desc: Viscous and fragrant.
|
desc: Viscous and fragrant.
|
||||||
|
physicalDesc: oily
|
||||||
color: olive
|
color: olive
|
||||||
metabolisms:
|
metabolisms:
|
||||||
Food:
|
Food:
|
||||||
|
|||||||
@@ -45,7 +45,7 @@
|
|||||||
name: ephedrine
|
name: ephedrine
|
||||||
group: Narcotics
|
group: Narcotics
|
||||||
desc: Increases stun resistance and movement speed, giving you hand cramps. Overdose deals toxin damage and inhibits breathing.
|
desc: Increases stun resistance and movement speed, giving you hand cramps. Overdose deals toxin damage and inhibits breathing.
|
||||||
physicalDesc: Bone white
|
physicalDesc: powdery
|
||||||
color: "#D2FFFA"
|
color: "#D2FFFA"
|
||||||
boilingPoint: 255.0
|
boilingPoint: 255.0
|
||||||
meltingPoint: 36.0
|
meltingPoint: 36.0
|
||||||
|
|||||||
Reference in New Issue
Block a user