Aug 18, 2020
88
10
Yes, this is relatively easy. You'll want /data/system2/データ.ks

Each seedbed has a line of code that looks like this one:

Code:
tf.charaData[CHR_COTTON] =             %["name"=>"Cotton",            "power"=>10,    "sanSt"=>9999,    "allegiance"=>4*3,    "incontinence"=>8*3,        "seedling"=>6,        "seedlingWidth"=>1,        "job"=>"Rancher", "lewdjob"=>"Goblins' Cattle",        "unitID"=>UNT_A_COTTON,        "heredity"=>[2, 1, 1, 1, 0],    "meat"=>ITM_WOMENMEAT];
What you will want to change is the "heredity"=>[x,x,x,x,0] line. You can change the xs to be whatever you want, the 0 is redundant and even if you change it it won't change anything.

If, rather than cheat in items you want to make items more powerful, in the same file the items are lines of code like this one:

Code:
tf.itemData[ITM_NOBLEWOMENMEAT] =     %["name"=>"Noble Meat",                "type"=>ITP_CONSUMPTION,    "growthParam"=>[1, 1, 1, 1, 0],        "growthPower"=>9,    "san"=>-25,        "gFile"=>"icon003貴女の肉"];
You would want to change growthParams to all be 1s and the "growthPower" to be whatever you want. Noble Meat is a good example because it boosts every stat (again, except the final 0 which is redundant) by 9 points. Other items will only have 1 growthParam selected, but you could make every item a +1000 in all stats if you wanted to.
Apologies for asking again, but is there a way to change the passive ability inheritance rate? Like, not the stats but the % chance of a passive to be passed on. The Rituals only make it go up to like 70% iirc, but if there's a way to make it so that the passives are always inherited that'd be neat. The file listed only seems to have the stats like atk/ef/hp etc listed and editable and all
 

MuninKai

Well-Known Member
Apr 29, 2020
1,758
3,168
Apologies for asking again, but is there a way to change the passive ability inheritance rate? Like, not the stats but the % chance of a passive to be passed on. The Rituals only make it go up to like 70% iirc, but if there's a way to make it so that the passives are always inherited that'd be neat. The file listed only seems to have the stats like atk/ef/hp etc listed and editable and all
That I don't know. I think the easiest way would be to do it through the ritual code, but I don't know where that is. You could either increase how much each ritual gives, or there should be a line of code somewhere that limits how many rituals you can do and you could change the limiter. No idea where those would be though. Somewhere in System2. 拠点関数.ks would be my best guess.
 
Aug 18, 2020
88
10
That I don't know. I think the easiest way would be to do it through the ritual code, but I don't know where that is. You could either increase how much each ritual gives, or there should be a line of code somewhere that limits how many rituals you can do and you could change the limiter. No idea where those would be though. Somewhere in System2. 拠点関数.ks would be my best guess.
Thank you! That file lead to Pssive Inheritence Rate and "IKE_PASSIVE" on line 1821, editing the value of 10 there doesn't do anything, but searching for IKE_PASSIVE lead to データ.ks, where the ritual data seems to be stored. Most of it seems faairly obvious, each level providing a "power"=>"(number)" associated with it, turn numbers ranging from 0 to 120, traps from 2 to 3, etc. and notably Passive Inheritance rate from 10 to 30! Edited each level of that to equal 100 instead of 10/12/14/16/etc., and loading up the game again shows it works even in existing saves!

One thing of note is that the atk/def/mgc/com upgrades all have power 0, but given that was available in Burrow 1 I'm just assuming it's functional but handled by a different file or something like that
 

MuninKai

Well-Known Member
Apr 29, 2020
1,758
3,168
Thank you! That file lead to Pssive Inheritence Rate and "IKE_PASSIVE" on line 1821, editing the value of 10 there doesn't do anything, but searching for IKE_PASSIVE lead to データ.ks, where the ritual data seems to be stored. Most of it seems faairly obvious, each level providing a "power"=>"(number)" associated with it, turn numbers ranging from 0 to 120, traps from 2 to 3, etc. and notably Passive Inheritance rate from 10 to 30! Edited each level of that to equal 100 instead of 10/12/14/16/etc., and loading up the game again shows it works even in existing saves!

One thing of note is that the atk/def/mgc/com upgrades all have power 0, but given that was available in Burrow 1 I'm just assuming it's functional but handled by a different file or something like that
Yeah, very likely that those ritual functions were just left in so it would be compatible with Goblin Burrow. Glad it worked.
 
3.40 star(s) 11 Votes