# Ecosystem Simulation Script -- Potential Demo Data Script 2 # This script just tests creature movement. # ########################################################## Browser movement # #create browser Browser1 200 1 3 #status Browser1 #tick 1 #status Browser1 #tick 1 #status Browser1 #tick 1 # After that tick, Browser1 should be at location (3, 2). #status Browser1 ########################################################## Grazer movement # #create grazer Grazer1 200 4 4 #status Grazer1 #tick 1 #status Grazer1 #tick 1 #status Grazer1 #tick 1 # After that tick, Grazer1 should be at location (6, 3). #status Grazer1 ########################################################## Grendel movement # create grendel Grendel1 100 10 10 status Grendel1 tick 1 status Grendel1 tick 1 status Grendel1 tick 1 status Grendel1 tick 1 status Grendel1 tick 1 status Grendel1 tick 1 status Grendel1 tick 1 status Grendel1 tick 1 status Grendel1 tick 1 status Grendel1 tick 1 # After that tick, Grendel1 should be at location (13, 11). status Grendel1 ########################################################## Bush movement # create bush Bush1 25 1 1 status Bush1 tick 1 status Bush1 tick 1 status Bush1 tick 1 # After that tick, Bush1 should have still be at location (1, 1). status Bush1 ########################################################## Shut down # shut down exit ########################################################## End of script