User:SeMi/ES3/FUNGUS

From FSG Wiki

Jump to: navigation, search

To grow a mushroom, you need to create a container with WALL and fill it with DIRT. You then have to add WATER to make MUD in which you can plant SPORES. The SPORES will grow FUNGUS in the MUD. If the FUNGUS touches BLANK it will start to grow a MUSHROOM. This MUSHROOM will produce SPORES, completing the circle.

A nice trick is to mix SAND and MUD so the FUNGUS will grow in a more natural, rootlike way.


<element name="DIRT" color="FFAA9922" dens="1.01">
<gravity g="0.95" r="0.25"/>
<reaction chance="0.3" trigger="WATER" res1="1.0" ares1="BLANK" bres1="MUD"/>
</element>

<element name="MUD" color="FF886622" dens="1.4" menu="0">
<gravity g="0.95" r="0.25"/>
</element>

<element name="SPORES" color="FF446620" dens="1">
<gravity g="0.95" r="0.25"/>
<self chance="0.005" result="DIRT"/>
<reaction chance="0.1" trigger="WATER" res1="1.0" ares1="FUNGUS" bres1="FUNGUS"/>
</element>

<element name="FUNGUS" color="FFCCCCCC" menu="0">
<reaction chance="0.01" trigger="BLANK" res1="1.0" ares1="MUSHROOM" bres1="MUSHROOM"/>
<reaction chance="0.1" trigger="MUD" res1="1.0" ares1="FUNGUS" bres1="FUNGUS"/>
</element>

<element name="MUSHROOM" color="FFFFEEEE" menu="0">
<reaction chance="0.05" trigger="BLANK" res1="0.9" ares1="MUSHROOM" bres1="MUSHROOM" 
res2="0.1" ares2="MUSHROOM" bres2="SPORES"/>
<reaction chance="0.01" trigger="WATER" res1="1.0" ares1="MUSHROOM" bres1="BLANK"/>
</element>
Personal tools