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.