Content deleted Content added
Personal link to new page template Tag: 2017 source edit |
m Move GameData tests to subpage Tags: Replaced 2017 source edit |
||
Line 3: | Line 3: | ||
Personal notes on adding new pages: [[User:Chorus/New Page]] |
Personal notes on adding new pages: [[User:Chorus/New Page]] |
||
Testing [[Module:GameData]] at [[User:Chorus/GameDataTest]]. |
|||
= Game Data = |
|||
Testing adding item information from scraped data using [[Module:GameData]]. The scraper can be found at [[User:Chorus/genprotosets.py]]. You will need a recent Python 3, pythonnet, and UnityPy. Or just ping me that data needs to be scraped after a patch. |
|||
== Particle Container == |
|||
<pre>{{#invoke:GameData|itemFieldDirect|Particle Container|Description}}</pre> |
|||
{{#invoke:GameData|itemFieldDirect|Particle Container|Description}} |
|||
<pre>{{#invoke:GameData|recipesMakingDirect|Particle Container}}</pre> |
|||
{{#invoke:GameData|recipesMakingDirect|Particle Container}} |
|||
<pre>{{#invoke:GameData|recipesUsingDirect|Particle Container}}</pre> |
|||
{{#invoke:GameData|recipesUsingDirect|Particle Container}} |
|||
== Magnetic Coil == |
|||
<pre>{{#invoke:GameData|itemFieldDirect|Magnetic Coil|Description}}</pre> |
|||
{{#invoke:GameData|itemFieldDirect|Magnetic Coil|Description}} |
|||
<pre>{{#invoke:GameData|recipesMakingDirect|Magnetic Coil}}</pre> |
|||
{{#invoke:GameData|recipesMakingDirect|Magnetic Coil}} |
|||
<pre>{{#invoke:GameData|recipesUsingDirect|Magnetic Coil}}</pre> |
|||
{{#invoke:GameData|recipesUsingDirect|Magnetic Coil}} |
|||
== Refined Oil == |
|||
<pre>{{#invoke:GameData|recipesMakingDirect|Refined Oil}}</pre> |
|||
{{#invoke:GameData|recipesMakingDirect|Refined Oil}} |
|||
<pre>{{#invoke:GameData|recipesUsingDirect|Refined Oil}}</pre> |
|||
{{#invoke:GameData|recipesUsingDirect|Refined Oil}} |
|||
== Organic Crystal == |
|||
{{ItemInfo |
|||
|ItemName=Organic Crystal |
|||
|Categories=Material, Fuel |
|||
|Description=A high-grade chemical product. Used to produce higher strength crystals with a crystal structure. It can also be directly gathered from rare organic crystal vein. |
|||
|Info1Type=Fuel Type |
|||
|Info1Text=Chemical |
|||
|Info2Type=Energy |
|||
|Info2Text=1.80 MJ |
|||
|Info3Type=Fuel Chamber Gen. |
|||
|Info3Text=-20% |
|||
|Info4Type=Made In |
|||
|Info4Text=Chemical Facility |
|||
|Info5Type=Gathered From |
|||
|Info5Text=Organic Crystal Vein {{glow|(rare)}} |
|||
|StackSize=100 |
|||
|Recipes={{#invoke:GameData|itemRecipesDirect|Organic Crystal}} |
|||
}} |
|||
<pre>{{#invoke:GameData|recipesMakingDirect|Organic Crystal}}</pre> |
|||
{{#invoke:GameData|recipesMakingDirect|Organic Crystal}} |
|||
<pre>{{#invoke:GameData|recipesUsingDirect|Organic Crystal}}</pre> |
|||
{{#invoke:GameData|recipesUsingDirect|Organic Crystal}} |
|||
== Hydrogen == |
|||
<pre>{{#invoke:GameData|recipesMakingDirect|Hydrogen}}</pre> |
|||
{{#invoke:GameData|recipesMakingDirect|Hydrogen}} |
|||
<pre>{{#invoke:GameData|recipesUsingDirect|Hydrogen}}</pre> |
|||
{{#invoke:GameData|recipesUsingDirect|Hydrogen}} |
|||
== Crude Oil == |
|||
<pre>{{#invoke:GameData|recipesMakingDirect|Crude Oil}}</pre> |
|||
{{#invoke:GameData|recipesMakingDirect|Crude Oil}} |
|||
<pre>{{#invoke:GameData|recipesUsingDirect|Crude Oil}}</pre> |
|||
{{#invoke:GameData|recipesUsingDirect|Crude Oil}} |
|||
== Oceans == |
|||
<pre>{{#invoke:GameData|recipesMakingDirect|Water}}</pre> |
|||
{{#invoke:GameData|recipesMakingDirect|Water}} |
|||
<pre>{{#invoke:GameData|recipesMakingDirect|Sulfuric Acid}}</pre> |
|||
{{#invoke:GameData|recipesMakingDirect|Sulfuric Acid}} |
Revision as of 19:44, 9 June 2024
I can be found at the dsp-wiki Discord with the name Chorus.
Personal notes on adding new pages: User:Chorus/New Page
Testing Module:GameData at User:Chorus/GameDataTest.