Пример #1
0
    static public void decreaseDick()
    {
        loadAlba();
        NPCSettlerBody npcSettlerBody = new NPCSettlerBody();

        if (NPCCharList.CharFollower [iAlba].dickSizeCM > 0)
        {
            NPCCharList.CharFollower [iAlba].dickSizeCM -= 10;
            NPCCharList.CharFollower [iAlba].dickSize    = npcSettlerBody.setDickSize(NPCCharList.CharFollower [iAlba].dickSizeCM);
            albaUpdatePortrait();
        }
        albaUpdateSex();
    }
    public static void decreaseDick()
    {
        loadHelena();
        NPCSettlerBody npcSettlerBody = new NPCSettlerBody();

        if (NPCCharList.CharFollower [iHelena].dickSizeCM > 0)
        {
            NPCCharList.CharFollower [iHelena].dickSizeCM -= 13;
            NPCCharList.CharFollower [iHelena].dickSize    = npcSettlerBody.setDickSize(NPCCharList.CharFollower [iHelena].dickSizeCM);
            helenaUpdatePortrait();
        }
        helenaUpdateSex();
    }
    public static void decreaseDick()
    {
        loadAbbadon();
        NPCSettlerBody npcSettlerBody = new NPCSettlerBody();

        if (NPCCharList.CharFollower [iAbbadon].dickSizeCM > 0)
        {
            NPCCharList.CharFollower [iAbbadon].dickSizeCM -= 13;
            NPCCharList.CharFollower [iAbbadon].dickSize    = npcSettlerBody.setDickSize(NPCCharList.CharFollower [iAbbadon].dickSizeCM);
            abbadonUpdatePortrait();
        }
        abbadonUpdateSex();
    }
Пример #4
0
    static public void increaseBreasts()
    {
        loadAlba();
        NPCSettlerBody npcSettlerBody = new NPCSettlerBody();

        if (NPCCharList.CharFollower [iAlba].breast1Size < 20)
        {
            NPCCharList.CharFollower [iAlba].breast1Cup  += 5;
            NPCCharList.CharFollower [iAlba].breast1Size += 5;
            NPCCharList.CharFollower [iAlba].breast1Name  = npcSettlerBody.setBreastName(NPCCharList.CharFollower [iAlba].breast1Size);
            albaUpdatePortrait();
        }
        albaUpdateSex();
    }
    public static void decreaseBreasts()
    {
        loadHelena();
        NPCSettlerBody npcSettlerBody = new NPCSettlerBody();

        if (NPCCharList.CharFollower [iHelena].breast1Size > 0)
        {
            NPCCharList.CharFollower [iHelena].breast1Cup  -= 5;
            NPCCharList.CharFollower [iHelena].breast1Size -= 5;
            NPCCharList.CharFollower [iHelena].breast1Name  = npcSettlerBody.setBreastName(NPCCharList.CharFollower [iHelena].breast1Size);
            helenaUpdatePortrait();
        }
        helenaUpdateSex();
    }
    public static void increaseBreasts()
    {
        loadAbbadon();
        NPCSettlerBody npcSettlerBody = new NPCSettlerBody();

        if (NPCCharList.CharFollower [iAbbadon].breast1Size < 15)
        {
            NPCCharList.CharFollower [iAbbadon].breast1Cup  += 5;
            NPCCharList.CharFollower [iAbbadon].breast1Size += 5;
            NPCCharList.CharFollower [iAbbadon].breast1Name  = npcSettlerBody.setBreastName(NPCCharList.CharFollower [iAbbadon].breast1Size);
            abbadonUpdatePortrait();
        }
        abbadonUpdateSex();
    }