Difference between revisions of "User:Pangaea/Notes on infoboxes"

From RimWorld Wiki
Jump to navigation Jump to search
(Created page with "{{tocright}} == Pawn/Race/Animal == <pre> <!-- Intro --> description description_markup image name ? type subtype <!-- General --> basebodysize basehealthscale basehungerr...")
 
Line 2: Line 2:
 
== Pawn/Race/Animal ==
 
== Pawn/Race/Animal ==
 
<pre>  <!-- Intro -->
 
<pre>  <!-- Intro -->
description
+
| name              = String
description_markup
+
| image              = File
image
+
| description       = Text    <!-- Plain, from XML files -->
name ?
+
| description_markup = Wikitext  <!-- With markup, for use in the article intro -->
type
+
| type              = Page    <!-- Animal? Mech? -->
subtype
+
| subtype           = Page    <!-- Domesticated? -->
 
+
<!--   General   -->
  <!-- General -->
+
| basebodysize       = Float
basebodysize
+
| basehealthscale   = Float
basehealthscale
+
| basehungerrate     = Float
basehungerrate
+
| comfytemp_max     = Integer
comfytemp_max
+
| comfytemp_min     = Integer
comfytemp_min
+
| foodtype/diet     = Page
foodtype/diet
+
| flammability       = Float
flammability
+
| has_gender         = Boolean
has_gender
+
| marketvalue       = Integer
marketvalue
+
| movespeed          = Float
 
+
<!--   Combat  -->
  <!-- Fighting -->
+
| armorrating_blunt = Float
armorrating_blunt
+
| armorrating_heat   = Float
armorrating_heat
+
| armorrating_sharp = Float
armorrating_sharp
+
| combatpower       = Integer
combatpower
+
<!-- Life phases -->
 
+
| life_expectancy    = Integer
  <!-- Life phases -->
+
| mass_adult         = Float
mass_adult
+
| mass_baby         = Float
mass_baby
+
| mass_juvenile     = Float
mass_juvenile
+
| maturity_age       = Float
maturity_age
+
| minage_adult       = Float
minage_adult
+
| minage_baby       = Float
minage_baby
+
| minage_juvenile   = Float
minage_juvenile
+
| gestation_period   = Integer
movespeed
+
| offspring_low     = Integer
life_expectancy
+
| offspring_high    = Integer
gestation_period
+
<!--   Taming/hunting  -->
offspring_high
+
| handleskill       = Integer
offspring_low
+
| manhunter_damage  = Float
 
+
| manhunter_tamefail = Float
  <!-- Taming -->
+
| nameontamechance   = Float
handleskill
+
| nuzzlehours       = Integer
manhunter_dmg
+
| petness           = Float
manhunter_tame
+
| predator           = Boolean
maxpreybodysize
+
| maxpreybodysize    = Float
nameontamechance
+
| trainability       = String    <!-- or Page? -->
nuzzlehours
+
| train_haul         = Boolean
petness
+
| train_obedience   = Boolean
predator
+
| train_release     = Boolean
trainability
+
| train_rescue       = Boolean
train_haul
+
| wildness           = Float
train_obedience
+
<!--   Product  -->
train_release
+
| egg_amountlow      = Integer
train_rescue
+
| egg_amounthigh    = Integer
wildness
+
| egg_type          = Integer
 
+
| egg_time          = Integer
  <!-- Products -->
+
| leather_amount     = Integer
leather_amount
+
| leather_type       = Page    <!-- or Page? -->
leather_type
+
| meat_amount       = Integer
meat_amount
+
| meat_type         = Page
meat_type
+
| milk_amount       = Integer
milk_amount
+
| milk_time         = Integer
milk_time
+
| shear_time        = Integer
sheartime
+
| wool_amount       = Integer
wool_amount
+
| wool_type         = Page    <!-- or Page? -->
wool_type
+
<!--   Other      -->
 
+
| ecosystemweight   = Float
  <!-- Unsure -->
+
| recipes_operation = List (,) of String
ecosystemweight
+
| tradetags         = List (,) of String
recipes_operation
+
<!--| butcherproducts?? (mechs) = Integer-->
tradetags
 
butcherproducts?? (mechs)
 
  
 
Attack data: In Attack table
 
Attack data: In Attack table
 
Lives in data: In Biome table
 
Lives in data: In Biome table
 
</pre>
 
</pre>

Revision as of 23:08, 25 July 2019

Template:Tocright

Pawn/Race/Animal

  <!-- Intro -->
| name               = String
| image              = File
| description        = Text    <!-- Plain, from XML files -->
| description_markup = Wikitext   <!-- With markup, for use in the article intro -->
| type               = Page    <!-- Animal? Mech? -->
| subtype            = Page    <!-- Domesticated? -->
<!--   General   -->
| basebodysize       = Float
| basehealthscale    = Float
| basehungerrate     = Float
| comfytemp_max      = Integer
| comfytemp_min      = Integer
| foodtype/diet      = Page
| flammability       = Float
| has_gender         = Boolean
| marketvalue        = Integer
| movespeed          = Float
<!--   Combat   -->
| armorrating_blunt  = Float
| armorrating_heat   = Float
| armorrating_sharp  = Float
| combatpower        = Integer
<!-- Life phases -->
| life_expectancy    = Integer
| mass_adult         = Float
| mass_baby          = Float
| mass_juvenile      = Float
| maturity_age       = Float
| minage_adult       = Float
| minage_baby        = Float
| minage_juvenile    = Float
| gestation_period   = Integer
| offspring_low      = Integer
| offspring_high     = Integer
<!--   Taming/hunting   -->
| handleskill        = Integer
| manhunter_damage   = Float
| manhunter_tamefail = Float
| nameontamechance   = Float
| nuzzlehours        = Integer
| petness            = Float
| predator           = Boolean
| maxpreybodysize    = Float
| trainability       = String     <!-- or Page? -->
| train_haul         = Boolean
| train_obedience    = Boolean
| train_release      = Boolean
| train_rescue       = Boolean
| wildness           = Float
<!--   Product   -->
| egg_amountlow      = Integer
| egg_amounthigh     = Integer
| egg_type           = Integer
| egg_time           = Integer
| leather_amount     = Integer
| leather_type       = Page     <!-- or Page? -->
| meat_amount        = Integer
| meat_type          = Page
| milk_amount        = Integer
| milk_time          = Integer
| shear_time         = Integer
| wool_amount        = Integer
| wool_type          = Page     <!-- or Page? -->
<!--   Other      -->
| ecosystemweight    = Float
| recipes_operation  = List (,) of String
| tradetags          = List (,) of String
<!--| butcherproducts?? (mechs) = Integer-->

Attack data: In Attack table
Lives in data: In Biome table