Changes between Initial Version and Version 1 of RMS:Biomes


Ignore:
Timestamp:
Feb 23, 2008, 4:18:58 AM (16 years ago)
Author:
trac
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • RMS:Biomes

    v1 v1  
     1== Biome(), !AlpineBiome(), !TemperateBiome(), !SteppeBiome(), !MediterraneanBiome(), !SavannaBiome(), !DesertBiome(), !SemiAridBiome(), !PolarBiome(), !TropicBiome() ==
     2This is the constructor. It currently does nothing except initialize the object.
     3== getLand() ==
     4This method returns the predefined land object for the biome.
     5== getWater() ==
     6This method returns the predefined water object for the biome.
     7== getGeology ==
     8This method returns the predefined geology object for the biome.
     9== getTrees() ==
     10This method returns the predefined tree object for the biome.
     11== getPlants() ==
     12This method returns the predefined plant object for the biome.
     13== getFauna() ==
     14This method returns the predefined fauna object for the biome.
     15
     16The following objects are returned when the various get* methods in Biome objects get called. I will not detail what each method does because they all do the same thing. They randomly return a random terrain, surface,or object of a certain type that has been specified for a biome. has* methods are used so the scripter knows whether or not the biome has a certain type. add* methods are used to define custom biomes.
     17
     18The !LandBiome object is a container of terrain which is used when getLand is called within a Biome object.
     19
     20== !LandBiome(), !AlpineLandBiome(), !TemperateLandBiome(), !SteppeLandBiome(), !MediterraneanLandBiome(), !SavannaLandBiome(), !DesertLandBiome(), !SemiAridLandBiome(), !PolarLandBiome(), !TropicLandBiome() ==
     21== hasDirt() ==
     22== hasGrass() ==
     23== hasSand() ==
     24== hasSnow() ==
     25== hasForest() ==
     26== hasForestFloor() ==
     27== hasRoad() ==
     28== hasFarmland() ==
     29== hasBeach() ==
     30== getDirt() ==
     31== getGrass() ==
     32== getSand() ==
     33== getSnow() ==
     34== getForest() ==
     35== getForestFloor() ==
     36== getRoad() ==
     37== getFarmland() ==
     38== getBeach() ==
     39== getAny() ==
     40== addDirt() ==
     41== addGrass() ==
     42== addSand() ==
     43== addSnow() ==
     44== addForest() ==
     45== addForestFloor() ==
     46== addRoad() ==
     47== addFarmland() ==
     48== addBeach() ==
     49
     50The !WaterBiome object is a container of Water surfaces which are used when getWater is called within a Biome object.
     51
     52== !WaterBiome(), !AlpineWaterBiome(), !TemperateWaterBiome(), !SteppeWaterBiome(), !MediterraneanWaterBiome(), !SavannaWaterBiome(), !DesertWaterBiome(), !SemiAridWaterBiome(), !PolarWaterBiome(), !TropicWaterBiome() ==
     53== hasCoral() ==
     54== hasRock() ==
     55== hasPebble() ==
     56== hasSand() ==
     57== hasIce() ==
     58== hasRiver() ==
     59== hasShallow() ==
     60== hasNormal() ==
     61== hasDeep() ==
     62== hasFordShallow() ==
     63== hasFordRocky() ==
     64== hasMarsh() ==
     65== hasSwamp() ==
     66== getCoral() ==
     67== getRock() ==
     68== getPebble() ==
     69== getSand() ==
     70== getIce() ==
     71== getRiver() ==
     72== getShallow() ==
     73== getNormal() ==
     74== getDeep() ==
     75== getFordShallow() ==
     76== getFordRocky() ==
     77== getMarsh() ==
     78== getSwamp() ==
     79== getAny() ==
     80== addCoral() ==
     81== addRock() ==
     82== addPebble() ==
     83== addSand() ==
     84== addIce() ==
     85== addRiver() ==
     86== addShallow() ==
     87== addNormal() ==
     88== addDeep() ==
     89== addFordShallow() ==
     90== addFordRocky() ==
     91== addMarsh() ==
     92== addSwamp() ==
     93
     94The !FaunaBiome object is a container of animals which are used when getFauna is called within a Biome object.
     95
     96== !FaunaBiome(), !AlpineFaunaBiome(), !TemperateFaunaBiome(), !SteppeFaunaBiome(), !MediterraneanFaunaBiome(), !SavannaFaunaBiome(), !DesertFaunaBiome(), !SemiAridFaunaBiome(), !PolarFaunaBiome(), !TropicFaunaBiome() ==
     97== getCosmetic() ==
     98== getBreeding() ==
     99== getDomestic() ==
     100== getRisky() ==
     101== getRiskyConsumable() ==
     102== getPassiveConsumable() ==
     103== getCosmetic() ==
     104== getBreeding() ==
     105== getDomestic() ==
     106== getRisky() ==
     107== getRiskyConsumable() ==
     108== getPassiveConsumable() ==
     109== getAny() ==
     110== addCosmetic() ==
     111== addBreeding() ==
     112== addDomestic() ==
     113== addRisky() ==
     114== addRiskyConsumable() ==
     115== addPassiveConsumable() ==
     116
     117The !PlantBiome object is a container of Plants which are used when getPlants is called within a Biome object.
     118
     119== !PlantBiome(), !AlpinePlantBiome(), !TemperatePlantBiome(), !SteppePlantBiome(), !MediterraneanPlantBiome(), !SavannaPlantBiome(), !DesertPlantBiome(), !SemiAridPlantBiome(), !PolarPlantBiome(), !TropicPlantBiome() ==
     120== hasAquatic() ==
     121== hasBush() ==
     122== hasCacti() ==
     123== hasFern() ==
     124== hasFlower() ==
     125== hasGrass() ==
     126== getAquatic() ==
     127== getBush() ==
     128== getCacti() ==
     129== getFern() ==
     130== getFlower() ==
     131== getGrass() ==
     132== getAny() ==
     133== addAquatic() ==
     134== addBush() ==
     135== addCacti() ==
     136== addFern() ==
     137== addFlower() ==
     138== addGrass() ==
     139
     140The !TreeBiome object is a container of Trees which are used when getTrees is called within a Biome object.
     141
     142== !TreeBiome(), !AlpineTreeBiome(), !TemperateTreeBiome(), !SteppeTreeBiome(), !MediterraneanTreeBiome(), !SavannaTreeBiome(), !DesertTreeBiome(), !SemiAridTreeBiome(), !PolarTreeBiome(), !TropicTreeBiome() ==
     143== hasPalm() ==
     144== hasConiferEvergreen() ==
     145== hasConiferDeciduous() ==
     146== hasLeafedEvergreen() ==
     147== hasLeafedDeciduous() ==
     148== hasDead() ==
     149== getPalm() ==
     150== getConiferEvergreen() ==
     151== getConiferDeciduous() ==
     152== getLeafedEvergreen() ==
     153== getLeafedDeciduous() ==
     154== getDead() ==
     155== getAny() ==
     156== addPalm() ==
     157== addConiferEvergreen() ==
     158== addConiferDeciduous() ==
     159== addLeafedEvergreen() ==
     160== addLeafedDeciduous() ==
     161== addDead() ==
     162
     163The !GeoBiome object is a container of geological entities which are used when getGeology is called within a Biome object.
     164
     165== !GeoBiome(), !AlpineGeoBiome(), !TemperateGeoBiome(), !SteppeGeoBiome(), !MediterraneanGeoBiome(), !SavannaGeoBiome(), !DesertGeoBiome(), !SemiAridGeoBiome(), !PolarGeoBiome(), !TropicGeoBiome() ==
     166== hasSettlement() ==
     167== hasFloatingIce() ==
     168== hasMountainPeak() ==
     169== hasWaterFeature() ==
     170== hasLowCliff() ==
     171== hasHighCliff() ==
     172== hasRockOther() ==
     173== hasRockConsumable() ==
     174== hasOreConsumable() ==
     175== getSettlement() ==
     176== getFloatingIce() ==
     177== getMountainPeak() ==
     178== getWaterFeature() ==
     179== getLowCliff() ==
     180== getHighCliff() ==
     181== getRockOther() ==
     182== getRockConsumable() ==
     183== getOreConsumable() ==
     184== getAny() ==
     185== addSettlement() ==
     186== addFloatingIce() ==
     187== addMountainPeak() ==
     188== addWaterFeature() ==
     189== addLowCliff() ==
     190== addHighCliff() ==
     191== addRockOther() ==
     192== addRockConsumable() ==
     193== addOreConsumable() ==