forked from Revolutionary-Games/Thrive
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
0821414
commit 6469218
Showing
3 changed files
with
56 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<Compounds> | ||
<Compound Name="Water" Color="#0" /> | ||
<Compound Name="Oxygen" Color="#0" /> | ||
<Compound Name="Carbon Dioxide" Color="#0" /> | ||
<Compound Name="Sugar" Color="#0" /> | ||
<Compound Name="ATP" Color="#0" /> | ||
<Compound Name="Light" Color="#0" /> | ||
<Compound Name="Lactic Acid" Color="#0" /> | ||
</Compounds> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<Organelles> | ||
<Organelle Name="Mitochondrion" /> | ||
<Organelle Name="Chloroplast" /> | ||
</Organelles> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<Processes> | ||
<Process Name="Photosynthesis" TimeTaken="1"> | ||
<Inputs> | ||
<Input CompoundID="Water" Amount="6" /> | ||
<Input CompoundID="Carbon Dioxide" Amount="6" /> | ||
<Input CompoundID="Light" Amount="1" /> | ||
</Inputs> | ||
<Outputs> | ||
<Output CompoundID="Oxygen" Amount="6" /> | ||
<Output CompoundID="Sugar" Amount="1" /> | ||
</Outputs> | ||
<Organelles> | ||
<Organelle OrganelleID="Chloroplast" /> | ||
</Organelles> | ||
</Process> | ||
<Process Name="Aerobic Respiration" TimeTaken="1"> | ||
<Inputs> | ||
<Input CompoundID="Sugar" Amount="1" /> | ||
<Input CompoundID="Oxygen" Amount="6" /> | ||
</Inputs> | ||
<Outputs> | ||
<Output CompoundID="Water" Amount="6" /> | ||
<Output CompoundID="Carbon Dioxide" Amount="6" /> | ||
<Output CompoundID="ATP" Amount="38" /> | ||
</Outputs> | ||
<Organelles> | ||
<Organelle OrganelleID="Mitochondrion" /> | ||
</Organelles> | ||
</Process> | ||
<Process Name="Lactic Acid Fermentation" TimeTaken="1"> | ||
<Inputs> | ||
<Input CompoundID="Sugar" Amount="1" /> | ||
</Inputs> | ||
<Outputs> | ||
<Output CompoundID="Lactic Acid" Amount="2" /> | ||
<Output CompoundID="ATP" Amount="2" /> | ||
</Outputs> | ||
<Organelles /> | ||
</Process> | ||
</Processes> |