Bay 12 Games Forum

Please login or register.

Login with username, password and session length
Advanced search  

Author Topic: Tame spiders  (Read 677 times)

Grek

  • Bay Watcher
    • View Profile
Tame spiders
« on: December 22, 2007, 05:50:00 pm »

I'm trying to make it so that cave spiders are dog sized animals you can buy on the start screen. Here's what I have so far:

quote:

[CREATURE:SPIDER_CAVE]
   [NAME:cave spider:cave spiders:cave spider]
   [TILE:'S'][COLOR:7:0:0]
   [MODVALUE:5]
   [EXTRACT:cave spider venom:7:0:0]
   [EXTRACT_VALUE:50]
   [EXTRACT_PARALYZE][NATURAL][PET][COMMON_DOMESTIC]
   [EXTRACT_ANTIDOTE:cave spider antivenin:7:0:0:100]
   [WEBBER][WEBIMMUNE][AMBUSHPREDATOR][PARALYZEIMMUNE]
   [LARGE_PREDATOR]
   [BLOODTYPE:W][CHITIN]
   [PETVALUE:50]
   [CARNIVORE]
   [NOPAIN][EXTRAVISION][NOSTUN][NOEMOTION][NOSKULL][NOBONES]
   [NOFEAR]
   [PREFSTRING:mystery]
   [BODY:SPIDER:2EYES:HEART:GUTS:BRAIN:MOUTH]
   [SIZE:3]
   [MAXAGE:20:30]

[ATTACK:MAIN:BYTYPE:MOUTH:bite:bites:1:3:GORE][ATTACKFLAG_CANLATCH][SPECIALATTACK_INJECT_EXTRACT:50:100]
   [FAT:1]
   [NO_SLEEP]
   [ALL_ACTIVE]
   [POPULATION_NUMBER:15:30]
   [BIOME_SUBTERRANEAN_CHASM]
   [BIOME_SUBTERRANEAN_WATER]
   [HOMEOTHERM:10040]
   [STANDARD_FLESH]


I can buy spiders from the start screen that don't make webs.

Logged

Wiles

  • Bay Watcher
    • View Profile
Re: Tame spiders
« Reply #1 on: December 22, 2007, 06:24:00 pm »

I made some spiders for my mod. I found sometimes I'd start in an area and there would be webs around, but my spiders wouldn't make more. They do however, make plenty of webs when they are fighting. My spiders are trainable (war, hunting spiders), so assigning them to a hunter seems to supply me with more webs.

I've been debating if I should add thickweb to them so their webs are useful in combat, but I'm thinking that it might end up deadly to my dwarves if they accidentally get stuck in them.


code:
 [CREATURE:SPIDER]
   [NAME:spider:spiders:spider]
   [TILE:'s'][COLOR:6:0:0]
   [PETVALUE:300][NATURAL]
   [BUTCHERABLE_NONSTANDARD]
   [LARGE_ROAMING]
   [MODVALUE:2]
   [COMMON_DOMESTIC][TRAINABLE][PET]
   [WEBBER][WEBIMMUNE]
   [EXTRACT:spider venom:7:0:0]
   [EXTRACT_VALUE:20]
   [EXTRACT_STUN_INTERMITTENT]
   [EXTRACT_ANTIDOTE:spider antivenin:7:0:0:50]
   [BLOODTYPE:W][EXTRAVISION]
   [PREFSTRING:lovely silk]
   [BODY:SPIDER:4EYES:HEART:GUTS:BRAIN:MOUTH]
   [SIZE:4]
   [NOSKULL][NOBONES][CHITIN]
   [NOFEAR][NOEMOTION]
   [MAXAGE:10:20]
   [ATTACK:MAIN:BYTYPE:MOUTH:bite:bites:1:6:GORE][ATTACKFLAG_CANLATCH][SPECIALATTACK_INJECT_EXTRACT:50:100]
   [CHILD:1][CHILDNAME:juvenile spider:juvenile spider]
   [FAT:1]
   [DIURNAL]
   [STANDARD_FLESH]
   [HOMEOTHERM:10070]
   [LAYERING:100]
   [SWIMS_INNATE][SWIM_SPEED:2500]

[ December 22, 2007: Message edited by: Wiles ]

Logged