bartroli

Member
Jul 21, 2017
153
217
232
Maybe on "contents" instead? I cant test myself right now
Nope , tested to move the folders of the npcs to content doesnt work , and in the game when you try to load theres nothing unless you put the folders of each thing on the npc folder that game also shows you where to put them , but i do that and then when i click the folder at the right after load , nothing happens.
 
Sep 16, 2018
140
72
183
Nope , tested to move the folders of the npcs to content doesnt work , and in the game when you try to load theres nothing unless you put the folders of each thing on the npc folder that game also shows you where to put them , but i do that and then when i click the folder at the right after load , nothing happens.
well unless we are missing something obvious all i can think of is those "meta" files
tho they arent referenced in the guide at all
i also looked inside the xml files and renamed a few folders so the folder name matches what says in the XML file but that also did nothing
also the IMAGES folder is for the other workshop, the npc images seems to be stored inside the npc folder itself
1764120379704.png
 

Yin Gee

Newbie
Dec 6, 2017
68
28
36
Is there a difference between the large female raider and the red armor version in the console command? Or is it just the level the npc spawns at?
 

AppalingBlue

Member
Feb 21, 2024
121
246
112
is this in development?, i have no clue how to get there assuming its even possible
View attachment 5472197
Chaos Cave gorilla bosses (Gorela & Gorola). They're underground inside the Chaos Cave. Type "/wp corrupt" to teleport to the cave entrance on the surface. Also "/stage gorilla" to teleport in front of the underground passage in the Chaos Cave leading to the gorilla bosses (might need a torch to see the passageway depending on your screen's brightness).

You can work out how to get there "legitimately" once you have an idea where the locations are.

Is there a difference between the large female raider and the red armor version in the console command? Or is it just the level the npc spawns at?
Raider natives wearing garishly red clothes are elite variants. On top of spawning with a higher(+10) level in raids, they also come with different (usually better) attack animations which sometimes include new attack moves.

Elite Large Native Female has a shield move that heavily cuts down all incoming damage. After a while, the shield will "explode", dealing AoE damage in a small radius. As a raider (or if you forcefully "upgrade" an existing Large Native Female using /elite), she spawns with a red bikini armor and helm similar to the one worn by female Warriors in Dragon Quest III.
 
Last edited:
  • Like
Reactions: John8r9
Sep 16, 2018
140
72
183
Chaos Cave gorilla bosses (Gorela & Gorola). They're underground inside the Chaos Cave. Type "/wp corrupt" to teleport to the cave entrance on the surface. Also "/stage gorilla" to teleport in front of the underground passage in the Chaos Cave leading to the gorilla bosses (might need a torch to see the passageway depending on your screen's brightness).

You can work out how to get there "legitimately" once you have an idea where the locations are.
thanks
 

DreagenCode

Member
Jun 4, 2025
301
144
43
Elite Large Native Female has a shield move that heavily cuts down all incoming damage. After a while, the shield will "explode", dealing AoE damage in a small radius. As a raider (or if you forcefully "upgrade" an existing Large Native Female using /elite), she spawns with a red bikini armor and helm similar to the one worn by female Warriors in Dragon Quest III.
I take it the girls who are firing arrows are just normal native females since it doesn't look like they do anything different from a typical native female with a bow.
 

m1ch43l

Member
Jul 6, 2017
478
539
297
Say, what exactly is the difference between normal and elite at the same level? Do they have better base stats or different stat distribution? if not, I'd rather rely on my great-great-great-great-great-granddaughters/wives
 

AppalingBlue

Member
Feb 21, 2024
121
246
112
I take it the girls who are firing arrows are just normal native females since it doesn't look like they do anything different from a typical native female with a bow.
Elite Native Female (and Female DLC) have faster attack animations (melee and bow) and significantly increased range with the bow.

The animations also look different and they actually wield their weapons like trained warriors instead of randos swinging an axe for the first time. They also move more "professionally".

Say, what exactly is the difference between normal and elite at the same level? Do they have better base stats or different stat distribution? if not, I'd rather rely on my great-great-great-great-great-granddaughters/wives
They almost always have the same stats but have much, much better attacks. Most elite natives (male, female, DLC, small) get faster attack animations. Elite Bigfoot deals slightly more damage with his AoE and multhit moves (higher percentage multiplier) and has a new triple attack. Elite Large Native Male gets an AoE ground smash attack, while Elite Large Female Native gets the aforementioned "shield" move.

Elite Underground Woman/Sadako (and her children who inherit her Elite status) show the most drastic change, with different appearances and psychic powers. Sadako also gets her speed increased by 1.0 (effectively an x6 multiplier) as part of the process of turning her elite.

Elite units basically turn their non-elite counterparts obsolete. Especially for Sadako and her children, with non-elite Underground Women and her children being completely useless since they're just slow melee units with no psychic powers. The only exception I can think of are the Large Female Native; her elite counterpart is more of a sidegrade into a "tank" role since she will spend more time blocking instead of attacking more often, unlike the non-elite ones.
 
Last edited:
  • Like
Reactions: DreagenCode

DreagenCode

Member
Jun 4, 2025
301
144
43
Elite Native Female (and Female DLC) have faster attack animations (melee and bow) and significantly increased range with the bow.
Ah, okay, well then, it's time to add them to the military force that I will make in the next play-through. Just was considering how I wanted to structure my village to meet certain ideas and pathways.

But do they lose their elite status if they breed with the MC?
 

AppalingBlue

Member
Feb 21, 2024
121
246
112
Ah, okay, well then, it's time to add them to the military force that I will make in the next play-through. Just was considering how I wanted to structure my village to meet certain ideas and pathways.

But do they lose their elite status if they breed with the MC?
If the mother is elite their children will also inherit their elite status. Only the mother's status is checked. ycbalabala poked into the game's code a while ago and confirmed this:

Oh, right; Didn't know elite status was class level.
Here's the code of GenChildSet() (comments and variable names changed for comprehension) as of 0.4.4.8:

Code:
public void GenChildSet(CommonStates child, CommonStates mom)
{
    CommonStates dad = mn.npcMN.GetFriend(mom.pregnant[0]);
    CommonStates momOrDad = mom;
    if (dad != null && UnityEngine.Random.Range(0, 2) == 0)
        momOrDad = dad;
    for (int index = 0; index < child.colors.Length; ++index)
        child.colors[index] = momOrDad.colors[index];
    switch (child.npcID)
    {
        case 142: // Under Ground Girl
        case 143: // Under Ground Boy
        case 181: // Under Ground Young Man
            if (momOrDad == mom && mom.npcID == 44 /* Under Ground Woman */ && mom.colors[0] == Color.white)
            {
                // Set first 3 colors to #323232 (dark charcoal)
                for (int index = 0; index < 3; ++index)
                    child.colors[index] = new Color32(50, 50, 50, byte.MaxValue);
                break;
            }

            break;
    }

    switch (momOrDad.npcID)
    {
        case 1: // Man
        case 89: // Young Man
            child.colors[1] = child.colors[0];
            break;
    }

    switch (child.npcID)
    {
        case 10: // Male Native
        case 11: // Big Native
        case 14: // Native Boy
        case 141: // Large Native Boy
        case 143: // Under Ground Boy
        case 180: // Large Young Man
        case 181: // Under Ground Young Man
            LoadGen(child.gameObject);
            break;
        case 15: // Female Native
        case 16: // Native Girl
        case 140: // Large Native Girl
        case 142: // Under Ground Girl
            LoadGenGirl(child.gameObject);
            break;
        case 44: // Under Ground Woman
            child.parameters[0] = mom.parameters[0];
            child.parameters[4] = mom.parameters[4];
            LoadGenUnder(child);
            break;
    }

    if (mom.status[7] > 0) // mom was elite?
        mn.npcMN.NPCClassUp(child); // child is now also elite
    child.status[8] = mom.pregnant[0]; // friendID of dad (friend who made mom pregnant)
    child.status[9] = mom.friendID; // friendID of mom
}
...provided, of course, the "child unit" has an elite version. DLC males and Large DLC Females don't come in elite versions (yet) so they can't inherit their mother's elite status. So you can't breed Elite Large Female Natives this way. (Or Elite Young Men but they don't have elite versions anyway).
 
Last edited:

DreagenCode

Member
Jun 4, 2025
301
144
43
That's good to know it has been confirmed, and that's how the mechanics work for it.

It just makes it easier to breed if required, but I probably will take your advice on just capturing to reduce the level workload.
 

Lansser

Member
Apr 6, 2018
184
767
227
How do we use those ? , i did extract the npcs and put them into a npc folder but it doesnt load on the spine thing i click to see and see the numbers of the folders but nothing else.
tried to move to test few ones like moving the image file to images and still dont work so idk how that works on a pirated version.
How to import NPCs from Steam has been described many times. Launch the game, go to the workshop, load the character, open the NPC folder, and copy the files there, but not just one folder. It should look like this.
Снимок экрана 2025-11-26 122156.png
Let's go back to the main page, load the save and download the workshop.
Снимок экрана 2025-11-26 122641.png
Everything works. All screenshots were taken from a pirated version.
Снимок экрана 2025-11-26 120804.png
cheat stats
Снимок экрана 2025-11-26 120640.png
 

bartroli

Member
Jul 21, 2017
153
217
232
How to import NPCs from Steam has been described many times. Launch the game, go to the workshop, load the character, open the NPC folder, and copy the files there, but not just one folder. It should look like this.
View attachment 5472699
Let's go back to the main page, load the save and download the workshop.
View attachment 5472706
Everything works. All screenshots were taken from a pirated version.
View attachment 5472709
cheat stats
View attachment 5472710
oh i see its ingame with that table etc , not in the menu , ima try later thanks.
 
4.40 star(s) 114 Votes