Bay 12 Games Forum

Please login or register.

Login with username, password and session length
Advanced search  
Pages: 1 ... 271 272 [273] 274 275 ... 544

Author Topic: [MODDING] 0.34. QUESTIONS THREAD  (Read 1002477 times)

ArKFallen

  • Bay Watcher
  • Bohandean Desserter
    • View Profile
Re: [MODDING] 0.34. QUESTIONS THREAD
« Reply #4080 on: February 14, 2013, 05:11:29 pm »

Hypothetical question about the way tissue/body plans work:
Would it be possible to make a cavern-dwelling humanoid creature that is "basically" inside-out? As in it's organs are kept on the outside of the creature and can be separately targeted by attacks?

I'd imagine something similar can be done simply by making a creature that has no skin added to the body plan, but to me this seems like the creatures would just bleed out soon after the game spawns them.
You'd need to make copies of the organs without [INTERNAL] if you wanted out-of-body organs and you might need to get rid of small for targeting (not sure). To make them appropriately inside out can be another much more complex matter involving messing with the BODY_DETAIL_PLAN in creature arguments and possibly making a new body detail plan. Really depends on how far you'd want to go.
Logged
Hm, have you considered murder?  It's either that or letting it go.
SigText
I logged back on ;_;

Putnam

  • Bay Watcher
  • DAT WIZARD
    • View Profile
Re: [MODDING] 0.34. QUESTIONS THREAD
« Reply #4081 on: February 14, 2013, 06:02:52 pm »

You wouldn't have to make a new one, you'd just have to reverse the order of the arguments in the creature file.

ArKFallen

  • Bay Watcher
  • Bohandean Desserter
    • View Profile
Re: [MODDING] 0.34. QUESTIONS THREAD
« Reply #4082 on: February 14, 2013, 07:49:50 pm »

You wouldn't have to make a new one, you'd just have to reverse the order of the arguments in the creature file.
What Putnam means is this
Code: [Select]
[BODY_DETAIL_PLAN:VERTEBRATE_TISSUE_LAYERS:BONE:MUSCLE:FAT:SKIN:CARTILAGE]But that will give them a layer of bone where skin would usually be, muscle where fat was, skin where muscle was, and cartilage in the places cartilage is supposed to be (so the nose wouldn't be totally inside out).
To make it function more similar to the bones being properly outside the body (to be properly inside out) would be a hassle and potentially require a new body detail plan.

As I meant to say, making them properly inside out would be a pain and a half :P
Logged
Hm, have you considered murder?  It's either that or letting it go.
SigText
I logged back on ;_;

Putnam

  • Bay Watcher
  • DAT WIZARD
    • View Profile
Re: [MODDING] 0.34. QUESTIONS THREAD
« Reply #4083 on: February 14, 2013, 07:51:23 pm »

Bones are defined entirely through tissue layers, I'm pretty sure, so no, not really.

WillowLuman

  • Bay Watcher
  • They/Them Life is weird
    • View Profile
Re: [MODDING] 0.34. QUESTIONS THREAD
« Reply #4084 on: February 15, 2013, 02:34:09 am »

Alright, whipped this up real quick. Makes any creature 10x bigger, as confirmed by number of butcher products from an affected vs a normal carcass in Arena mode. Also, punches sent unaffected (normal sized) human across the map.

Code: [Select]
[INTERACTION:GIGANTICISM]
[I_SOURCE:SECRET]
[IS_NAME:the power of hulk]
[IS_SPHERE:STRENGTH]
[IS_SECRET_GOAL:IMMORTALITY]
[IS_SECRET:SUPERNATURAL_LEARNING_POSSIBLE]
[IS_SECRET:MUNDANE_RESEARCH_POSSIBLE]
[IS_SECRET:MUNDANE_TEACHING_POSSIBLE]
[IS_SECRET:MUNDANE_RECORDING_POSSIBLE:objects/text/book_instruction.txt:objects/text/secret_death.txt]
[I_TARGET:A:CREATURE]
[IT_LOCATION:CONTEXT_CREATURE]
[IT_REQUIRES:CAN_LEARN]
[IT_REQUIRES:CAN_SPEAK]
[I_EFFECT:ADD_SYNDROME]
[IE_TARGET:A]
[IE_IMMEDIATE]
[IE_ARENA_NAME:Gargantuan]
[SYNDROME]
[CE_DISPLAY_NAME:NAME:giant:giants:gigantic:START:0]
[CE_BODY_APPEARANCE_MODIFIER:APPEARANCE_MODIFIER:HEIGHT:10000]
[CE_BODY_APPEARANCE_MODIFIER:APPEARANCE_MODIFIER:LENGTH:10000]
[CE_BODY_APPEARANCE_MODIFIER:APPEARANCE_MODIFIER:BROADNESS:10000]

Now just to make it so dwarves become this with [CRAZED] when going without booze for too long. For balance, how much sober time sounds appropriate?
Logged
Dwarf Souls: Prepare to Mine
Keep Me Safe - A Girl and Her Computer (Illustrated Game)
Darkest Garden - Illustrated game. - What mysteries lie in the abandoned dark?

Deon

  • Bay Watcher
  • 💀 💀 💀 💀 💀
    • View Profile
Re: [MODDING] 0.34. QUESTIONS THREAD
« Reply #4085 on: February 15, 2013, 05:49:35 am »

What happens when you add NO_EAT to a starving creature? Will it remove hunger or keep the starvation level? Actually if nobody can answer me, I am going to check it out myself and reply :).
Logged
▬(ஜ۩۞۩ஜ)▬
✫ DF Wanderer ✫ - the adventure mode crafting and tweaks
✫ Cartographer's Lounge ✫ - a custom worldgen repository

Gaybarowner

  • Bay Watcher
  • [SLOW_LEARNER] [VERMIN_HATEABLE]
    • View Profile
Re: [MODDING] 0.34. QUESTIONS THREAD
« Reply #4086 on: February 15, 2013, 10:43:11 am »

What happens when you add NO_EAT to a starving creature? Will it remove hunger or keep the starvation level? Actually if nobody can answer me, I am going to check it out myself and reply :).
NO_EAT means the creature does not require to eat to survive so you will not get hunger or die from starvation so most likely I.. think
Logged

Gaybarowner

  • Bay Watcher
  • [SLOW_LEARNER] [VERMIN_HATEABLE]
    • View Profile
Re: [MODDING] 0.34. QUESTIONS THREAD
« Reply #4087 on: February 15, 2013, 10:44:40 am »

Alright, whipped this up real quick. Makes any creature 10x bigger, as confirmed by number of butcher products from an affected vs a normal carcass in Arena mode. Also, punches sent unaffected (normal sized) human across the map.

Code: [Select]
[INTERACTION:GIGANTICISM]
[I_SOURCE:SECRET]
[IS_NAME:the power of hulk]
[IS_SPHERE:STRENGTH]
[IS_SECRET_GOAL:IMMORTALITY]
[IS_SECRET:SUPERNATURAL_LEARNING_POSSIBLE]
[IS_SECRET:MUNDANE_RESEARCH_POSSIBLE]
[IS_SECRET:MUNDANE_TEACHING_POSSIBLE]
[IS_SECRET:MUNDANE_RECORDING_POSSIBLE:objects/text/book_instruction.txt:objects/text/secret_death.txt]
[I_TARGET:A:CREATURE]
[IT_LOCATION:CONTEXT_CREATURE]
[IT_REQUIRES:CAN_LEARN]
[IT_REQUIRES:CAN_SPEAK]
[I_EFFECT:ADD_SYNDROME]
[IE_TARGET:A]
[IE_IMMEDIATE]
[IE_ARENA_NAME:Gargantuan]
[SYNDROME]
[CE_DISPLAY_NAME:NAME:giant:giants:gigantic:START:0]
[CE_BODY_APPEARANCE_MODIFIER:APPEARANCE_MODIFIER:HEIGHT:10000]
[CE_BODY_APPEARANCE_MODIFIER:APPEARANCE_MODIFIER:LENGTH:10000]
[CE_BODY_APPEARANCE_MODIFIER:APPEARANCE_MODIFIER:BROADNESS:10000]

Now just to make it so dwarves become this with [CRAZED] when going without booze for too long. For balance, how much sober time sounds appropriate?
I would say about half a year or a little longer
Logged

Wannabehero

  • Bay Watcher
    • View Profile
Re: [MODDING] 0.34. QUESTIONS THREAD
« Reply #4088 on: February 15, 2013, 11:22:37 am »

I feel slightly noobish for asking this, but:

Can a creature have one caste with both [MALE] and [FEMALE] tokens and still be able to breed?
Logged

Stirk

  • Bay Watcher
  • Full Metal Nutball
    • View Profile
Re: [MODDING] 0.34. QUESTIONS THREAD
« Reply #4089 on: February 15, 2013, 01:34:36 pm »

I feel slightly noobish for asking this, but:

Can a creature have one caste with both [MALE] and [FEMALE] tokens and still be able to breed?

No. The one you put on the bottom will take over.

Logged
This is my signature. There are many like it, but this one is mine.

This is my waifu, this is my gun. This one's for fighting, this ones for fun.

Stirk

  • Bay Watcher
  • Full Metal Nutball
    • View Profile
Re: [MODDING] 0.34. QUESTIONS THREAD
« Reply #4090 on: February 15, 2013, 01:44:15 pm »

Sorry for the double post, but I have my own questions. Is it possible, and if so how, to lower the firing speed without lowering the speed of the creature by making it heavy?
Logged
This is my signature. There are many like it, but this one is mine.

This is my waifu, this is my gun. This one's for fighting, this ones for fun.

Wannabehero

  • Bay Watcher
    • View Profile
Re: [MODDING] 0.34. QUESTIONS THREAD
« Reply #4091 on: February 15, 2013, 03:54:44 pm »

Sorry for the double post, but I have my own questions. Is it possible, and if so how, to lower the firing speed without lowering the speed of the creature by making it heavy?

Are you talking about ranged weapons?

IIRC, my understanding is that if you lower [SHOOT_MAXVEL:x] then you lower the overall shooting rate for a weapon as well.  Increasing [SHOOT_FORCE:x] compensates for the loss in projectile momentum/penetrating power.
Logged

Stirk

  • Bay Watcher
  • Full Metal Nutball
    • View Profile
Re: [MODDING] 0.34. QUESTIONS THREAD
« Reply #4092 on: February 15, 2013, 04:15:15 pm »

Sorry for the double post, but I have my own questions. Is it possible, and if so how, to lower the firing speed without lowering the speed of the creature by making it heavy?

Are you talking about ranged weapons?

IIRC, my understanding is that if you lower [SHOOT_MAXVEL:x] then you lower the overall shooting rate for a weapon as well.  Increasing [SHOOT_FORCE:x] compensates for the loss in projectile momentum/penetrating power.

Yep, and thanks for the info. Now I got some balancing to do...
Logged
This is my signature. There are many like it, but this one is mine.

This is my waifu, this is my gun. This one's for fighting, this ones for fun.

exolyx

  • Bay Watcher
  • That one guy
    • View Profile
Re: [MODDING] 0.34. QUESTIONS THREAD
« Reply #4093 on: February 15, 2013, 05:25:28 pm »

Code: [Select]
[OBJECT:INTERACTION]

[INTERACTION:DRAGON_SECRET]
[I_SOURCE:SECRET]
[IS_NAME:the breath of dragons]
[IS_SPHERE:MOUNTAINS]
[IS_SECRET_GOAL:IMMORTALITY]
[IS_SECRET:SUPERNATURAL_LEARNING_POSSIBLE]
[IS_SECRET:MUNDANE_RESEARCH_POSSIBLE]
[IS_SECRET:MUNDANE_TEACHING_POSSIBLE]
[IS_SECRET:MUNDANE_RECORDING_POSSIBLE:objects/text/book_instruction.txt:objects/text/secret_fire.txt]
[I_TARGET:A:CREATURE]
[IT_LOCATION:CONTEXT_CREATURE]
[IT_REQUIRES:MORTAL]
[IT_REQUIRES:CAN_LEARN]
[IT_REQUIRES:CAN_SPEAK]
[I_EFFECT:ADD_SYNDROME]
[IE_TARGET:A]
[IE_IMMEDIATE]
[IE_ARENA_NAME:Dragonspeaker]
[SYNDROME]
[CE_DISPLAY_NAME:NAME:dragonspeaker:dragonspeakers:dragonspeaker:START:0]
[CE_ADD_TAG:NOEXERT:NO_AGING:NO_EAT:NO_DRINK:NO_SLEEP:FIREIMMUNE_SUPER:NO_PHYS_ATT_GAIN:NO_PHYS_ATT_RUST:START:0]
[CE_CAN_DO_INTERACTION:MATERIAL_EMISSION]
[CDI:ADV_NAME:Breath fire]
[CDI:USAGE_HINT:ATTACK]
[CDI:BP_REQUIRED:BY_CATEGORY:MOUTH]
[CDI:FLOW:DRAGONFIRE]
[CDI:TARGET:C:LINE_OF_SIGHT]
[CDI:TARGET_RANGE:C:15]
[CDI:MAX_TARGET_NUMBER:C:1]
[CDI:WAIT_PERIOD:60]

While on the subject of secrets, I made this, though it doesn't seem to appear in the arena, is there anything I did wrong here that could have caused that?
Logged

Stirk

  • Bay Watcher
  • Full Metal Nutball
    • View Profile
Re: [MODDING] 0.34. QUESTIONS THREAD
« Reply #4094 on: February 15, 2013, 05:40:19 pm »

Quote
While on the subject of secrets, I made this, though it doesn't seem to appear in the arena, is there anything I did wrong here that could have caused that?

What do you mean by "It is not appearing in the arena"? Do you mean that you can't get a dwarf to become a "dragonspeaker"? Or that his syndromes are not appearing?
Logged
This is my signature. There are many like it, but this one is mine.

This is my waifu, this is my gun. This one's for fighting, this ones for fun.
Pages: 1 ... 271 272 [273] 274 275 ... 544