# Ecosystem Simulation Script -- Potential Demo Data Script 1 # This script just tests energy updates and creature expiration. # ########################################################## Browser aging # create browser Browser1 6 1 1 status Browser1 tick 1 status Browser1 tick 1 status Browser1 tick 1 # After that tick, Browser1 should be exactly out of energy. status Browser1 ########################################################## Grazer aging # create grazer Grazer1 6 1 1 status Grazer1 tick 1 status Grazer1 tick 1 status Grazer1 tick 1 # After that tick, Grazer1 should be exactly out of energy. status Grazer1 ########################################################## Grendel aging # create grendel Grendel1 6 1 1 status Grendel1 tick 1 status Grendel1 tick 1 # After that tick, Grendel1 should be exactly out of energy. status Grendel1 ########################################################## Bush aging # create bush Bush1 25 1 1 status Bush1 tick 1 status Bush1 tick 1 status Bush1 tick 1 # After that tick, Bush1 should have exactly 28 units of energy. status Bush1 ########################################################## Shut down # shut down exit ########################################################## End of script