# Ecosystem Simulation Script -- Potential Demo Data Script 3 # This script just tests herbivores munching plants. # ########################################################## Plant bushes # Populate the landscape with plants: create bush Bush0101 20 1 1 create bush Bush0102 20 1 2 create bush Bush0103 20 1 3 create bush Bush0104 20 1 4 create bush Bush0105 20 1 5 create bush Bush0201 20 2 1 create bush Bush0202 20 2 2 create bush Bush0203 20 2 3 create bush Bush0204 20 2 4 create bush Bush0205 20 2 5 create bush Bush0301 20 3 1 create bush Bush0302 20 3 2 create bush Bush0303 20 3 3 create bush Bush0304 20 3 4 create bush Bush0305 20 3 5 create bush Bush0401 20 4 1 create bush Bush0402 20 4 2 create bush Bush0403 20 4 3 create bush Bush0404 20 4 4 create bush Bush0405 20 4 5 create bush Bush0501 20 5 1 create bush Bush0502 20 5 2 create bush Bush0503 20 5 3 create bush Bush0504 20 5 4 create bush Bush0505 20 5 5 ########################################################## Grazer alone # Make a short run, eating bushes: create grazer Grazer1 20 0 5 status Grazer1 tick 4 status Bush0105 status Bush0104 status Bush0204 status Bush0203 status Grazer1 ########################################################## Browser # Add an unfortunately placed Browser: create browser Browser1 20 0 5 status Browser1 tick 4 status Browser1 status Grazer1 ########################################################## Browser # Add a more fortunate Browser: create browser Browser2 20 3 5 status Browser1 tick 3 status Browser2 status Bush0305 status Bush0405 status Bush0404 status Bush0504 ########################################################## Shut down # shut down exit ########################################################## End of script