We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents fc98257 + 5617bca commit 0eabed4Copy full SHA for 0eabed4
4 files changed
plugin_template/localizations/english.csv
@@ -1,5 +1,25 @@
1
Key,Type,Desc,English
2
3
+Resource/DisplayName/Oxygen,Text,,Oxygen
4
+Resource/Abbreviation/O2,Text,,O2
5
+
6
+Resource/DisplayName/CarbonDioxide,Text,,Carbon Dioxide
7
+Resource/Abbreviation/CO2,Text,,CO2
8
9
+Resource/DisplayName/Water,Text,,Water
10
+Resource/Abbreviation/H2O,Text,,H2O
11
12
+Resource/DisplayName/WasteWater,Text,,Waste Water
13
+Resource/Abbreviation/WaH2O,Text,,WaH2O
14
15
+Resource/DisplayName/Food,Text,,Food
16
+Resource/Abbreviation/FD,Text,,FD
17
18
+Resource/DisplayName/Waste,Text,,Waste
19
+Resource/Abbreviation/WST,Text,,WST
20
21
VAB/Tooltip/Food,Text,,Food
22
VAB/Tooltip/Water,Text,,Water
-VAB/Tooltip/Oxygen,Text,,Oxygen
23
+VAB/Tooltip/Oxygen,Text,,Oxygen
24
+VAB/Tooltip/CarbonDioxide,Text,,Carbon Dioxide
25
+VAB/Tooltip/WasteWater,Text,,Waste Water
plugin_template/localizations/french.csv
Key,Type,Desc,French
+Resource/DisplayName/Oxygen,Text,,Oxygène
+Resource/DisplayName/CarbonDioxide,Text,,Dioxyde de Carbone
+Resource/DisplayName/Water,Text,,Eau
+Resource/DisplayName/WasteWater,Text,,Eau Usée
+Resource/DisplayName/Food,Text,,Nourriture
+Resource/Abbreviation/FD,Text,,NT
+Resource/DisplayName/Waste,Text,,Déchets
+Resource/Abbreviation/WST,Text,,DE
VAB/Tooltip/Food,Text,,Nourriture
VAB/Tooltip/Water,Text,,Eau
-VAB/Tooltip/Oxygen,Text,,Oxygène
+VAB/Tooltip/Oxygen,Text,,Oxygène
+VAB/Tooltip/CarbonDioxide,Text,,Dioxyde de Carbone
+VAB/Tooltip/WasteWater,Text,,Eau Usée
plugin_template/patches/community_resources.patch
@@ -42,6 +42,23 @@
42
vfxFuelType: "Pressurized";
43
}
44
45
+@new("CarbonDioxide")
46
+:resources {
47
+ displayNameKey: "Resource/DisplayName/CarbonDioxide";
48
+ abbreviationKey: "Resource/Abbreviation/CO2";
49
+ isTweakable: true;
50
+ isVisible: true;
51
+ massPerUnit: 1;
52
+ volumePerUnit: 4;
53
+ specificHeatCapacityPerUnit: 850;
54
+ flowMode: $FM_STAGE_PRIORITY_FLOW;
55
+ transferMode: $TM_PUMP;
56
+ costPerUnit: 0.8;
57
+ NonStageable: false;
58
+ resourceIconAssetAddress: "";
59
+ vfxFuelType: "Pressurized";
60
+}
61
62
@new("Water")
63
:resources {
64
displayNameKey: "Resource/DisplayName/Water";
@@ -59,6 +76,23 @@
76
vfxFuelType: "NoFuel";
77
78
79
+@new("WasteWater")
80
81
+ displayNameKey: "Resource/DisplayName/WasteWater";
82
+ abbreviationKey: "Resource/Abbreviation/WaH2O";
83
84
85
+ massPerUnit: 0.001;
86
+ volumePerUnit: 1;
87
+ specificHeatCapacityPerUnit: 4.184;
88
89
90
91
92
93
+ vfxFuelType: "NoFuel";
94
95
96
@new("Food")
97
98
displayNameKey: "Resource/DisplayName/Food";
plugin_template/patches/resource_units.patch
@@ -1,4 +1,5 @@
@new()
:resource_units {
Water: "l";
+ WasteWater: "l";
0 commit comments