Bay 12 Games Forum

Please login or register.

Login with username, password and session length
Advanced search  
Pages: 1 ... 191 192 [193] 194 195 ... 365

Author Topic: [MODDING] CREATURE & ENTITY QUESTIONS THREAD  (Read 645992 times)

Bearskie

  • Bay Watcher
  • Nyam nyam
    • View Profile
Re: [MODDING] CREATURE & ENTITY QUESTIONS THREAD
« Reply #2880 on: September 09, 2017, 10:22:38 pm »

@FakeGamerCrew: What does your errorlog say? I've taken a brief glance at your raws, and from what I see there's alot of repetition at the caste level in regards to the same set of tissues etc.

@mradam: Apparently it does, though I've never tried it before. You might have to adjust population numbers as well as the cluster numbers.
« Last Edit: September 09, 2017, 10:40:23 pm by Bearskie »
Logged

FakeGamerCrow

  • Bay Watcher
    • View Profile
Re: [MODDING] CREATURE & ENTITY QUESTIONS THREAD
« Reply #2881 on: September 10, 2017, 03:52:12 am »

@Bearskie

I'm not sure, I haven't had an error log, like, the game hasn't been crashing, the materials are just not working as they should.

I'm pretty sure most of the reason I'm having problems is because it's so messy and there's duplicate definitions everywhere.
But I have no idea how to format it to be neater, I've just been looking at the code for other mods and stuff and trying to reverse engineer it, so there's probably a lot of redundant stuff.
I feel like I've hit a bit of a wall with what I can figure out by myself.

Thankyou for responding.


[edit: Ive tried to create a better structure for the creature file though thats fixed some things but not others. Still working on it   https://pastebin.com/GXufutaT     ]
« Last Edit: September 10, 2017, 05:52:06 am by FakeGamerCrow »
Logged

Bearskie

  • Bay Watcher
  • Nyam nyam
    • View Profile
Re: [MODDING] CREATURE & ENTITY QUESTIONS THREAD
« Reply #2882 on: September 10, 2017, 06:50:57 am »

DF always has an errorlog - you can find it just below the DF executable. Anyway, some things I noticed wrong in your latest version:

1. [BODY_DETAIL_PLAN:EXOSKELETON_TISSUE_LAYERS:MUSHROOM_OUTER:NONE:MUSHROOM_INNER].

NONE isn't a valid argument; you're essentially asking your funguys to be layered with a non-existant NONE tissue. I would use [BODY_DETAIL_PLAN:EXOSKELETON_TISSUE_LAYERS:MUSHROOM_OUTER:MUSHROOM_OUTER:MUSHROOM_INNER] instead, that works.

2. [GENERAL_CHILD_NAME] is creature-level, not caste-level. You should replace it with [CHILDNAME] instead, and define only one [GENERAL_CHILD_NAME] near the beginning.

3. [PROFESSION_NAME] is creature-level, use [CASTE_PROFESSION_NAME] instead

4. Your greasy shroom is the only one that doesn't have fuzz, instead using grease. This is okay, but I believe [SELECT_MATERIAL/TISSUE] is creature-level, which means that you're changing fuzz to grease for all the funguys. What I would do is to define a new grease mat/tissue specifically for the greasy shrooms. Same goes for your elephant shrooms with modified skin.

Also, have you considered using [SELECT_ADDITIONAL_CASTE]?

FakeGamerCrow

  • Bay Watcher
    • View Profile
Re: [MODDING] CREATURE & ENTITY QUESTIONS THREAD
« Reply #2883 on: September 10, 2017, 07:33:11 am »

Thankyou so much!

The original body detail stuff was from the phm mod and I didn't know enough to try and change it but I will do that

Same with the other tag problems.

Doesn't [SELECT_ADDITIONAL_CASTE] just allow me to modify multiple Castes at once? how would that help here?

Also, latest issue. I can shear the Elephant shrooms and get skin but then I cant tan it? though I can stuff it like a corpse???
« Last Edit: September 10, 2017, 07:39:25 am by FakeGamerCrow »
Logged

FakeGamerCrow

  • Bay Watcher
    • View Profile
Re: [MODDING] CREATURE & ENTITY QUESTIONS THREAD
« Reply #2884 on: September 10, 2017, 07:37:38 am »

sorry messed up posting

Just want to say again @Bearskie
thankyou so much, I was really floundering. Just knowing where to find the errorlog has already helped immensely :D
« Last Edit: September 10, 2017, 08:01:25 am by FakeGamerCrow »
Logged

Bearskie

  • Bay Watcher
  • Nyam nyam
    • View Profile
Re: [MODDING] CREATURE & ENTITY QUESTIONS THREAD
« Reply #2885 on: September 10, 2017, 08:10:45 am »

Hmm.. what is the purpose of your plants? Are they just to provide materials for your funguys, or are they actual plants you intend to grow? Your shearable skin issue is likely because the plant SHROOM_LEATHER, which I cannot find.

Here is how I would structure your raws. Take a look at them and feel free to ask any questions later.

Code: [Select]
creature_funguy

[OBJECT:CREATURE]

[CREATURE:FUNGUY_SHROOM]

#Common Tokens#
[NAME:Funguy:Funguys:Funguy]
[CREATURE_TILE:6][COLOR:5:0:0]
[LARGE_ROAMING]
[BIOME:SUBTERRANEAN_WATER]
[UNDERGROUND_DEPTH:1:3]
[FREQUENCY:20]
[PETVALUE:6]
[POPULATION_NUMBER:5:10]
[CLUSTER_NUMBER:3:5]
[PREFSTRING:warm hugs]
[PREFSTRING:caring nature]
[PREFSTRING:simple personality]
[EXTRAVISION][NOT_LIVING]
[NOBONES][NO_DRINK][NO_SLEEP]
CAN_LEARN SLOW_LEARNER[TRAINABLE]
[CAVE_ADAPT]
[NO_THOUGHT_CENTER_FOR_MOVEMENT]
[BABY:0]
[CHILD:1]
[EQUIPS]
[ALL_ACTIVE]
[SWIMS_INNATE]
[HOMEOTHERM:10040]

#Define Materials and Tissues#
[USE_MATERIAL_TEMPLATE:MUSHROOM_OUTER:STRUCTURAL_PLANT_TEMPLATE]
[STATE_NAME_ADJ:ALL_SOLID:scrap]
[MATERIAL_VALUE:1]
[EDIBLE_VERMIN]
[ROTS]
[GENERATES_MIASMA]
[STATE_COLOR:ALL_SOLID:PURPLE]
[DISPLAY_COLOR:5:0:0]
[TISSUE:MUSHROOM_OUTER]
[TISSUE_NAME:outer tissue:NP]
[TISSUE_MATERIAL:LOCAL_CREATURE_MAT:MUSHROOM_OUTER]
[STRUCTURAL]
[RELATIVE_THICKNESS:2]
[CONNECTS]
[TISSUE_SHAPE:LAYER]
[HEALING_RATE:50]
[TISSUE:MUSHROOM_INNER]
[TISSUE_NAME:inner tissue:NP]
[TISSUE_MATERIAL:PLANT_MAT:FUNGUY_SHROOM_TISSUE:MUSHROOM]
[MUSCULAR]
[FUNCTIONAL]
[STRUCTURAL]
[RELATIVE_THICKNESS:1]
[CONNECTS]
[TISSUE_SHAPE:LAYER]
[HEALING_RATE:50]

[USE_MATERIAL_TEMPLATE:GREASE:HAIR_TEMPLATE] #taken from hair template, adjust accordingly
[STATE_NAME:ALL_SOLID:grease]
[STATE_ADJ:ALL_SOLID:grease]
[STOCKPILE_GLOB]
[TISSUE:GREASE]
[TISSUE_NAME:shroom grease:NP]
[TISSUE_MATERIAL:LOCAL_CREATURE_MAT:GREASE]
[RELATIVE_THICKNESS:1]
[SUBORDINATE_TO_TISSUE:SKIN]
[COSMETIC]
[STYLEABLE]
[INSULATION:250]
[TISSUE_SHAPE:STRANDS]

[USE_MATERIAL_TEMPLATE:FUZZ:HAIR_TEMPLATE] #taken from hair template, adjust accordingly
[STATE_NAME:ALL_SOLID:fuzz]
[STATE_ADJ:ALL_SOLID:fuzz]
[THREAD_PLANT]
[TISSUE:FUZZ]
[TISSUE_NAME:shroom fuzz:NP]
[TISSUE_MATERIAL:LOCAL_CREATURE_MAT:FUZZ]
[RELATIVE_THICKNESS:1]
[SUBORDINATE_TO_TISSUE:SKIN]
[COSMETIC]
[STYLEABLE]
[INSULATION:250]
[TISSUE_SHAPE:STRANDS]

[USE_MATERIAL_TEMPLATE:SKIN:SKIN_TEMPLATE]
[TISSUE_NAME:shroom dermis:NP]
[INSULATION:250]
[USE_MATERIAL_TEMPLATE:LEATHER:LEATHER_TEMPLATE]
[USE_MATERIAL_TEMPLATE:PARCHMENT:PARCHMENT_TEMPLATE]
[USE_TISSUE_TEMPLATE:SKIN:SKIN_TEMPLATE]
[RELATIVE_THICKNESS:5]

[USE_MATERIAL_TEMPLATE:MEAD:CREATURE_ALCOHOL_TEMPLATE]
[STATE_NAME_ADJ:ALL_SOLID:frozen shroommead]
[STATE_NAME_ADJ:LIQUID:shroommead]
[STATE_NAME_ADJ:GAS:boiling shroommead]
[MATERIAL_VALUE:2]
[PREFIX:NONE]
[USE_MATERIAL_TEMPLATE:HONEY:CREATURE_EXTRACT_TEMPLATE]
[STATE_NAME_ADJ:ALL_SOLID:crystallized juicy shroom extract]
[STATE_NAME_ADJ:LIQUID:juicy shroom extract]
[STATE_NAME_ADJ:GAS:boiling juicy shroom extract]
[STATE_COLOR:ALL:AMBER]
[MATERIAL_VALUE:2]
[DISPLAY_COLOR:6:0:0]
[PREFIX:NONE]
[EDIBLE_VERMIN]
[EDIBLE_COOKED]
[EDIBLE_RAW]
[MATERIAL_REACTION_PRODUCT:DRINK_MAT:LOCAL_CREATURE_MAT:MEAD]

[USE_MATERIAL_TEMPLATE:IVORY:TOOTH_TEMPLATE]
[STATE_NAME:ALL_SOLID:ivory]
[STATE_ADJ:ALL_SOLID:ivory]
[USE_TISSUE_TEMPLATE:IVORY:IVORY_TEMPLATE]

[USE_MATERIAL_TEMPLATE:VENOM:CREATURE_EXTRACT_TEMPLATE]
[STATE_NAME:ALL_SOLID:shroom toxin]
[STATE_ADJ:ALL_SOLID:shroom toxin]
[STATE_NAME:LIQUID:shroom toxin]
[STATE_ADJ:LIQUID:shroom toxin]
[STATE_NAME:GAS:boiling shroom toxin]
[STATE_ADJ:GAS:boiling shroom toxin]
[PREFIX:NONE]
[SYNDROME]
[SYN_NAME:Toxic shroom contact]
[SYN_AFFECTED_CLASS:GENERAL_POISON]
[SYN_IMMUNE_CREATURE:FUNGUY_SHROOM:ALL]
[SYN_CONTACT]
[CE_PAIN:SEV:50:PROB:50:RESISTABLE:SIZE_DILUTES:START:50:PEAK:500:END:1500]
[CE_ERRATIC_BEHAVIOR:SEV:50:PROB:100:RESISTABLE:SIZE_DILUTES:START:50:PEAK:500:END:1500]
[CE_DIZZINESS:SEV:50:PROB:100:RESISTABLE:SIZE_DILUTES:START:50:PEAK:500:END:1500]
[CE_OOZING:SEV:50:PROB:100:RESISTABLE:SIZE_DILUTES:LOCALIZED:VASCULAR_ONLY:START:50:PEAK:500:END:1500]
[REACTION_CLASS:ADD_SPATTER_VENOM]

#Materials:
MUSHROOM_OUTER
GREASE
FUZZ
SKIN
LEATHER
PARCHMENT
MEAD
HONEY
IVORY
VENOM
#Tissues:
MUSHROOM_OUTER
MUSHROOM_INNER
GREASE
FUZZ
IVORY

#Caste Tokens#
[CASTE:MOMMA_SHROOM]
[CASTE_NAME:Momma Shroom:Momma Shrooms:Shroom]
[FEMALE]
[DESCRIPTION:This huge Shroom mass is constantly growing and budding off new Funguys. While mostly immobile and defenceless, in the wild its children will care for and support it.]
[LITTERSIZE:5:10]
[POP_RATIO:1]
[COMMON_DOMESTIC]
[PET][CARNIVORE][BONECARN][MEANDERER]
[ODOR_LEVEL:100] smell
[ODOR_STRING:Home]
[SMELL_TRIGGER:10000] cannot smell


[CASTE:FRIENDLY_SHROOM]
[MALE][CASTE_NAME:Friendly shroom:Friendly shrooms:Shroom]
[DESCRIPTION:A small, congenial humanoid resembling a mushroom with arms and legs, it comes in various breeds and varieties and are prized as companions.]
[POP_RATIO:20]
[COMMON_DOMESTIC][PET][MEANDERER][BENIGN][CANOPENDOORS][LOCKPICKER][NO_EAT]
[AT_PEACE_WITH_WILDLIFE][RETURNS_VERMIN_KILLS_TO_OWNER][HUNTS_VERMIN]
[FLEEQUICK]
[ODOR_LEVEL:0] no smell
[ODOR_STRING:NONE]
[SMELL_TRIGGER:10000] cannot smell



[CASTE:TOOTHY_SHROOM]
[MALE][CASTE_NAME:Toothy shroom:Toothy shrooms:Shroom]
[DESCRIPTION:A little bigger than a Dwarf, this Shroom has a huge mouth filled with constantly growing teeth. In captivity, their teeth need to be trimmed regularly for their comfort.]
[POP_RATIO:10]
[COMMON_DOMESTIC][PET][CARNIVORE][BONECARN][NOFEAR][NOPAIN][LIKES_FIGHTING][LARGE_PREDATOR]
[ODOR_LEVEL:100] smell
[ODOR_STRING:Portobello mushrooms]
[SMELL_TRIGGER:0] amazing smell



[CASTE:FUZZY_SHROOM]
[MALE][CASTE_NAME:Fuzzy shroom:Fuzzy shrooms:Shroom]
[DESCRIPTION: This Shrooms fuzz grows into a thick, fleece like mass. Fabric made from these fibres is exceptionally warm and soft]
[POP_RATIO:20]
[COMMON_DOMESTIC][PET][MEANDERER][BENIGN][CANOPENDOORS][NO_EAT]
[AT_PEACE_WITH_WILDLIFE]
[FLEEQUICK]
[ODOR_LEVEL:100] smell
[ODOR_STRING:Wet wool]
[SMELL_TRIGGER:10000] cannot smell



[CASTE:TOXIC_SHROOM]
[MALE][CASTE_NAME:Toxic shroom:Toxic shrooms:Shroom]
[DESCRIPTION:This Shroom produces a potent, hallucinogenic toxic and should be treated with extreme care. In small amounts its Toxin is used by some races as a recreational drug]
[POP_RATIO:20]
[COMMON_DOMESTIC][PET][MEANDERER][CANOPENDOORS][NO_EAT]
[FLEEQUICK]
[ODOR_LEVEL:200] smell
[ODOR_STRING:Acidic]
[SMELL_TRIGGER:10000] cannot smell



[CASTE:SPROUTING_SHROOM]
[FEMALE][CASTE_NAME:Sprouting shroom:Sprouting shrooms:Shroom]
[DESCRIPTION:This Shroom is constantly budding, unfortunatly it is too small to create viable Funguys and instead only produces mushroom spawn. Collect them in a Nestbox]
[POP_RATIO:20]
[COMMON_DOMESTIC][PET][MEANDERER][BENIGN][CANOPENDOORS][NO_EAT]
[AT_PEACE_WITH_WILDLIFE]
[FLEEQUICK]
[ODOR_LEVEL:1000] smell
[ODOR_STRING:Mushrooms]
[SMELL_TRIGGER:10000] cannot smell



[CASTE:GREASY_SHROOM]
[MALE][CASTE_NAME:Greasy shroom:Greasy shrooms:Shroom]
[DESCRIPTION:This unfortunate Shroom constantly oozes grease. While this grease can be scraped off and used, making them a valuble part of a soap industry, Greasy shrooms stench and sticky hugs can turn the stomach of even the most stoic butcher]
[POP_RATIO:20]
[COMMON_DOMESTIC][PET][MEANDERER][BENIGN][CANOPENDOORS][NO_EAT]
[AT_PEACE_WITH_WILDLIFE]
[FLEEQUICK]
[ODOR_LEVEL:1000] smell
[ODOR_STRING:Fetid grease]
[SMELL_TRIGGER:10000] cannot smell



[CASTE:JUICY_SHROOM]
[MALE][CASTE_NAME:Juicy shroom:Juicy shrooms:Shroom]
[DESCRIPTION: This Shroom produces a delicious, sugar rich extract which can be used to make juice or distilled into alcohol]
[POP_RATIO:20]
[COMMON_DOMESTIC][PET][MEANDERER][CANOPENDOORS][NO_EAT]
[FLEEQUICK]
[ODOR_LEVEL:200] smell
[ODOR_STRING:Sweet and sugary]
[SMELL_TRIGGER:10000] cannot smell



[CASTE:ELEPHANT_SHROOM]
[MALE][CASTE_NAME:Elephant shroom:Elephant shrooms:Elephant shroom]
[DESCRIPTION:These huge shrooms are slow movers and slow thinkers. They grow a thick, leathery cap on their heads which can be harvested harmlessly for a renewable source of leather]
[POP_RATIO:20]
[COMMON_DOMESTIC][PET][MEANDERER][NO_EAT]
[ODOR_LEVEL:50] smell
[ODOR_STRING:Old leather]
[SMELL_TRIGGER:10000] cannot smell

#Common Tokens#
[SELECT_CASTE:ALL]

#Common Body
[BODY:HUMANOID_SIMPLE]

#Common Tissue Layers
[TISSUE_LAYER:BY_CATEGORY:HEAD:MUSHROOM_INNER]
[TISSUE_LAYER:BY_CATEGORY:BODY_UPPER:MUSHROOM_INNER]
[TISSUE_LAYER:BY_CATEGORY:ALL:MUSHROOM_OUTER]

#Common Positioning/Size
[BODY_DETAIL_PLAN:HUMANOID_HEAD_POSITIONS]
[BODY_DETAIL_PLAN:HUMANOID_RELSIZES]

#Common Attacks
[ATTACK:PUNCH:BODYPART:BY_TYPE:GRASP]
[ATTACK_SKILL:GRASP_STRIKE]
[ATTACK_VERB:punch:punches]
[ATTACK_CONTACT_PERC:100]
[ATTACK_PREPARE_AND_RECOVER:5:5]
[ATTACK_FLAG_WITH]
[ATTACK_PRIORITY:MAIN]
[ATTACK:KICK:BODYPART:BY_TYPE:STANCE]
[ATTACK_SKILL:STANCE_STRIKE]
[ATTACK_VERB:kick:kicks]
[ATTACK_CONTACT_PERC:100]
[ATTACK_PREPARE_AND_RECOVER:10:10]
[ATTACK_FLAG_WITH]
[ATTACK_PRIORITY:SECOND]
[ATTACK_FLAG_BAD_MULTIATTACK]

#Caste Tokens#
[SELECT_CASTE:MOMMA_SHROOM]

[BODY_DETAIL_PLAN:BODY_HAIR_TISSUE_LAYERS:FUZZ]
[SET_TL_GROUP:BY_CATEGORY:ALL:FUZZ]
[TL_COLOR_MODIFIER:RED:1:ORANGE:1:YELLOW:1:GREEN:1:BLUE:1:PURPLE:1:DARK_VIOLET:1]
[TLCM_NOUN:fuzz:SINGULAR]

[BODY_SIZE:0:0:500000]
[BODY_SIZE:1:0:2500000]
[BODY_SIZE:10:0:5000000]
[BODY_APPEARANCE_MODIFIER:LENGTH:90:95:98:100:102:105:110]
[BODY_APPEARANCE_MODIFIER:HEIGHT:90:95:98:100:102:105:110]
[BODY_APPEARANCE_MODIFIER:BROADNESS:90:95:98:100:102:105:110

[PHYS_ATT_RANGE:STRENGTH:1000:2000:2500:3000:3200:3500:4500]
[PHYS_ATT_RANGE:AGILITY:75:300:400:450:500:550:750]
[PHYS_ATT_RANGE:TOUGHNESS:1000:2000:2500:3000:3200:3500:4500]
[PHYS_ATT_RANGE:DISEASE_RESISTANCE:5000:5000:5000:5000:5000:5000:5000]

[MAXAGE:80:100]

[APPLY_CREATURE_VARIATION:STANDARD_QUADRUPED_GAITS:1422:1127:831:488:2500:3700] 18 kph
[APPLY_CREATURE_VARIATION:STANDARD_SWIMMING_GAITS:9000:8900:8825:8775:9500:9900] 1 kph, NO DATA
[APPLY_CREATURE_VARIATION:STANDARD_CRAWLING_GAITS:9000:8900:8825:8775:9500:9900] 1 kph, NO DATA

[CHILDNAME:Princess Spawn:Princess Spawn:Spawn]

[CAN_DO_INTERACTION:HEAL_FUNGUY]
[CDI:ADV_NAME:Heal Funguy]
[CDI:TARGET:A:TOUCHABLE]
[CDI:USAGE_HINT:GREETING]
[CDI:TARGET_RANGE:A:5]
[CDI:MAX_TARGET_NUMBER:A:1]
[CDI:WAIT_PERIOD:300]
[CDI:FREE_ACTION]
[CDI:CAN_BE_MUTUAL]
[CDI:VERB:kisses:kisses:kiss]


[SELECT_CASTE:FRIENDLY_SHROOM]
[BODY_DETAIL_PLAN:BODY_HAIR_TISSUE_LAYERS:FUZZ]
[SET_TL_GROUP:BY_CATEGORY:ALL:FUZZ]
[TL_COLOR_MODIFIER:RED:1:ORANGE:1:YELLOW:1:GREEN:1:BLUE:1:PURPLE:1:DARK_VIOLET:1]
[TLCM_NOUN:fuzz:SINGULAR]

[BODY_SIZE:0:0:1000]
[BODY_SIZE:1:0:5000]
[BODY_SIZE:2:0:20000]
[BODY_APPEARANCE_MODIFIER:HEIGHT:75:95:98:100:102:105:125]
[BODY_APPEARANCE_MODIFIER:BROADNESS:75:95:98:100:102:105:125]

[PHYS_ATT_RANGE:STRENGTH:450:950:1150:1250:1350:1550:2250]               +
[PHYS_ATT_RANGE:AGILITY:1200:1400:1500:1600:1800:2500]                   ++
[PHYS_ATT_RANGE:TOUGHNESS:450:950:1150:1250:1350:1550:2250]              +
[PHYS_ATT_RANGE:RECUPERATION:450:950:1150:1250:1350:1550:2250]           +
[PHYS_ATT_RANGE:DISEASE_RESISTANCE:450:950:1150:1250:1350:1550:2250]     +

[MAXAGE:50:60]

[APPLY_CREATURE_VARIATION:STANDARD_BIPED_GAITS:900:691:482:251:1900:2900] 35 kph
[APPLY_CREATURE_VARIATION:STANDARD_CLIMBING_GAITS:3512:2634:1756:878:4900:6900] 10 kph
[APPLY_CREATURE_VARIATION:STANDARD_SWIMMING_GAITS:5341:4723:4112:1254:6433:7900] 7 kph
[APPLY_CREATURE_VARIATION:STANDARD_CRAWLING_GAITS:2990:2257:1525:731:4300:6100] 12 kph

[CHILDNAME:Shroom Spawn:Shroom Spawn:Spawn]

[CAN_DO_INTERACTION:FUNGUY_HUG]
[CDI:ADV_NAME:Big Hug]
[CDI:TARGET:A:TOUCHABLE]
[CDI:USAGE_HINT:GREETING]
[CDI:TARGET_RANGE:A:5]
[CDI:MAX_TARGET_NUMBER:A:1]
[CDI:WAIT_PERIOD:1200]
[CDI:FREE_ACTION]
[CDI:CAN_BE_MUTUAL]
[CDI:VERB:hugs:hugs:hug]


[SELECT_CASTE:TOOTHY_SHROOM]
[BODY_DETAIL_PLAN:BODY_HAIR_TISSUE_LAYERS:FUZZ]
[SET_TL_GROUP:BY_CATEGORY:ALL:FUZZ]
[TL_COLOR_MODIFIER:RED:1:ORANGE:1:YELLOW:1:GREEN:1:BLUE:1:PURPLE:1:DARK_VIOLET:1]
[TLCM_NOUN:fuzz:SINGULAR]

#Additional BPs for toothy shrooms (stacks on top of previous BPs, but have to layer again)
[BODY:MOUTH:GENERIC_TEETH_WITH_FANGS]
[TISSUE_LAYER:BY_CATEGORY:MOUTH:MUSHROOM_OUTER]
[TISSUE_LAYER:BY_CATEGORY:TOOTH:IVORY]
[RELSIZE:BY_CATEGORY:MOUTH:300]
[RELSIZE:BY_CATEGORY:TOOTH:300]

[SET_TL_GROUP:BY_CATEGORY:TOOTH:IVORY]
[TLCM_NOUN:teeth:PLURAL]
[TISSUE_LAYER_APPEARANCE_MODIFIER:LENGTH:50:100:150:200:300:350:400]
[APP_MOD_NOUN:teeth:PLURAL]
[APP_MOD_RATE:10:DAILY:0:400:0:0:NO_END]
[APP_MOD_DESC_RANGE:10:50:70:100:150:200]
[SHEARABLE_TISSUE_LAYER:LENGTH:300]

[BODY_SIZE:0:0:5000]
[BODY_SIZE:1:0:17000]
[BODY_SIZE:2:0:62000]
[BODY_APPEARANCE_MODIFIER:HEIGHT:75:95:98:100:102:105:125]
[BODY_APPEARANCE_MODIFIER:BROADNESS:75:95:98:100:102:105:125]
[MAXAGE:30:40]

[PHYS_ATT_RANGE:STRENGTH:700:1200:1400:1500:1600:2000:3000]              ++
[PHYS_ATT_RANGE:AGILITY:450:950:1150:1250:1350:1550:2250]                +
[PHYS_ATT_RANGE:TOUGHNESS:450:950:1150:1250:1350:1550:2250]              +
[PHYS_ATT_RANGE:RECUPERATION:450:950:1150:1250:1350:1550:2250]           +
[PHYS_ATT_RANGE:DISEASE_RESISTANCE:700:1200:1400:1500:1600:2000:3000]       -

[ATTACK:BITE:CHILD_BODYPART_GROUP:BY_CATEGORY:HEAD:BY_CATEGORY:TOOTH]
[ATTACK_SKILL:BITE]
[ATTACK_VERB:bite:bites]
[ATTACK_CONTACT_PERC:100]
[ATTACK_PENETRATION_PERC:100]
[ATTACK_PREPARE_AND_RECOVER:3:3]
[ATTACK_FLAG_EDGE]
[ATTACK_PRIORITY:MAIN]
[ATTACK_FLAG_CANLATCH]

[APPLY_CREATURE_VARIATION:STANDARD_BIPED_GAITS:149:200:150:200:1900:2900] 59 kph
[APPLY_CREATURE_VARIATION:STANDARD_CLIMBING_GAITS:149:200:150:200:1900:2900] 59 kph
[APPLY_CREATURE_VARIATION:STANDARD_SWIMMING_GAITS:149:200:150:200:1900:2900] 59 kph
[APPLY_CREATURE_VARIATION:STANDARD_CRAWLING_GAITS:900:1000:950:1100:1900:2900]  kph

[CHILDNAME:Toothy Spawn:Toothy Spawn:Spawn]
[CASTE_PROFESSION_NAME:TRAINED_WAR:warrior:warriors]
[CASTE_PROFESSION_NAME:TRAINED_HUNTER:hunter:hunters]



[SELECT_CASTE:FUZZY_SHROOM]
[BODY_DETAIL_PLAN:BODY_HAIR_TISSUE_LAYERS:FUZZ]
[SET_TL_GROUP:BY_CATEGORY:ALL:FUZZ]
[TL_COLOR_MODIFIER:RED:1:ORANGE:1:YELLOW:1:GREEN:1:BLUE:1:PURPLE:1:DARK_VIOLET:1]
[TLCM_NOUN:fuzz:SINGULAR]
[TISSUE_LAYER_APPEARANCE_MODIFIER:LENGTH:0:50:100:200:250:300:400]
[APP_MOD_NOUN:fuzz:SINGULAR]
[APP_MOD_RATE:10:DAILY:0:400:0:0:NO_END]
[APP_MOD_DESC_RANGE:10:50:100:150:200:400]
[SHEARABLE_TISSUE_LAYER:LENGTH:300]

[BODY_SIZE:0:0:2000]
[BODY_SIZE:1:0:10000]
[BODY_SIZE:2:0:40000]
[BODY_APPEARANCE_MODIFIER:HEIGHT:75:95:98:100:102:105:125]
[BODY_APPEARANCE_MODIFIER:BROADNESS:75:95:98:100:102:105:125]

[PHYS_ATT_RANGE:STRENGTH:450:950:1150:1250:1350:1550:2250]               +
[PHYS_ATT_RANGE:AGILITY:1200:1400:1500:1600:1800:2500]                   ++
[PHYS_ATT_RANGE:TOUGHNESS:700:1200:1400:1800:2000:2200:2400]              +
[PHYS_ATT_RANGE:RECUPERATION:450:950:1150:1250:1350:1550:2250]           +
[PHYS_ATT_RANGE:DISEASE_RESISTANCE:450:950:1150:1250:1350:1550:2250]     +
[MAXAGE:50:60]


[APPLY_CREATURE_VARIATION:STANDARD_BIPED_GAITS:900:691:482:251:1900:2900] 35 kph
[APPLY_CREATURE_VARIATION:STANDARD_CLIMBING_GAITS:3512:2634:1756:878:4900:6900] 10 kph
[APPLY_CREATURE_VARIATION:STANDARD_SWIMMING_GAITS:5341:4723:4112:1254:6433:7900] 7 kph
[APPLY_CREATURE_VARIATION:STANDARD_CRAWLING_GAITS:2990:2257:1525:731:4300:6100] 12 kph

[CHILDNAME:Fuzzy Spawn:Fuzzy Spawn:Spawn]

[CAN_DO_INTERACTION:FUZZY_FUNGUY_HUG]
[CDI:ADV_NAME:Fuzzy Hug]
[CDI:TARGET:A:TOUCHABLE]
[CDI:USAGE_HINT:GREETING]
[CDI:TARGET_RANGE:A:5]
[CDI:MAX_TARGET_NUMBER:A:1]
[CDI:WAIT_PERIOD:600]
[CDI:FREE_ACTION]
[CDI:CAN_BE_MUTUAL]
[CDI:VERB:hugs:hugs:hug]


[SELECT_CASTE:TOXIC_SHROOM]
[BODY_DETAIL_PLAN:BODY_HAIR_TISSUE_LAYERS:FUZZ]
[SET_TL_GROUP:BY_CATEGORY:ALL:FUZZ]
[TL_COLOR_MODIFIER:RED:1:ORANGE:1:YELLOW:1:GREEN:1:BLUE:1:PURPLE:1:DARK_VIOLET:1]
[TLCM_NOUN:fuzz:SINGULAR]

#Venom milk
[MILKABLE:LOCAL_CREATURE_MAT:VENOM:8400]

[BODY_SIZE:0:0:2000]
[BODY_SIZE:1:0:6000]
[BODY_SIZE:2:0:21000]
[BODY_APPEARANCE_MODIFIER:HEIGHT:75:95:98:100:102:105:125]
[BODY_APPEARANCE_MODIFIER:BROADNESS:75:95:98:100:102:105:125]

[PHYS_ATT_RANGE:STRENGTH:150:600:800:900:1000:1100:1500]               +
[PHYS_ATT_RANGE:AGILITY:150:600:800:900:1000:1100:1500]                   ++
[PHYS_ATT_RANGE:TOUGHNESS:1200:1400:1500:1600:1800:2500]              +
[PHYS_ATT_RANGE:RECUPERATION:1200:1400:1500:1600:1800:2500]           +
[PHYS_ATT_RANGE:DISEASE_RESISTANCE:1200:1400:1500:1600:1800:2500]     +

[MAXAGE:50:60]

[APPLY_CREATURE_VARIATION:STANDARD_BIPED_GAITS:900:691:482:251:1900:2900] 35 kph
[APPLY_CREATURE_VARIATION:STANDARD_CLIMBING_GAITS:3512:2634:1756:878:4900:6900] 10 kph
[APPLY_CREATURE_VARIATION:STANDARD_SWIMMING_GAITS:5341:4723:4112:1254:6433:7900] 7 kph
[APPLY_CREATURE_VARIATION:STANDARD_CRAWLING_GAITS:2990:2257:1525:731:4300:6100] 12 kph


[CHILDNAME:Toxic Spawn:Toxic Spawn:Spawn]


[SELECT_CASTE:SPROUTING_SHROOM]
[BODY_DETAIL_PLAN:BODY_HAIR_TISSUE_LAYERS:FUZZ]
[SET_TL_GROUP:BY_CATEGORY:ALL:FUZZ]
[TL_COLOR_MODIFIER:RED:1:ORANGE:1:YELLOW:1:GREEN:1:BLUE:1:PURPLE:1:DARK_VIOLET:1]
[TLCM_NOUN:fuzz:SINGULAR]

[BODY_SIZE:0:0:10000]
[BODY_SIZE:1:0:50000]
[BODY_SIZE:2:0:200000]
[BODY_APPEARANCE_MODIFIER:HEIGHT:75:95:98:100:102:105:125]
[BODY_APPEARANCE_MODIFIER:BROADNESS:75:95:98:100:102:105:125]

[PHYS_ATT_RANGE:STRENGTH:1200:1400:1500:1600:1800:2500]               +
[PHYS_ATT_RANGE:AGILITY:450:950:1150:1250:1350:1550:2250]                   ++
[PHYS_ATT_RANGE:TOUGHNESS:1200:1400:1500:1600:1800:2500]              +
[PHYS_ATT_RANGE:RECUPERATION:1200:1400:1500:1600:1800:2500]           +
[PHYS_ATT_RANGE:DISEASE_RESISTANCE:1200:1400:1500:1600:1800:2500]     +
[MAXAGE:90:100]

[APPLY_CREATURE_VARIATION:STANDARD_QUADRUPED_GAITS:1422:1127:831:488:2500:3700] 18 kph
[APPLY_CREATURE_VARIATION:STANDARD_SWIMMING_GAITS:9000:8900:8825:8775:9500:9900] 1 kph, NO DATA
[APPLY_CREATURE_VARIATION:STANDARD_CRAWLING_GAITS:9000:8900:8825:8775:9500:9900] 1 kph, NO DATA

[LAYS_UNUSUAL_EGGS:SEEDS:NONE:PLANT_MAT:MUSHROOM_HELMET_PLUMP:SEED]
[LAYS_UNUSUAL_EGGS:SEEDS:NONE:PLANT_MAT:MUSHROOM_CUP_DIMPLE:SEED]
[LAYS_UNUSUAL_EGGS:SEEDS:NONE:PLANT_MAT:TOADSTOOL:SEED]
[LAYS_UNUSUAL_EGGS:SEEDS:NONE:PLANT_MAT:WHITE_CAPS:SEED]
[LAYS_UNUSUAL_EGGS:SEEDS:NONE:PLANT_MAT:BLUE_CAPS:SEED]
[LAYS_UNUSUAL_EGGS:SEEDS:NONE:PLANT_MAT:PORTABELLA:SEED]
[LAYS_UNUSUAL_EGGS:SEEDS:NONE:PLANT_MAT:TRUFFLE:SEED]
[LAYS_UNUSUAL_EGGS:SEEDS:NONE:PLANT_MAT:GLOW_CAP:SEED]
[EGG_SIZE:100]
[CLUTCH_SIZE:1:10]


[CHILDNAME:Sprouting Spawn:Sprouting Spawn:Spawn]



[SELECT_CASTE:GREASY_SHROOM]

#Grease instead of fuzz
[BODY_DETAIL_PLAN:BODY_HAIR_TISSUE_LAYERS:GREASE]
[SET_TL_GROUP:BY_CATEGORY:ALL:GREASE]
[TL_COLOR_MODIFIER:RED:1:ORANGE:1:YELLOW:1:GREEN:1:BLUE:1:PURPLE:1:DARK_VIOLET:1]
[TLCM_NOUN:grease:SINGULAR]
[TISSUE_LAYER_APPEARANCE_MODIFIER:LENGTH:0:50:100:200:250:300:400]
[APP_MOD_NOUN:grease:SINGULAR]
[APP_MOD_RATE:10:DAILY:0:400:0:0:NO_END]
[APP_MOD_DESC_RANGE:10:50:100:150:200:400]
[SHEARABLE_TISSUE_LAYER:LENGTH:300]

[BODY_SIZE:0:0:20000]
[BODY_SIZE:1:0:100000]
[BODY_SIZE:2:0:400000]
[BODY_APPEARANCE_MODIFIER:HEIGHT:75:95:98:100:102:105:125]
[BODY_APPEARANCE_MODIFIER:BROADNESS:75:95:98:100:102:105:125]

[PHYS_ATT_RANGE:STRENGTH:1200:1400:1500:1600:1800:2500]               +
[PHYS_ATT_RANGE:AGILITY:450:950:1150:1250:1350:1550:2250]                   ++
[PHYS_ATT_RANGE:TOUGHNESS:1200:1400:1500:1600:1800:2500]              +
[PHYS_ATT_RANGE:RECUPERATION:1200:1400:1500:1600:1800:2500]           +
[PHYS_ATT_RANGE:DISEASE_RESISTANCE:1200:1400:1500:1600:1800:2500]     +
[MAXAGE:90:100]

[APPLY_CREATURE_VARIATION:STANDARD_QUADRUPED_GAITS:1422:1127:831:488:2500:3700] 18 kph
[APPLY_CREATURE_VARIATION:STANDARD_SWIMMING_GAITS:9000:8900:8825:8775:9500:9900] 1 kph, NO DATA
[APPLY_CREATURE_VARIATION:STANDARD_CRAWLING_GAITS:9000:8900:8825:8775:9500:9900] 1 kph, NO DATA



[CHILDNAME:Greasy Spawn:Greasy Spawn:Spawn]


[CAN_DO_INTERACTION:GREASY_FUNGUY_HUG]
[CDI:ADV_NAME:Greasy Hug]
[CDI:TARGET:A:TOUCHABLE]
[CDI:USAGE_HINT:GREETING]
[CDI:TARGET_RANGE:A:5]
[CDI:MAX_TARGET_NUMBER:A:1]
[CDI:WAIT_PERIOD:600]
[CDI:FREE_ACTION]
[CDI:CAN_BE_MUTUAL]
[CDI:VERB:gloop:gloops:gloop]


[SELECT_CASTE:JUICY_SHROOM]
[BODY_DETAIL_PLAN:BODY_HAIR_TISSUE_LAYERS:FUZZ]
[SET_TL_GROUP:BY_CATEGORY:ALL:FUZZ]
[TL_COLOR_MODIFIER:RED:1:ORANGE:1:YELLOW:1:GREEN:1:BLUE:1:PURPLE:1:DARK_VIOLET:1]
[TLCM_NOUN:fuzz:SINGULAR]

#Honey milk
[MILKABLE:LOCAL_CREATURE_MAT:HONEY:12000]

[BODY_SIZE:0:0:2000]
[BODY_SIZE:1:0:6000]
[BODY_SIZE:2:0:21000]
[BODY_APPEARANCE_MODIFIER:HEIGHT:75:95:98:100:102:105:125]
[BODY_APPEARANCE_MODIFIER:BROADNESS:75:95:98:100:102:105:125]

[PHYS_ATT_RANGE:STRENGTH:150:600:800:900:1000:1100:1500]               +
[PHYS_ATT_RANGE:AGILITY:150:600:800:900:1000:1100:1500]                   ++
[PHYS_ATT_RANGE:TOUGHNESS:1200:1400:1500:1600:1800:2500]              +
[PHYS_ATT_RANGE:RECUPERATION:1200:1400:1500:1600:1800:2500]           +
[PHYS_ATT_RANGE:DISEASE_RESISTANCE:1200:1400:1500:1600:1800:2500]     +
[MAXAGE:50:60]


[APPLY_CREATURE_VARIATION:STANDARD_BIPED_GAITS:900:691:482:251:1900:2900] 35 kph
[APPLY_CREATURE_VARIATION:STANDARD_CLIMBING_GAITS:3512:2634:1756:878:4900:6900] 10 kph
[APPLY_CREATURE_VARIATION:STANDARD_SWIMMING_GAITS:5341:4723:4112:1254:6433:7900] 7 kph
[APPLY_CREATURE_VARIATION:STANDARD_CRAWLING_GAITS:2990:2257:1525:731:4300:6100] 12 kph


[CHILDNAME:Juicy Spawn:Juicy Spawn:Spawn]



[SELECT_CASTE:ELEPHANT_SHROOM]
[BODY_DETAIL_PLAN:BODY_HAIR_TISSUE_LAYERS:FUZZ]
[SET_TL_GROUP:BY_CATEGORY:ALL:FUZZ]
[TL_COLOR_MODIFIER:RED:1:ORANGE:1:YELLOW:1:GREEN:1:BLUE:1:PURPLE:1:DARK_VIOLET:1]
[TLCM_NOUN:fuzz:SINGULAR]

[TISSUE_LAYER:BY_CATEGORY:HEAD:SKIN] #Layer head with skin (ontop of mushroom tissues)
[RELSIZE:BY_CATEGORY:HEAD:800]

[SET_TL_GROUP:BY_CATEGORY:HEAD:SKIN]
[TL_COLOR_MODIFIER:BROWN:1:DARK_BROWN:1:DARK_PEACH:1:DARK_TAN:1:PALE_BROWN:1:PALE_CHESTNUT:1:PALE_PINK:1:PINK:1:TAN:1:TAUPE_PALE:1:TAUPE_SANDY:1]
[TLCM_NOUN:leathery cap:SINGULAR]
[TISSUE_LAYER_APPEARANCE_MODIFIER:LENGTH:0:40:80:100:120:160:200]
[APP_MOD_NOUN:leathery cap:SINGULAR]
[APP_MOD_RATE:4:DAILY:0:360:0:0:NO_END]
[APP_MOD_DESC_RANGE:12:60:120:180:240:330]
[SHEARABLE_TISSUE_LAYER:LENGTH:150]

[BODY_SIZE:0:0:500000]
[BODY_SIZE:1:0:2500000]
[BODY_SIZE:10:0:5000000]
[BODY_APPEARANCE_MODIFIER:LENGTH:90:95:98:100:102:105:110]
[BODY_APPEARANCE_MODIFIER:HEIGHT:90:95:98:100:102:105:110]
[BODY_APPEARANCE_MODIFIER:BROADNESS:90:95:98:100:102:105:110

[PHYS_ATT_RANGE:STRENGTH:1000:2000:2500:3000:3200:3500:4500]
[PHYS_ATT_RANGE:AGILITY:75:300:400:450:500:550:750]
[PHYS_ATT_RANGE:TOUGHNESS:1000:2000:2500:3000:3200:3500:4500]
[PHYS_ATT_RANGE:DISEASE_RESISTANCE:5000:5000:5000:5000:5000:5000:5000]

[MAXAGE:80:100]

[APPLY_CREATURE_VARIATION:STANDARD_QUADRUPED_GAITS:1422:1127:831:488:2500:3700] 18 kph
[APPLY_CREATURE_VARIATION:STANDARD_SWIMMING_GAITS:9000:8900:8825:8775:9500:9900] 1 kph, NO DATA
[APPLY_CREATURE_VARIATION:STANDARD_CRAWLING_GAITS:9000:8900:8825:8775:9500:9900] 1 kph, NO DATA


[CHILDNAME:Wrinkly Spawn:Wrinkly Spawn:Spawn]

  • My personal approach is to always define all materials and tissues first in the creature, then apply them later within the castes.
  • It is important to realise that materials and tissues are different, even if they share the same name. FUZZ the material is not the same as FUZZ the tissue.
  • Prefixing each tissue with shroom-this shroom-that is not needed. Think about it, dogs just use the standard [STATE_NAME:SOLID:leather], but when you tan their skin you get 'dog leather'
  • Layering with body detail plans seem rather overkill; generally you use them when dealing with large number of BPs, tissues and materials. In my case, I just layered them manually with TISSUE_LAYER.
« Last Edit: September 10, 2017, 09:20:58 am by Bearskie »
Logged

FakeGamerCrow

  • Bay Watcher
    • View Profile
Re: [MODDING] CREATURE & ENTITY QUESTIONS THREAD
« Reply #2886 on: September 11, 2017, 12:37:34 am »

@Bearskie

Holy crap! Thankyou so much.
I think that I understand all the changes. It really makes sense now that I know how stuff should go.

Its running fairly well but I am still having some problems with materials.

My error log is showing

*** Error(s) finalizing the creature FUNGUY_SHROOM
undefined local creature material set to default: FUNGUY_SHROOM HARDENED_LEATHER
undefined local creature material set to default: FUNGUY_SHROOM TALLOW

and when I tried to use the SHROOM_GREASE plant material for the grease it added this

FUNGUY_SHROOM:GREASE:Unrecognized Material Token:
FUNGUY_SHROOM:Creature Tissue Material Failure: GREASE:(no mat1):(no mat3):(no mat3)

I get what they mean but Im really not sure where to change them, especially the first two, Im not sure what material its reading as undefined because I dont use HARDENED_LEATHER or TALLOW?


Oh also, forgot to mention. It also made the shearer harvest the Greasy Shrooms skeleton.
Without harming them in any way...
And they dont even have bones!!
« Last Edit: September 11, 2017, 12:43:41 am by FakeGamerCrow »
Logged

Bearskie

  • Bay Watcher
  • Nyam nyam
    • View Profile
Re: [MODDING] CREATURE & ENTITY QUESTIONS THREAD
« Reply #2887 on: September 12, 2017, 03:11:49 am »

This is using your raws or mine? Without seeing them I can't be sure, but I have my suspicions.

undefined local creature material set to default: FUNGUY_SHROOM HARDENED_LEATHER
undefined local creature material set to default: FUNGUY_SHROOM TALLOW

Likely using a material template that refers to another (local) mat. You're probably using skin and fat material templates for something, which refer to leather and tallow.

FUNGUY_SHROOM:GREASE:Unrecognized Material Token:

You probably left a material undefined, for example [TISSUE_MATERIAL:].Check the grease tissue.

FUNGUY_SHROOM:Creature Tissue Material Failure: GREASE:(no mat1):(no mat3):(no mat3)

Are you still using exoskeleton or vertebrate body detail plans? If so, you need to fill all the arguments, you can't just fill in one or two.


Oh also, forgot to mention. It also made the shearer harvest the Greasy Shrooms skeleton.
Without harming them in any way...
And they dont even have bones!!


Yeaaaah... uh. Try fixing the grease problems first, it may solve itself. Btw, you should consider making greasy shrooms fuzzy, but secrete grease instead with the [SECRETIONS] tag.

FakeGamerCrow

  • Bay Watcher
    • View Profile
Re: [MODDING] CREATURE & ENTITY QUESTIONS THREAD
« Reply #2888 on: September 12, 2017, 04:43:35 am »

This is the current file Im using

https://pastebin.com/MLZeB6Pe

*** Error(s) finalizing the creature FUNGUY_SHROOM
undefined local creature material set to default: FUNGUY_SHROOM HARDENED_LEATHER
undefined local creature material set to default: FUNGUY_SHROOM TALLOW
undefined local creature material set to default: FUNGUY_SHROOM TALLOW
undefined local creature material set to default: FUNGUY_SHROOM GLOB
FUNGUY_SHROOM:FUZZ:Unrecognized Material Token:
FUNGUY_SHROOM:Creature Tissue Material Failure: FUZZ:(no mat1):(no mat3):(no mat3)

Thats my current error log.
Ive gotten rid of the GREASE token problem but now its having a problem with FUZZ which it shoulnt haave because that was all properly defined I though?


I was not aware of the SECRETIONS tag ut now I am very excited.
Its closer to what I originally wanted for the Greasy shrooms anyway. much more disgusting
Logged

Bearskie

  • Bay Watcher
  • Nyam nyam
    • View Profile
Re: [MODDING] CREATURE & ENTITY QUESTIONS THREAD
« Reply #2889 on: September 12, 2017, 05:54:43 am »

You've used skin and fat templates. If you look in the templates file, you will notice that they have mat tokens that refer to hardened leather and tallow. If you want these error messages to go away, you have to define leather and tallow materials in your creature too.

Main issue with fuzz is    [TISSUE_MATERIAL:PLANT_MAT:SHROOM_FUZZ]. The material comes from the plant SHROOM_FUZZ, but you never specified which SHROOM_FUZZ material it actually is. Alternatively, instead of pulling materials from plants, you could make use of your local material FUZZ, which you just defined above using a material template, by making the tissue material LOCAL_CREATURE_MAT:FUZZ

Also, you should probably replace all SUBORDINATE_TO:SKIN with SUBORDINATE_TO:MUSHROOM_OUTER, since your funguys don't have skin.
« Last Edit: September 12, 2017, 05:58:15 am by Bearskie »
Logged

Sponge

  • Bay Watcher
  • I like wearing shoes on both of my feet.
    • View Profile
Re: [MODDING] CREATURE & ENTITY QUESTIONS THREAD
« Reply #2890 on: September 13, 2017, 07:28:29 pm »

 How do [CASTE_NAME]'s work? For example, I have my own antmen, and I want a queen ant to have a different creature name from a soldier or worker. I can see the caste name in the arena menu but it doesn't display anywhere on the creature. If I change the [NAME] within each caste it makes all them all be named the [NAME] tag that's furthest down. Any way to maybe put something in the description or change the name for caste's?
Logged
I like wearing shoes on both of my feet.

Putnam

  • Bay Watcher
  • DAT WIZARD
    • View Profile
Re: [MODDING] CREATURE & ENTITY QUESTIONS THREAD
« Reply #2891 on: September 13, 2017, 08:40:11 pm »

NAME is creature level, CASTE_NAME is caste level, it will usually use CASTE_NAME.

Sponge

  • Bay Watcher
  • I like wearing shoes on both of my feet.
    • View Profile
Re: [MODDING] CREATURE & ENTITY QUESTIONS THREAD
« Reply #2892 on: September 13, 2017, 09:05:10 pm »

NAME is creature level, CASTE_NAME is caste level, it will usually use CASTE_NAME.
For example, I have the [NAME] set to ant man and the [CASTE_NAME]'s set to their relative types of ants, but it will only show say Ant Man 1, Ant Man 2, for like a soldier and worker ant. I also have a [CASTE_NAME] set outside of the caste's, but removing that doesn't change anything. If you want, I can post the raws.
Logged
I like wearing shoes on both of my feet.

overseer05-15

  • Bay Watcher
  • Personal Text
    • View Profile
Re: [MODDING] CREATURE & ENTITY QUESTIONS THREAD
« Reply #2893 on: September 13, 2017, 09:55:24 pm »

NAME is creature level, CASTE_NAME is caste level, it will usually use CASTE_NAME.
For example, I have the [NAME] set to ant man and the [CASTE_NAME]'s set to their relative types of ants, but it will only show say Ant Man 1, Ant Man 2, for like a soldier and worker ant. I also have a [CASTE_NAME] set outside of the caste's, but removing that doesn't change anything. If you want, I can post the raws.
please do.
Logged
adult food like, I presume, steak and potatoes and tax forms,

My game giveaway

Sponge

  • Bay Watcher
  • I like wearing shoes on both of my feet.
    • View Profile
Re: [MODDING] CREATURE & ENTITY QUESTIONS THREAD
« Reply #2894 on: September 13, 2017, 09:57:51 pm »

NAME is creature level, CASTE_NAME is caste level, it will usually use CASTE_NAME.
For example, I have the [NAME] set to ant man and the [CASTE_NAME]'s set to their relative types of ants, but it will only show say Ant Man 1, Ant Man 2, for like a soldier and worker ant. I also have a [CASTE_NAME] set outside of the caste's, but removing that doesn't change anything. If you want, I can post the raws.
please do.
Code: [Select]
[CREATURE:ANT_MAN_CIVILIZED]
[DESCRIPTION:A humanoid with the head and body of an ant. More intelligent than the smaller ant men living in caves.]
[NAME:intelligent antman:intelligent antmen:antman]
[CASTE_NAME:intelligent antman:intelligent antmen:antman]
[CREATURE_TILE:'a'][COLOR:4:0:0]
[INTELLIGENT]
[BIOME:]
[CAVE_ADAPT]
[LAYS_EGGS]
[UNDERGROUND_DEPTH:1:3]
[POPULATION_NUMBER:5:10]
[CLUSTER_NUMBER:5:10]
[PREFSTRING:large hives]
[EQUIPS]
[CANOPENDOORS]
[ALL_ACTIVE]
[LOW_LIGHT_VISION:10000]
[NO_SLEEP]
[HOMEOTHERM:10040]
[USE_MATERIAL_TEMPLATE:SINEW:SINEW_TEMPLATE]
[TENDONS:LOCAL_CREATURE_MAT:SINEW:200]
[LIGAMENTS:LOCAL_CREATURE_MAT:SINEW:200]
[HAS_NERVES]
[USE_MATERIAL_TEMPLATE:ICHOR:ICHOR_TEMPLATE]
[BLOOD:LOCAL_CREATURE_MAT:ICHOR:LIQUID]
[CREATURE_CLASS:GENERAL_POISON]
[GETS_WOUND_INFECTIONS]
[GETS_INFECTIONS_FROM_ROT]
[USE_MATERIAL_TEMPLATE:PUS:PUS_TEMPLATE]
[PUS:LOCAL_CREATURE_MAT:PUS:LIQUID]
[MAXAGE:10:16]
[NOBONES]
[CASTE:INTELLIGENT_WORKER]
[CASTE_NAME:intelligent worker ant woman:intelligent worker ant women:worker ant woman]
Female, but non-breeding.
[POP_RATIO:10000]
[PHYS_ATT_RANGE:STRENGTH:450:950:1150:1250:1350:1550:2250]             
[PHYS_ATT_RANGE:AGILITY:150:600:800:950:1200:1350:1550]                 
[PHYS_ATT_RANGE:TOUGHNESS:400:600:800:900:1050:1200:1800]             
[MENT_ATT_RANGE:ANALYTICAL_ABILITY:450:925:1050:1150:1550:1850:2300]   
[MENT_ATT_RANGE:FOCUS:900:1450:1600:1900:2000:2200:2500]               
[MENT_ATT_RANGE:CREATIVITY:250:800:900:950:1000:1150:1750]           
[MENT_ATT_RANGE:PATIENCE:600:1150:1350:1550:1650:1950:2500]             
[MENT_ATT_RANGE:MEMORY:750:950:1350:1450:1550:1650:2750]               
[MENT_ATT_RANGE:SPATIAL_SENSE:700:1200:1400:1500:1600:1800:2500]
[PERSONALITY:CRAFT_A_MASTERWORK]
[PERSONALITY:SINGLEMINDED:0:55:100]
[PERSONALITY:PERFECTIONIST:0:65:100]
[BODY_SIZE:0:0:2000]
[BODY_SIZE:3:168:10000]
[BODY_SIZE:6:0:48500]
[CASTE:INTELLIGENT_SOLDIER]
[CASTE_NAME:intelligent soldier ant woman:intelligent soldier ant women:soldier ant woman]
[NATURAL_SKILL:ARMOR:2]
[NATURAL_SKILL:SWORD:2]
[NATURAL_SKILL:AXE:2]
[NATURAL_SKILL:HAMMER:2]
[NATURAL_SKILL:MACE:2]
[NATURAL_SKILL:DAGGER:2]
[NATURAL_SKILL:SPEAR:2]
[NATURAL_SKILL:CROSSBOW:2]
[NATURAL_SKILL:BOW:2]
[NATURAL_SKILL:SHIELD:2]
[LIKES_FIGHTING]
[BODY_SIZE:0:0:2750]
[BODY_SIZE:3:168:13500]
[BODY_SIZE:7:0:55000]
Female, but non-breeding.
[POP_RATIO:1000]
[PHYS_ATT_RANGE:STRENGTH:500:1000:1350:1400:1450:1550:2250]             
[PHYS_ATT_RANGE:AGILITY:150:500:700:900:950:1000:1250]                 
[PHYS_ATT_RANGE:TOUGHNESS:500:1050:1200:1250:1375:1750:2550]             
[MENT_ATT_RANGE:ANALYTICAL_ABILITY:350:800:1050:1100:1250:1345:1750]   
[MENT_ATT_RANGE:FOCUS:700:1200:1400:1500:1600:1800:2500]               
[MENT_ATT_RANGE:CREATIVITY:350:550:850:1050:1150:1250:1350]           
[MENT_ATT_RANGE:PATIENCE:550:750:1350:1550:1650:1750:2450]             
[MENT_ATT_RANGE:MEMORY:500:1000:1250:1450:1550:1650:2350]               
[MENT_ATT_RANGE:SPATIAL_SENSE:700:1200:1400:1500:1600:1800:2500]
[PERSONALITY:BECOME_A_LEGENDARY_WARRIOR]
[PERSONALITY:VIOLENT:0:60:100]
[PERSONALITY:BRAVERY:0:65:100]
[PERSONALITY:SINGLEMINDED:0:65:100]
[PERSONALITY:DUTIFULNESS:0:75:100]
[CASTE:INTELLIGENT_DRONE]
[CASTE_NAME:intelligent drone ant man:intelligent drone ant men:drone ant man]
                [COLONY_EXTERNAL]
[BODY_SIZE:0:0:1500]
[BODY_SIZE:1:168:8500]
[BODY_SIZE:4:0:28500]
[MALE]
[POP_RATIO:15]
[BODY:HUMANOID_4ARMS:2EYES:HEART:GUTS:BRAIN:MOUTH:2WINGS]
[BODYGLOSS:INSECT_UPPERBODY:INSECT_LOWERBODY]
[FLIER]
[APPLY_CREATURE_VARIATION:STANDARD_BIPED_GAITS:900:711:521:293:1900:2900] 30 kph
[APPLY_CREATURE_VARIATION:STANDARD_FLYING_GAITS:900:711:521:293:1900:2900] 30 kph
[APPLY_CREATURE_VARIATION:STANDARD_CLIMBING_GAITS:2990:2257:1525:731:4300:6100] 12 kph
[APPLY_CREATURE_VARIATION:STANDARD_CRAWLING_GAITS:2990:2257:1525:731:4300:6100] 12 kph
[CASTE:INTELLIGENT_QUEEN]
[CASTE_NAME:intelligent queen ant woman:intelligent queen ant women:queen ant woman]
[CLUTCH_SIZE:6:12]
[BODY_SIZE:0:0:12500]
[BODY_SIZE:3:168:58250]
[BODY_SIZE:6:0:215000]
[FEMALE]
[MAXAGE:20:26]
[POP_RATIO:5]
[PHYS_ATT_RANGE:STRENGTH:650:950:1450:1750:1850:1950:3000]             
[PHYS_ATT_RANGE:AGILITY:150:600:800:900:1000:1100:1500]                 
[PHYS_ATT_RANGE:TOUGHNESS:750:1250:1650:1950:2250:2350:2650]             
[MENT_ATT_RANGE:ANALYTICAL_ABILITY:550:1050:1250:1450:1650:1750:2450]   
[MENT_ATT_RANGE:FOCUS:700:1200:1400:1500:1600:1800:2500]               
[MENT_ATT_RANGE:CREATIVITY:850:1250:1450:1650:1750:1850:2750]           
[MENT_ATT_RANGE:PATIENCE:450:950:1150:1250:1350:1550:2250]             
[MENT_ATT_RANGE:MEMORY:750:1050:1350:1650:1750:1950:2450]               
[MENT_ATT_RANGE:SPATIAL_SENSE:700:1300:1500:1600:1700:1900:2700]
[PERSONALITY:START_A_FAMILY]
[PERSONALITY:RULE_THE_WORLD]
[PERSONALITY:GREED:0:60:100]
  [PERSONALITY:VANITY:0:75:100]
[SELECT_CASTE:INTELLIGENT_WORKER]
[SELECT_ADDITIONAL_CASTE:INTELLIGENT_SOLDIER]
[SELECT_ADDITIONAL_CASTE:INTELLIGENT_QUEEN]
[BODY:HUMANOID_4ARMS:STINGER_INSECT:2EYES:HEART:GUTS:BRAIN:MOUTH]
[BODYGLOSS:INSECT_UPPERBODY:INSECT_LOWERBODY]
[APPLY_CREATURE_VARIATION:STANDARD_BIPED_GAITS:900:711:521:293:1900:2900] 30 kph
[APPLY_CREATURE_VARIATION:STANDARD_CLIMBING_GAITS:2990:2257:1525:731:4300:6100] 12 kph
[APPLY_CREATURE_VARIATION:STANDARD_CRAWLING_GAITS:2990:2257:1525:731:4300:6100] 12 kph
[SELECT_CASTE:ALL]
[PROFESSION_NAME:CRAFTSMAN:production ant:production ants]
[PROFESSION_NAME:MINER:hive crafter:hive crafters]
[PROFESSION_NAME:ANIMAL_TRAINER:herder ant:herder ants]
[PROFESSION_NAME:HERBALIST:forager ant:forager ants]
[PROFESSION_NAME:PLANTER:fungus grower:fungus growers]
[PROFESSION_NAME:CARPENTER:carpenter ant:carpenter ants]
[PROFESSION_NAME:FISHERMAN:fisherant:fisherants]
[PROFESSION_NAME:HAMMERMAN:hammerant:hammerants]
[PROFESSION_NAME:SPEARMAN:spearant:spearants]
[PROFESSION_NAME:CROSSBOWMAN:marksant:marksants]
[PROFESSION_NAME:AXEMAN:axeant:axeants]
[PROFESSION_NAME:SWORDSMAN:swordsant:swordsants]
[PROFESSION_NAME:MACEMAN:maceant:maceants]
[PROFESSION_NAME:PIKEMAN:pikeant:pikeants]
[PROFESSION_NAME:BOWMAN:bowant:bowants]
[PROFESSION_NAME:MASTER_CROSSBOWMAN:Elite Marksant:Elite Marksants]
[PROFESSION_NAME:MASTER_BOWMAN:Elite Bowant:Elite Bowants]
[PERSONALITY:LOYALTY:20:65:100]
[PERSONALITY:DECORUM:0:45:80]
[PERSONALITY:TRADITION:0:30:100]
[PERSONALITY:COOPERATION:0:75:100]
[PERSONALITY:HARD_WORK:0:65:100]
[PERSONALITY:SACRIFICE:0:45:100]
[PERSONALITY:TRADITION:0:75:100]
[PERSONALITY:TRADITION:0:75:100]
[BODY_APPEARANCE_MODIFIER:HEIGHT:75:95:98:100:102:105:125]
[APP_MOD_IMPORTANCE:500]
[BODY_APPEARANCE_MODIFIER:BROADNESS:75:95:98:100:102:105:125]
[APP_MOD_IMPORTANCE:500]
[BODY_DETAIL_PLAN:CHITIN_MATERIALS]
[BODY_DETAIL_PLAN:CHITIN_TISSUES]
[BODY_DETAIL_PLAN:EXOSKELETON_TISSUE_LAYERS:CHITIN:FAT:MUSCLE]
[BODY_DETAIL_PLAN:STANDARD_HEAD_POSITIONS]
[ATTACK:PUNCH:BODYPART:BY_TYPE:GRASP]
[ATTACK_SKILL:GRASP_STRIKE]
[ATTACK_VERB:punch:punches]
[ATTACK_CONTACT_PERC:100]
[ATTACK_PREPARE_AND_RECOVER:3:3]
[ATTACK_FLAG_WITH]
[ATTACK_PRIORITY:MAIN]
[ATTACK:KICK:BODYPART:BY_TYPE:STANCE]
[ATTACK_SKILL:STANCE_STRIKE]
[ATTACK_VERB:kick:kicks]
[ATTACK_CONTACT_PERC:100]
[ATTACK_PREPARE_AND_RECOVER:4:4]
[ATTACK_FLAG_WITH]
[ATTACK_PRIORITY:SECOND]
[ATTACK_FLAG_BAD_MULTIATTACK]
[ATTACK:BITE:BODYPART:BY_CATEGORY:MOUTH]
[ATTACK_SKILL:BITE]
[ATTACK_VERB:bite:bites]
[ATTACK_CONTACT_PERC:100]
[ATTACK_PENETRATION_PERC:200]
[ATTACK_FLAG_EDGE]
[ATTACK_PREPARE_AND_RECOVER:3:3]
[ATTACK_PRIORITY:MAIN]
[ATTACK_FLAG_CANLATCH]
[SET_TL_GROUP:BY_CATEGORY:ALL:CHITIN]
[TL_COLOR_MODIFIER:BLACK:1]
[TLCM_NOUN:chitin:SINGULAR]
[TL_COLOR_MODIFIER:BROWN:1]
[TLCM_NOUN:chitin:SINGULAR]
[TL_COLOR_MODIFIER:RED:1]
[TLCM_NOUN:chitin:SINGULAR]
[TL_COLOR_MODIFIER:ORANGE:1]
[TLCM_NOUN:chitin:SINGULAR]
[SET_TL_GROUP:BY_CATEGORY:EYE:EYE]
[TL_COLOR_MODIFIER:BLACK:1]
[TLCM_NOUN:eyes:PLURAL]
[TL_COLOR_MODIFIER:RED:1]
[TLCM_NOUN:eyes:PLURAL]
Also, the colors for the eye's and chitin don't seem to be working. Would appreciate help with that too.
Logged
I like wearing shoes on both of my feet.
Pages: 1 ... 191 192 [193] 194 195 ... 365