-
Notifications
You must be signed in to change notification settings - Fork 2
/
file changes.txt
2034 lines (1778 loc) · 57.8 KB
/
file changes.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
See readme.txt for general information about the release.
See release_notes.txt for information on handling saves and a brief writeup on the changes for this version.
See command_line.txt for information on world generation from command lines.
******************************************************
Auxiliary file changes for 0.34.11:
armor items
mail shirt layering moved from ARMOR to OVER
******************************************************
Auxiliary file changes for 0.34.09:
inorganic soil
fixed white sand density (got rid of the second entry)
smelter reactions
coke output up to 9 and 5 from 3 and 2
******************************************************
Auxiliary file changes for 0.34.08:
arena
added bottomless chasm tiles (C)
changed keys
D_HOT_KEYS = capital H
new keys
DESIGNATE_TRACK
D_HAULING
D_HAULING_NEW_ROUTE
D_HAULING_NEW_STOP
D_HAULING_REMOVE
D_HAULING_PROMOTE
D_HAULING_VEHICLE
D_HAULING_NICKNAME
BUILDING_TRIGGER_ENABLE_TRACK_CART
BUILDING_TRIGGER_MIN_TRACK_CART_DOWN
BUILDING_TRIGGER_MIN_TRACK_CART_UP
BUILDING_TRIGGER_MAX_TRACK_CART_DOWN
BUILDING_TRIGGER_MAX_TRACK_CART_UP
HOTKEY_BUILDING_CONSTRUCTION_TRACK
HOTKEY_BUILDING_CONSTRUCTION_TRACK_STOP
HOTKEY_BUILDING_MACHINE_ROLLERS
HOTKEY_TRAP_TRACK_STOP
D_LOOK_FOLLOW
UNITVIEW_FOLLOW
D_HAULING_STOP_NEW_DEPART
D_HAULING_STOP_NEW_LINK
D_HAULING_STOP_REMOVE
D_HAULING_STOP_SL_SELECT_PILE
D_HAULING_STOP_SL_TAKE_GIVE
D_HAULING_STOP_LC_DIR
D_HAULING_STOP_LC_MODE
D_HAULING_STOP_LC_TIMER_UP
D_HAULING_STOP_LC_TIMER_DOWN
D_HAULING_STOP_LC_FULLNESS_UP
D_HAULING_STOP_LC_FULLNESS_DOWN
D_HAULING_STOP_LC_MORE_LESS
D_HAULING_STOP_LC_DESIRED_TOTAL
D_HAULING_STOP_LC_CHANGE
D_HAULING_STOP_LC_ADVANCED
BUILDING_TRACK_STOP_FRICTION_UP
BUILDING_TRACK_STOP_FRICTION_DOWN
BUILDING_TRACK_STOP_DUMP
BUILDJOB_STOCKPILE_LINK_ANYWHERE
BUILDJOB_STOCKPILE_GIVE_TO
ARENA_CREATURE_STRING
BUILDJOB_STOCKPILE_WHEELBARROW
BUILDING_ROLLERS_SPEED_UP
BUILDING_ROLLERS_SPEED_DOWN
UNITVIEW_PRF_NEW_SQUAD
UNITVIEW_PRF_REMOVE_FROM_SQUAD
UNITVIEW_PRF_NAME_CURRENT_SQUAD
UNITVIEW_PRF_NAME_SELECTED_SQUAD
D_MILITARY_NAME_SQUAD
entity
dwarves can build minecart/wheelbarrow tools
tools
minecart/wheelbarrow
new use TRACK_CART
new tag WOOD_MAT
new tag INVERTED_TILE
new tag FURNITURE
new announcements
[SKIP_ON_LIQUID:A_D:UCR_A]
[DODGE_FLYING_OBJECT:A_D:UCR_A]
material raws
adopted a bunch of densities/colors from topic 80022
toys/instruments
HARD_MAT on puzzlebox/drum for now
creature variation
fixed ATTACL typo
******************************************************
Auxiliary file changes for 0.34.07:
creatures
rat gets [CREATURE_CLASS:GENERAL_POISON]
sponge man -> [CV_REMOVE_TAG:BODY:BASIC_1PARTBODY_THOUGHT]
giant bushtit -> [PREFSTRING:small size] -> [PREFSTRING:somewhat great size]
weasel ANY_LAND -> NOT_FREEZING + TUNDRA
teeth and teeth attacks for
great barracuda
longnose gar
tigerfish
pike
reef sharks S->s
coelacanth plural gets s and c->C
great barracuda B->b
deer d->D
cougar C->c
warthog w->W
leopard L->l
new seal men got
[CV_CONVERT_TAG]
[CVCT_MASTER:BODY]
[CVCT_TARGET:FRONT_BODY_FLIPPERS:REAR_BODY_FLIPPERS]
[CVCT_REPLACEMENT:REAR_BODY_FLIPPERS]
[APPLY_CURRENT_CREATURE_VARIATION]
and lost their KICK_ATTACK
cave swallow man gets new body
underground people get attacks
creature variations
animal people ones get
[CV_REMOVE_TAG:SPECIALATTACK_INJECT_EXTRACT]
[CV_REMOVE_TAG:SPECIALATTACK_SUCK_BLOOD]
[CV_REMOVE_TAG:ATTACL_VELOCITY_MODIFIER]
[CV_CONVERT_TAG]
[CVCT_MASTER:BODY]
[CVCT_TARGET:QUADRUPED_NECK]
[CVCT_REPLACEMENT:HUMANOID_NECK:3FINGERS]
or
[CVCT_REPLACEMENT:HUMANOID_LEGLESS_NECK:3FINGERS]
d_init
[SET_LABOR_LISTS:SKILLS]
******************************************************
Auxiliary file changes for 0.34.06:
entity_default.txt
removed dungeon master and tax collector from MOUNTAIN
creatures
jabberer/cave dragon get TRAINABLE
new keys
ANIMAL_SELECT_TRAINER
ANIMAL_WAR_TRAINING
ANIMAL_HUNTING_TRAINING
CIVZONE_ANIMAL_TRAINING
removed keys
UNITVIEW_PRF_PET_HUNT
UNITVIEW_PRF_PET_WAR
HOTKEY_KENNEL_TRAIN_HUNT
HOTKEY_KENNEL_TRAIN_WAR
HOTKEY_KENNEL_TAME_UNIT
announcement
[TRAINING_DOWN_TO_SEMI_WILD:A_D:D_D]
[TRAINING_FULL_REVERSION:A_D:D_D:P:R]
[ANIMAL_TRAINING_KNOWLEDGE:A_D:D_D]
items
added [SHAPED] to various headwear
******************************************************
Auxiliary file changes for 0.34.05:
body parts
new eyelids in rcp body
body plans
fixed r_eye/l_eye
creatures
red panda: will -> with
giant desert scorp: description typo
mules -> gray M, muskox -> brown M and brown color and brown description
crab -> [AMPHIBIOUS]
horseshoe crab -> [AMPHIBIOUS][UNDERSWIM]
added benign to
BIRD_FALCON_PEREGRINE,BIRD_CROW,BIRD_RAVEN,BIRD_OWL_SNOWY,
SPARROW,BIRD_OWL_BARN,BIRD_PARAKEET,BIRD_PARROT_GREY,
BIRD_LORIKEET,BIRD_WREN,BIRD_OSPREY,GIANT_COCKATIEL,
BIRD_MAGPIE,GIANT_KESTREL,BIRD_EAGLE,GIANT_HORNBILL,
BIRD_BUSHTIT,MOTH,GRASSHOPPER,THRIPS,SLUG,SNAIL,
DESERT TORTOISE,GIANT TORTOISE,SPONGE,HORSESHOE_CRAB,
POND_TURTLE,HAMSTER,HEDGEHOG,SQUIRREL_FLYING,
GREEN_TREE_FROG,CAPUCHIN,SLOTH,SPIDER_MONKEY,AYE-AYE,
LION_TAMARIN
******************************************************
Auxiliary file changes for 0.34.03:
creatures
horseshoe crab gets heart/brain, removed NOT_BUTCHERABLE (not sure what the deal is in reality)
horseshoe crab man gets working body
kea gets LOOSE_CLUSTERS
entities
changed TOLERATES_SITE for entities, it only controls which cities world gen people will migrate too
keep in mind that an elf can be found in a dwarf town if it moves to a human city first, since they'll be in the human entity
interaction examples
LIKES_FIGHTING:MISCHIEVOUS instead of misspellings
added STERILE to mummy interaction examples (zombie don't need the tag since it applies to all animations)
material templates
removed extra [BUTCHER_SPECIAL:MEAT:NONE] from gizzard
d_init
SET_LABOR_LISTS:YES
******************************************************
Auxiliary file changes for 0.34.02:
inorganic
added BUILD_COLOR for all metals
creatures
rodent men given skin and hair properly
amphibian man changed
missing tapir sponsor information added
rodent removed from rabbit description
fixed material value in unicorn
fixed iron/mud man depths
reindeer plural fixed
peacock color fixed
creature variations
removed POPULATION_NUMBER and CLUSTER_NUMBER and COLOR and MOUNT and MOUNT_EXOTIC from GIANT
language
changed SQUASH from MAGIC to VIOLENT symbol
manual files updated
******************************************************
Auxiliary file changes for 0.34.01:
interactions
interaction_standard.txt has some basic processes
the examples are in "raw/interaction examples"
creatures
ability to do the interactions, using [CAN_DO_INTERACTION:<token>] -- this includes cleaning, ink spray, and physical social stuff
[CAN_DO_INTERACTION:MATERIAL_EMISSION] taken from fire imp, MATERIAL_EMISSION is defined in interaction_standard.txt
[CDI:ADV_NAME:Hurl fireball]
[CDI:USAGE_HINT:ATTACK]
[CDI:BP_REQUIRED:BY_CATEGORY:HAND]
[CDI:FLOW:FIREBALL]
[CDI:TARGET:C:LINE_OF_SIGHT]
[CDI:TARGET_RANGE:C:15]
[CDI:MAX_TARGET_NUMBER:C:1]
[CDI:WAIT_PERIOD:30]
[CAN_DO_INTERACTION:MATERIAL_EMISSION_WITH_HIDE_EFFECT] taken from squid
[CDI:ADV_NAME:Squirt ink]
[CDI:USAGE_HINT:FLEEING]
[CDI:LOCATION_HINT:IN_WATER]
[CDI:BP_REQUIRED:BY_TYPE:UPPERBODY]
[CDI:MATERIAL:LOCAL_CREATURE_MAT:INK:SPATTER_LIQUID] <-- SPATTER_LIQUID is a new "breath" attack, SPATTER_POWDER too
[CDI:VERB:squirt ink:squirts ink:NA]
[CDI:TARGET:C:SELF_ONLY] <-- this is basically book-keeping for the two effects in the interaction
[CDI:TARGET:D:SELF_ONLY]
[CDI:WAIT_PERIOD:200]
[CDI:FREE_ACTION] <-- they can spray ink and also move away
[CAN_DO_INTERACTION:CLEANING] taken from cat
[CDI:ADV_NAME:Clean]
[CDI:USAGE_HINT:CLEAN_SELF]
[CDI:USAGE_HINT:CLEAN_FRIEND]
[CDI:BP_REQUIRED:BY_CATEGORY:TONGUE]
[CDI:VERB:lick:licks:lick each other]
[CDI:CAN_BE_MUTUAL] <-- not yet implemented
[CDI:TARGET:A:SELF_ALLOWED:TOUCHABLE] <-- so the animal can lick themselves or anybody nearby
[CDI:TARGET_RANGE:A:1]
[CDI:MAX_TARGET_NUMBER:A:1]
[CDI:WAIT_PERIOD:10]
[CAN_DO_INTERACTION:BP_BUMP] taken from cat
[CDI:ADV_NAME:Head bump]
[CDI:USAGE_HINT:GREETING]
[CDI:BP_REQUIRED:BY_CATEGORY:HEAD]
[CDI:VERB:head-bump:head-bumps:bump heads]
[CDI:CAN_BE_MUTUAL] <-- not yet implemented
[CDI:TARGET:A:SELF_ONLY]
[CDI:TARGET:B:TOUCHABLE]
[CDI:TARGET_RANGE:B:1]
[CDI:MAX_TARGET_NUMBER:B:1]
[CDI:WAIT_PERIOD:20]
they can retract into bodyparts/roll into balls using RETRACT_INTO_BP
[RETRACT_INTO_BP:BY_CATEGORY:BODY_UPPER:roll into a ball:rolls into a ball:unroll:unrolls]
they will retract when they are frightened and near to an enemy
attacks while retracted will be much more likely to hit the retract part
they can root around and stir up vermin using ROOT_AROUND
[ROOT_AROUND:BY_CATEGORY:BILL:root around in:roots around in]
they can be made to eat vermin using GOBBLE_VERMIN_CREATURE and GOBBLE_VERMIN_CLASS
[GOBBLE_VERMIN_CREATURE:<creature>:<caste>] where <caste> can be ALL
[GOBBLE_VERMIN_CLASS:<class>] where class is a CREATURE_CLASS like the new EDIBLE_GROUND_BUG
they can drop extra objects during butchery with EXTRA_BUTCHER_OBJECT
[EXTRA_BUTCHER_OBJECT:BY_CATEGORY:GIZZARD]
[EBO_ITEM:SMALLGEM:NONE:ANY_HARD_STONE] <-- ANY_HARD_STONE is special, but you can use the standard material token list too
[EBO_SHAPE:GIZZARD_STONE] <-- this is a shape for a gem from descriptor_shape_standard.txt
DIVE_HUNTS_VERMIN is a new vermin hunting behavior, although it is limited for fortress pets because of the known flier troubles there
removed werewolf and whale and some redundant animal people from the old files
a ton of new sponsorship creatures -- the eight that got new tags are in the old files, the 112 that didn't get their own tags are in probationary new files, although I don't promise to give every one of them a special tag over time
NOT_LIVING replaces CANNOT_UNDEAD
material force multiplier, general material force multiplier
syndromes
SYN_INGESTED will work now
there are new tags here -- see the interaction examples in "raw/interaction examples" for syntax, here are some examples:
CE_ADD_TAG -- It's a pretty zombie-centric list (basically whatever came up for us). Support for other creature tags will be added.
EXTRAVISION
OPPOSED_TO_LIFE
SUPERNATURAL
NOT_LIVING
NOEXERT
CRAZED
BLOODSUCKER
NOPAIN
NOBREATHE
HAS_BLOOD
NOSTUN
NONAUSEA
NO_DIZZINESS
NO_FEVERS
TRANCES
NOEMOTION
LIKESFIGHTING
PARALYZEIMMUNE
NOFEAR
NO_EAT
NO_DRINK
NO_SLEEP
MISCHIEVOUS
NO_PHYS_ATT_GAIN
NO_PHYS_ATT_RUST
NOTHOUGHT
NO_THOUGHT_CENTER_FOR_MOVEMENT
NO_CONNECTIONS_FOR_MOVEMENT
CAN_SPEAK
CAN_LEARN
UTTERANCES
MORTAL
NO_AGING
STERILE
FIT_FOR_ANIMATION
FIT_FOR_RESURRECTION
CE_REMOVE_TAG
CE_DISPLAY_TILE
CE_DISPLAY_NAME
CE_FLASH_TILE
CE_PHYS_ATT_CHANGE
CE_MENT_ATT_CHANGE
CE_BODY_APPEARANCE_MODIFIER
CE_BP_APPEARANCE_MODIFIER
CE_MATERIAL_FORCE_MULTIPLIER
CE_SPEED_CHANGE
CE_BODY_MAT_INTERACTION -- only works on hist figs, causes that hist figs body material to cause interaction as a syndrome mat.
CE_CAN_DO_INTERACTION
CE_BODY_TRANSFORMATION
CE_SKILL_ROLL_ADJUST
xml
the legends xml has a lot of new info for historical figures
entities
PLAINS gets BUILDS_OUTDOOR_TOMBS
PLAINS gets all the trap comps
world gen params
some have been replaced, here are the new ones (might be missing some):
NIGHT_TROLL_NUMBER -- all of the following control how many random definitions are created, if set to zero that world won't have any
BOGEYMAN_NUMBER
VAMPIRE_NUMBER
WEREBEAST_NUMBER
SECRET_NUMBER
REGIONAL_INTERACTION_NUMBER
DISTURBANCE_INTERACTION_NUMBER
EVIL_CLOUD_NUMBER
EVIL_RAIN_NUMBER
graphics
SKELETON/ZOMBIE -> ANIMATED
announcements
there are some new ones, mostly or all at the bottom of the file
reactions
you can make BOOK items in reactions, and add PAGES improvements to them
pages are always blank though
new keys (this might not be it, but it wasn't many)
A_ACTION_ABILITY:A
A_ACTION_POWER:P
changed keys
A_BARTER_CURRENCY_2 -> O
removed keys
A_BARTER_CURRENCY_3 to 9
******************************************************
Auxiliary file changes for 0.31.25:
cave dragon stance strike skill removed, given claw attack
******************************************************
Auxiliary file changes for 0.31.24:
moved clay crafts key over to C (was conflicting with clay statue's s)
NECK_SPINE bodypart token correction (had NECK)
rodent man bite attack uses teeth now
dragon/hydra stance strike skill removed, given claw attack
guineachick -> keet
******************************************************
Auxiliary file changes for 0.31.23:
creature changes
added rodent man teeth
added ribcages to various underground animal peoples
penguins 2WINGS -> SIDE_FLIPPERS
platypus get AMPHIBIOUS/UNDERSWIM
changed sizes for most giant creatures
domestic birds and penguins get MUNDANE
reptile men get GENERIC_TEETH
prefstrings for some of the new giant creatures
******************************************************
Auxiliary file changes for 0.31.22:
new creature tag
[PRONE_TO_RAGE:<rate>] -- the creature follow its normal behavior, but flip out on occasion, higher rate = more flipping out
body detail
leathery egg shell
new material template
leathery egg shell
body parts
QUADRUPED_NECK, NECK_SPINE
various reptiles and others
leathery egg shell
temperate creatures
4134: capybara sound typos
capybara tail removed
fixed some tokens in panda bp color tags
badger and allies
moose and allies
river/lake creatures
platypus and allies
tropical creatures
honey badger
giraffe tweaks
tundra creatures
some penguins and allies
subterranean creatures
rodent man
******************************************************
Auxiliary file changes for 0.31.20/21:
material changes
added [DO_NOT_CLEAN_GLOB] to fat, seed and wax materials
added [NO_STONE_STOCKPILE] to all inorganic_other entries
creature changes
deer antlers
fixed length text for shearable sheep
fixed some biome description issues in fish/cougar, other description issues
got rid of left/right on rhino horns
added numbing phantom spider bite
made reptile man bite attack secondary
fixed text for serpent man tail attack
closed some brackets
bullhead scale color
density/text fixes for eggs
PET_VALUE_DIVISOR to control bee value
changed the hair tissue plan to include wings
added EXTRAVISION to some more eyeless critters
added tissue layer thickness to alpaca/llama wool
honey bee wax gets [STOCKPILE_GLOB_PRESSED]
broke up VERMINHUNTER
AT_PEACE_WITH_WILDLIFE
RETURNS_VERMIN_KILLS_TO_OWNER
HUNTS_VERMIN
ADOPTS_OWNER
[SPECIFIC_FOOD:PLANT:<token>]
[SPECIFIC_FOOD:CREATURE:<token>]
[SOUND:<type>:<range>:<approximate period/timer>:<VOCALIZATION or NONE>:<verbs/out-of-sight noun>]
reaction changes
added [FOOD_STORAGE_CONTAINER] for mead reaction
changed key for jug glazing
language
betwitch -> bewitch
new announcement
CREATURE_SOUND
******************************************************
Auxiliary file changes for 0.31.19:
new soil - fired clay, added ceramic reaction information to clay and kaolinite
new inorganics - earthenware, stoneware, porcelain
new material tag
[YARN]
new creature tags
[APP_MOD_DESC_RANGE:<6 range numbers>] -- adjusts the numeric ranges for getting different adjectives in descriptions
[SHEARABLE_TISSUE_LAYER:<body part modifier like LENGTH>:<modifier level when ready>]
[LAYS_EGGS]
[EGG_MATERIAL:<mat tokens>]
[LAYS_UNUSUAL_EGGS:<item tokens>]
[EGG_SIZE:<size>]
[CLUTCH_SIZE:<min>:<max>]
[GRAZER:<amount of hunger removed per bite>] -- only grazer animals in your fort need to eat at this point
[ARTIFICIAL_HIVEABLE]
[HIVE_PRODUCT:<max in hive>:<timer>:<item/mat tags>]
[COLONY_EXTERNAL] -- this caste appears around the colony
[DIE_WHEN_VERMIN_BITE]
[REMAINS_ON_VERMIN_BITE_DEATH]
[UBIQUITOUS] -- creature will occur in absolutely every region that is a biome match (does not apply to evil/good)
new tool tag
[CONTAINER_CAPACITY:<amount>]
new reaction tags
[NOT_IMPROVED]
[DOES_NOT_ABSORB]
[PRODUCT_PASTE]
[PRODUCT_PRESSED]
[NOT_PRESSED]
[DOES_NOT_DETERMINE_PRODUCT_AMOUNT]
[CONTAINS:<reagent token>]
not respected in adv mode interface, didn't try nesting containers
multiple CONTAINS on one reagent supported if they don't overlap
new grass raws
added CAN_GLAZE reaction glass to STONE_TEMPLATE
added egg/plant oil/plant soap material templates
added egg tags to creatures all over (no amphibians/fish/insects yet)
rocknuts got oil (instead of adding a new plant)
new reactions for milling seeds with new paste tag for glob products
new reactions for firing and glazing jugs and other ceramics
new reactions related to beekeeping
new entries in dwarf/human entity entries for new jobs/reactions
creature_standard.txt
gobs: [NO_DRINK][NO_EAT] (they keep bonecarn)
creature_domestic.txt
many new entries
new unit types
SHEARER
SPINNER
POTTER
GLAZER
PRESSER
BEEKEEPER
WAX_WORKER
new labor types
SHEARER
SPINNER
POTTERY
GLAZING
BEEKEEPING
WAX_WORKING
new skill type
SHEARING
SPINNING
POTTERY
GLAZING
BEEKEEPING
WAX_WORKING
new job item flag
ANY_STRAND_TISSUE
ANY_YARN_MATERIAL
new keys
[HOTKEY_FARMER_SHEAR_CREATURE:S]
[HOTKEY_FARMER_SPIN_THREAD:SHIFT+S]
[ORDERS_REFUSE_DUMP_STRAND_TISSUE:H]
[HOTKEY_CLOTHES_MAT_YARN:Y]
[HOTKEY_LOOM_WEAVE_YARN:Y]
[HOTKEY_BUILDING_NEST_BOX:SHIFT+N]
[HOTKEY_BUILDING_HIVE:ALT+H]
[CIVZONE_PEN:N]
[CIVZONE_PEN_OPTIONS:SHIFT+N]
[CIVZONE_CLAY_COLLECT:C]
[HOTKEY_COLLECT_CLAY:C]
[HIVE_INSTALL_COLONY:C]
[HIVE_GATHER_PRODUCTS:G]
[HOTKEY_CRAFTS_YARN:Y]
[HOTKEY_CRAFTS_SEL_WOOD:W]
[HOTKEY_CRAFTS_SEL_BONE:B]
[HOTKEY_CRAFTS_SEL_SHELL:S]
changed goblet keys to ALT+G
******************************************************
Auxiliary file changes for 0.31.18:
data/index
creature_standard.txt
added elite ranged unit names for dwarves
entity_default.txt
gave humans METAL/GEM/STONE_PREF
gave gobs METAL_PREF and got rid of gem professions
gave kobs METAL_PREF/STONE_PREF/FURNACE_OPERATOR for the time being at least, though this will probably change
item_weapon.txt
changed a few two-handed sizes
******************************************************
Auxiliary file changes for 0.31.17:
data/index
announcements.txt
[NIGHT_ATTACK_STARTS:A_D:D_D:BOX]
[NIGHT_ATTACK_ENDS:A_D:D_D:BOX]
[NIGHT_ATTACK_TRAVEL:A_D:D_D]
[GHOST_ATTACK:A_D:D_D]
[LAIR_HUNTER:A_D:D_D]
[TRAVEL_SITE_DISCOVERY:A_D:D_D:BOX]
[TRAVEL_SITE_BUMP:A_D:D_D]
[ADVENTURE_INTRO:BOX]
removed
COMBAT_WRESTLE_PINCH
COMBAT_WRESTLE_GOUGE
COMBAT_WRESTLE_STRANGLE
COMBAT_SHAKE
world_gen.txt
[NIGHT_CREATURE_NUMBER:<number of definitions>]
body_default/rcp.txt
neck changed over to upper spine (left NECK token), category SPINE
neck and lower spine get CONNECTOR
upper spine in lower body changed to middle spine
creature_large_mountain.txt
voice mannerisms neck -> throat
creature_standard.txt
humans, elves and dwarves get [SPOUSE_CONVERSION_TARGET]
added ogress caste name to ogre
minotaur gets lair, habit and [NATURAL_SKILL] tags
other semis/megas get basic lair stuff
dragon/hydra get NOEXERT
dragon got willpower boost, skill tags
hydra gets skill tags
gremlin gets skill tag
removed cluster numbers from all semimegabeasts, (unused) pop number from bronze colossus
voice mannerisms neck -> throat
creature_subterranean.txt
voice mannerisms neck -> throat
creature_next_underground.txt
tweaked DIFFICULTY numbers, which are used for fame rewards now
gave blind cave ogre extra vision
entity_default.txt
BUILDS_OUTDOOR_FORTIFICATIONS added to PLAINS entity
banditry tags on humans, goblins and kobolds
BANDITRY:<perc>
LOCAL_BANDITRY
inorganic_stone_soil.txt
went over to new SOIL_TEMPLATE
xml
new historical events: change creature type, hist figure revived
added "put to rest", "vanish" and "scared to death" kill causes
new site names "hamlet" "town" "fortress" "labyrinth" "lair" "shrine"
item_tool.txt
new file, used only by adv mode peasants and lair creatures at this point
new keys
[HOTKEY_BUILDING_SLAB:ALT+S]
[HOTKEY_MASON_SLAB:ALT+S]
[HOTKEY_CRAFTS_SLAB:ALT+S]
[A_TRAVEL_SLEEP:SHIFT+Z]
[A_TRAVEL_MAP:M]
[A_TRAVEL_HIDE_INSTRUCTIONS:H]
[A_SLEEP_SLEEP:S]
[A_SLEEP_WAIT:W]
[A_SLEEP_DAWN:D]
[ORDERS_REFUSE_OUTSIDE_VERMIN:V]
[A_COMPANIONS:C]
[A_ATTACK_CONFIRM:ALT+Y]
renamed
A_MOVE_WAIT -> A_MOVE_SAME_SQUARE
changed
[A_CENTER:V]
[A_COMBAT:SHIFT+C]
graphics example
added GHOST to the list of texture options
new bp tag
CONNECTOR -- child part with CONNECTOR keeps parent unsevered until receiving severing damage itself
new creature tags
NIGHT_CREATURE_HUNTER
NIGHT_CREATURE_BOGEYMAN
SPOUSE_CONVERTER
CONVERTED_SPOUSE
SPOUSE_CONVERSION_TARGET
LAIR_HUNTER
LAIR_HUNTER_SPEECH:<speech file>
HABIT:<habit token>:<percentage>
HABIT_NUM:<TEST_ALL or a number>
NATURAL_SKILL:<skill token>:<amount>
skill starts here and cannot rust below here
CREATURE_SOLDIER_TILE:<tile>
SOLDIER_ALTTILE:<tile>
CASTE_SOLDIER_TILE:<tile>
CASTE_SOLDIER_ALTTILE:<tile>
SKILL_LEARN_RATES:<percentage>
SKILL_RUST_RATES:<3 rust tags from SKILL_RATES>
SKILL_RATE:<skill token>:<4 tags from SKILL_RATES>
SKILL_LEARN_RATE:<skill token>:<percentage>
SKILL_RUST_RATE:<skill token>:<3 rust tags from SKILL_RATES>
******************************************************
Auxiliary file changes for 0.31.16:
data/index
d_init.txt
[WALKING_SPREADS_SPATTER_DWF:NO]
[WALKING_SPREADS_SPATTER_ADV:YES]
******************************************************
Auxiliary file changes for 0.31.15:
data/index
building_custom.txt
added blocked tiles to soap maker
body_default.txt
3EYES added
body_rcp.txt
RCP_3_EYES has [LEFT] removed from center eye
creature_large_temperate.txt
gave rhesus tail
creature_large_tropical.txt
made elephant tusk attack co-MAIN with kicks
creature_next_underground.txt
added EXTRAVISION to voracious cave crawler
added 2HEAD_HORN to crundle BODY and made them grow up faster
added LARGE_ROAMING and NOBREATHE to magma crab
added LARGE_ROAMING and LARGE_PREDATOR to helmet snake
added LARGE_ROAMING to cave dragon
added LARGE_ROAMING to giant earthworm
made amethyst men die as ROUGH instead of BOULDER
fixed blind cave bear rear toes (they were front instead of rear)
creature_savage_tropical.txt
moved giant desert scorpion over to chitin templates
gave tigermen ears and ribcages
creature_standard.txt
strangler gets 3EYES instead of 2EYES:1EYE and gave them MALE/FEMALE castes
added nouns for eye modifiers for cyclops to fix description typos and got rid of their large iris modifier
because of some announces with noun/verb agreement there
removed humanoid head/ribcage positioning from grimelings
creature_subterranean.txt
fixed melting point on fire imp blood
gave cave swallow man wings in addition to arms
stuck tail on olm
removed MUNDANE from fire snake
made all the ant man castes grow up faster and made them live a little longer
made amphibian men grow up faster
inorganic_metal.txt
put bending values back in sterling silver
item_weapon.txt
fixed short sword and battle axe pommel attack contact area (1000 -> 100 like other weapons)
material_template_default.txt
added [ROTS] to STRUCTURAL_PLANT_TEMPLATE and LEAF_TEMPLATE
plant_standard.txt
fixed quarry bush LEAVES tile/color mix up
world_gen.txt
stopped doubling up CAVE_MIN_SIZE in the exporter and initial file
******************************************************
Auxiliary file changes for 0.31.14:
data/index
raws
new mineral tag for slade -- [UNDIGGABLE] until digging accounts for things properly
changed material properties for raw adamantine
New world gen parameters
[SITE_CAP:<number>]
Limits overall number of sites to this.
Caves and ruins are included in this number, so world gen civ spread stops cold once it is attained the way things currently go.
[MEGABEAST_CAP:<number>]
Attempts to place this many megabeast groups (also effectively capped by total cave number).
In vanilla DF, there are no megabeasts that actually occur in groups, but it is possible in mods.
Placing more beasts than caves will cause all caves to be filled by megabeasts. This will leave nothing for races like kobolds.
Can be zero if you don't want any megabeasts.
[SEMIMEGABEAST_CAP:<number>]
Attempts to place this many semimegabeast groups (they get the last cave remnants).
Because they get the last available caves, setting this to maximum causes all remaining caves to be filled with civs unaffected.
Can be zero if you don't want any semimegabeasts.
******************************************************
Auxiliary file changes for 0.31.13:
data/index
raws
entity_default.txt -- START_GROUP NUMBER is gone
made horn silver use the stone template
moved all native metals off of metal template
******************************************************
Auxiliary file changes for 0.31.12:
data/index
raws
creature_standard.txt -- added an extra NONE to kobold rates
******************************************************
Auxiliary file changes for 0.31.11:
data/index
data/help -- a few typos in files here
raws
creature_large_ocean.txt -- removed duplicate cluster number on tuna
creature_large_temperate.txt -- buzzard given MUNDANE flag, corrected typo in deer description
creature_large_tropical.txt -- vulture given MUNDANE flag
creature_large_tundra.txt -- corrected hair name for musk ox (was skin)
creature_next_underground.txt -- gave giant earthworm larger size
creature_other.txt -- removed duplicate natural tag from a few entries
creature_small_mammals.txt -- removed duplicate natural tag from all entries
creature_subterranean.txt -- removed duplicate natural tag from a few entries
******************************************************
Auxiliary file changes for 0.31.10:
data/index
data/help/a_keys -- added the 'x' instructions
******************************************************
Auxiliary file changes for 0.31.09:
data/index
data/speech
several files shortened
interface.txt
new keys
[A_ACTION:X]
[A_ACTION_CREATE:C]
[A_ACTION_BUTCHER:B]
raws
various numbers changed for weapons, ammo, materials (esp. metals)
rock sharpening reaction in reaction_other
new announcement
ANNOUNCEMENT_ADV_REACTION_PRODUCTS
******************************************************
Auxiliary file changes for 0.31.07:
data/index
data/init/init.txt, SDL version
mode examples added
data/init/d_init.txt
[PILLAR_TILE:'O']
interface.txt, SDL version
new keys
[BIND:FPS_UP:REPEAT_SLOW]
[SYM:4:Equals]
[BIND:FPS_DOWN:REPEAT_SLOW]
[SYM:4:Minus]
******************************************************
Auxiliary file changes for 0.31.06:
data/index
Non-legacy init.txt is set to 2D mode by default now
raw/objects/creature_annelids.txt
removed duplicate natural tag from worm
raw/objects/creature_domestic.txt
removed duplicate child tag from donkey
added trade capacity to horse
raw/objects/creature_insects.txt
removed duplicate color/tile tag from monarch butterfly
raw/objects/creature_large_tropical.txt
removed common domestic and pack animal from warthog
raw/objects/creature_small_ocean.txt
removed duplicate no sleep tags from oyster and mussel
raw/objects/creature_standard.txt
removed duplicate pet value tags from ice wolf, nightwing and werewolf
removed extra NECK from hydra body
raw/objects/inorganic_stone_layer.txt
removed duplicate obsidian melting point
raw/objects/language_words.txt
firey -> fiery
raw/objects/material_template_default.txt
updated many of the values so that for instance teeth aren't like skin in many ways
******************************************************
Auxiliary file changes for 0.31.05:
data/index
Non-legacy init.txt has new options:
[KEY_REPEAT_ACCEL_LIMIT:8]
[KEY_REPEAT_ACCEL_START:10]
******************************************************
Auxiliary file changes for 0.31.04:
data/index
init.txt has been broken up into init.txt, d_init.txt and colors.txt
For non-legacy versions, interface.txt has a different format and a few extra keys related to zoom and macros.
******************************************************
Auxiliary file changes for 0.31.03:
data/index
New keys
[ARENA_CREATURE_UNDEAD:U]
Creature raws
Fixed some broken apostrophes (mountain gnome, ocean sunfish, hungry head, harpy).
Moved [STANCE] to hands for ARMS_STANCE body parts.
Remove eye appearance modifiers from minotaurs.
Entity raws
Removed the SOLDIER_COLOR] thing -- it corresponded to a note to myself to handle soldier-like entity position colors, but it was confusing people, so it's just in the notes themselves now.
******************************************************
Auxiliary file changes for 0.31.02:
data/index
readme.txt (added to and alphabetized 2010 tester credits)
Creature raws
corrected gorlak display color
made blind cave bears eyeless and gave them extravision
corrected first line of body_rcp.txt
fixed broken eyelid relationships
fixed broken child names for goat/unicorn/cave swallow
swapped giant caste names
fixed giant cave spider bite (was blunt)
fixed alligator eye text
made soap bars instead of globs
fixed horn silver environment
added cookability/vermin eating to meat material templates
added cookability/vermin eating to plant leaf/seed materials
******************************************************
Auxiliary file changes for 0.31.01:
Most everything -- I can't compile a list of all of the changes here, but I've included more help notes in the raws themselves.
******************************************************
Auxiliary file changes for 0.28.181.40d:
data/index
data/init/init.txt (just the wiki date)
******************************************************
Auxiliary file changes for 0.28.181.40c:
data/index
data/init/init.txt
Changed init options
[PARTIAL_PRINT:NO:2]
******************************************************
Auxiliary file changes for 0.28.181.40b:
data/index
data/init/init.txt
New init options
[FULLGRID:80:25]
[PARTIAL_PRINT:NO]
******************************************************
Auxiliary file changes for 0.28.181.40a:
data/index
data/init/init.txt
data/init/interface.txt
New keys
[SETUPGAME_SAVE_PROFILE:S]
[SETUPGAME_SAVE_PROFILE_ABORT:SHIFT+SPACE]
[SETUPGAME_SAVE_PROFILE_GO:ENTER]
[SETUPGAME_VIEW_PROFILE_PROBLEMS:P]
[ORDERS_AUTOFORBID:SHIFT+F]
[ORDERS_FORBID_PROJECTILE:P]
[ORDERS_FORBID_YOUR_CORPSE:C]
[ORDERS_FORBID_YOUR_ITEMS:I]
[ORDERS_FORBID_OTHER_CORPSE:O]
[ORDERS_FORBID_OTHER_ITEMS:T]
[SETUP_NOTES:N]
[SETUP_NOTES_TAKE_NOTES:N]
[SETUP_NOTES_DELETE_NOTE:D]
[SETUP_NOTES_CHANGE_SYMBOL_SELECTION:C]
[SETUP_NOTES_ADOPT_SYMBOL:S]
New init options
[STORE_DIST_ITEM_DECREASE:1000]
[STORE_DIST_SEED_COMBINE:1000]
[STORE_DIST_BUCKET_COMBINE:1000]
[STORE_DIST_BARREL_COMBINE:1000]
[STORE_DIST_BIN_COMBINE:1000]
******************************************************
Auxiliary file changes for 0.28.181.39d:
New keys
[D_NOTE:SHIFT+N]
[D_NOTE_PLACE:P]
[D_NOTE_DELETE:D]
[D_NOTE_ENTER:N]
[D_NOTE_ADOPT_SYMBOL:S]
[D_NOTE_CHANGE_SELECTION:C]
[WORLD_PARAM_REJECT_CONTINUE:C]
[WORLD_PARAM_REJECT_ABORT:A]
[WORLD_PARAM_REJECT_ALLOW_THIS:T]