1. Please be advised of a few specific rules and guidelines for this section.

RELEASED Enhanced Body Shape EBS 1.0.5 & EEBS 1.0.4

A boost to the bust.

  1. lucario515

    lucario515 Phantasmal Quasar

    I assume by .chest you refer to the png images associated with them?
     
  2. SpaceKGreen

    SpaceKGreen Existential Complex

    No, sadly, there's no quick and easy solution here. There's no option in the armor files that lets you go "If using this specific race, use this specific armor image file, else, use default". You'd have to rename files and create an alternate .chest item for each armor piece at the very least.

    Something like...
    From:
    Code:
    {
      "itemName" : "sweatervestchest",
      "inventoryIcon" : "icons.png:chest",
      "dropCollision" : [-4.0, -3.0, 4.0, 3.0],
      "maxStack" : 1,
      "rarity" : "Common",
      "description" : "A classy sweater vest. It's business casual.",
      "shortdescription" : "Work Shirt",
      "tooltipKind" : "armor",
    
      "maleFrames" : {
        "body" : "chestm.png",
        "backSleeve" : "bsleeve.png",
        "frontSleeve" : "fsleeve.png"
      },
    
      "femaleFrames" : {
        "body" : "chestf.png",
        "backSleeve" : "bsleeve.png",
        "frontSleeve" : "fsleeve.png"
      },
    
      "statusEffects" : [
        {
          "stat" : "protection",
          "amount" : 0
        },
    
        {
          "stat" : "maxHealth",
          "amount" : 5
        }
      ],
    
      "colorOptions" : [
        /* BLUE */
        { "ffca8a" : "96cbe7", "e0975c" : "5588d4", "a85636" : "344495", "6f2919" : "1a1c51" },
        /* BLACK */
        { "ffca8a" : "838383", "e0975c" : "555555", "a85636" : "383838", "6f2919" : "151515" },
        /* GREY */
        { "ffca8a" : "b5b5b5", "e0975c" : "808080", "a85636" : "555555", "6f2919" : "303030" },
        /* WHITE */
        { "ffca8a" : "e6e6e6", "e0975c" : "b6b6b6", "a85636" : "7b7b7b", "6f2919" : "373737" },
        /* RED */
        { "ffca8a" : "f4988c", "e0975c" : "d93a3a", "a85636" : "932625", "6f2919" : "601119" },
        /* ORANGE */
        { "ffca8a" : "ffd495", "e0975c" : "ea9931", "a85636" : "af4e00", "6f2919" : "6e2900" },
        /* YELLOW */
        { "ffca8a" : "ffffa7", "e0975c" : "e2c344", "a85636" : "a46e06", "6f2919" : "642f00" },
        /* GREEN */
        { "ffca8a" : "b2e89d", "e0975c" : "51bd3b", "a85636" : "247824", "6f2919" : "144216" },
        /* BLUE */
        { "ffca8a" : "96cbe7", "e0975c" : "5588d4", "a85636" : "344495", "6f2919" : "1a1c51" },
        /* PURPLE */
        { "ffca8a" : "d29ce7", "e0975c" : "a451c4", "a85636" : "6a2284", "6f2919" : "320c40" },
        /* PINK */
        { "ffca8a" : "eab3db", "e0975c" : "d35eae", "a85636" : "97276d", "6f2919" : "59163f" },
        /* BROWN */
        { "ffca8a" : "ccae7c", "e0975c" : "a47844", "a85636" : "754c23", "6f2919" : "472b13" }
    
      ]
    }
    


    To:
    Code:
    {
      "itemName" : "sweatervestchestEBS",
      "inventoryIcon" : "icons.png:chest",
      "dropCollision" : [-4.0, -3.0, 4.0, 3.0],
      "maxStack" : 1,
      "rarity" : "Common",
      "description" : "A classy sweater vest. It's business casual.",
      "shortdescription" : "Work Shirt EBS",
      "tooltipKind" : "armor",
    
      "maleFrames" : {
        "body" : "chestEBS.png",
        "backSleeve" : "bsleeve.png",
        "frontSleeve" : "fsleeve.png"
      },
    
      "femaleFrames" : {
        "body" : "chestEEBS.png",
        "backSleeve" : "bsleeve.png",
        "frontSleeve" : "fsleeve.png"
      },
    
      "statusEffects" : [
        {
          "stat" : "protection",
          "amount" : 0
        },
    
        {
          "stat" : "maxHealth",
          "amount" : 5
        }
      ],
    
      "colorOptions" : [
        /* BLUE */
        { "ffca8a" : "96cbe7", "e0975c" : "5588d4", "a85636" : "344495", "6f2919" : "1a1c51" },
        /* BLACK */
        { "ffca8a" : "838383", "e0975c" : "555555", "a85636" : "383838", "6f2919" : "151515" },
        /* GREY */
        { "ffca8a" : "b5b5b5", "e0975c" : "808080", "a85636" : "555555", "6f2919" : "303030" },
        /* WHITE */
        { "ffca8a" : "e6e6e6", "e0975c" : "b6b6b6", "a85636" : "7b7b7b", "6f2919" : "373737" },
        /* RED */
        { "ffca8a" : "f4988c", "e0975c" : "d93a3a", "a85636" : "932625", "6f2919" : "601119" },
        /* ORANGE */
        { "ffca8a" : "ffd495", "e0975c" : "ea9931", "a85636" : "af4e00", "6f2919" : "6e2900" },
        /* YELLOW */
        { "ffca8a" : "ffffa7", "e0975c" : "e2c344", "a85636" : "a46e06", "6f2919" : "642f00" },
        /* GREEN */
        { "ffca8a" : "b2e89d", "e0975c" : "51bd3b", "a85636" : "247824", "6f2919" : "144216" },
        /* BLUE */
        { "ffca8a" : "96cbe7", "e0975c" : "5588d4", "a85636" : "344495", "6f2919" : "1a1c51" },
        /* PURPLE */
        { "ffca8a" : "d29ce7", "e0975c" : "a451c4", "a85636" : "6a2284", "6f2919" : "320c40" },
        /* PINK */
        { "ffca8a" : "eab3db", "e0975c" : "d35eae", "a85636" : "97276d", "6f2919" : "59163f" },
        /* BROWN */
        { "ffca8a" : "ccae7c", "e0975c" : "a47844", "a85636" : "754c23", "6f2919" : "472b13" }
    
      ]
    }
    


    Would probably have to copy the chestm.frames and chestf.frames and rename the copies to chestEBS.frames and chestEEBS.frames.


    And then recipes for creating/converting each armor piece. And maybe a custom crafting table for them so the recipes don't clutter up your normal crafting table window.
     
  3. lucario515

    lucario515 Phantasmal Quasar

    Aaaah, that's disappointing, but not much of a big deal. Thank you.
     
  4. Word on the Wind

    Word on the Wind Former Staff

    I am not going to do anything involving nudity. That's not the point. If they want to do tweak their mod to be compatible with E/EBS that is their business.
     
  5. GamecubeKing

    GamecubeKing Void-Bound Voyager

    Looks uneven, considering there's no junk in the trunk.
     
  6. Word on the Wind

    Word on the Wind Former Staff

    Just wanted to say that this patch version alone has broken 1K downloads faster than the first several versions hit 1K. Glad folks are enjoying the latest assets.
     
  7. MissMarifire

    MissMarifire Void-Bound Voyager

    After playing and modding Skyrim for the past three years, I've always enjoyed the moreso sillier mods compared to the "lore-friendly" mods. This is no exception for any other game, Starbound included, and you've definitely created, without a doubt, probably one of the silliest made for Starbound.

    But seriously, it's really nicely done. Must've been a lotta work for you guys to make something like a body mod, and you guys did an amazing job at it, too.

    My only gripe is that the mod is hosted on Mediafire. As I live in a very rural area and have to use the 'godforbid-why-does-this-company-even-exist' Hughesnet, and there's a lot of incompatibilities with some sites (i.e. Mediafire not downloading files). Any way you could get it hosted onto another site such as Dropbox as an alternate link?
     
  8. Word on the Wind

    Word on the Wind Former Staff

    ...I do not find E/EBS silly in the least.

    As for MediaFire, I was unable to upload the more recent updates to the Starbound site itself due to the incompetence of the coding, and MF was the only host I knew of at the time. I will look into an alternative host, though I can't promise any improvements without feedback as my connection is a fairly reliable one and I've not had such problems.
     
  9. SpaceKGreen

    SpaceKGreen Existential Complex

    Another Hughesnet sufferer? YOU ARE NOT ALONE!

    It's not the best solution, but I've found that I had less problems with Hughesnet and Mediafire by having a Mediafire account.
     
  10. MissMarifire

    MissMarifire Void-Bound Voyager

    Oh thank god! I'll probably never be able to play games such as Dota 2 or TF2 ever again because of it, and as I used to be an avid player of both, this makes me deeply sad :/

    It still doesn't download, even with being logged into Mediafire.

    I kid, I kid. You guys did a great job with the mod nonetheless.

    Dropbox, 4Shared, and Google Drive/Docs/Whatever are the other filesharing I can think of off the top of my head at the current moment.
     
  11. Captain lyro

    Captain lyro Orbital Explorer

    Would you by any chance have a link to download these files on mega.co.nz or on dropbox? Your existing download link doesn't work for me.
     
  12. Word on the Wind

    Word on the Wind Former Staff

    Changing the hosting location would involve posting a new 'resource update' and while the only thing to be updated would be the hosting, this site has a history of making things as difficult as it can for me. Unless there are many people having trouble with this, I am not inclined to subject myself to the hassle that is this site's content-upload.
     
  13. HYPERFLYGON

    HYPERFLYGON Scruffy Nerf-Herder

    hey i now it will probably will be hard but can you make the breasts have some physics something like this maybe
     
  14. Word on the Wind

    Word on the Wind Former Staff

    It's been said before but from the way the gear sprites interact with the body sprites, no. Jiggle animations do not play nice with armor/clothes because the wearables are literally superimposed over the body and only have one frame per posture type. There's other reasons but if you really want to see them, they've been mentioned in the discussion previously.
     
  15. Word on the Wind

    Word on the Wind Former Staff

    Word on the Wind updated Enhanced Body Shape with a new update entry:

    Minor Update

    Read the rest of this update entry...
     
    greenRAM likes this.
  16. LordInfinitius

    LordInfinitius Void-Bound Voyager

    There is some clipping action with the Hylotl Trainee Shirt.

    [​IMG]
     
  17. SpaceKGreen

    SpaceKGreen Existential Complex

    So I looked through the Starbound files, and the EBS/EEBS files. Both EBS and EEBS have a fully modified Hylotl Trainee shirt. Also, that shirt does not match the Hylotl Trainee shirt in the vanilla files. Are you sure that's the right shirt? Do you have another mod that may be affecting it?

    Also, EBS and EEBS are both updated to the most recent Stable version, and may be missing armors added in the Unstable/Nightly versions.
     
  18. lucario515

    lucario515 Phantasmal Quasar

    Given the mod maker's new avatar and this mod's existence, has anyone ever come up with the idea to make a Sorceress/Amazon clothing mod specifically made to tie with the EBS/EEBS mod? Because I'd love to see that, honestly.
     
  19. Word on the Wind

    Word on the Wind Former Staff

    I'm not the mod maker, not any more. SpaceKGreen is the one responsible for all the work at this point. All I do is manage and QA any more. And I'm behind on the QA because I really don't like this game.

    So saying, the idea of Sorceress/Amazon outfits amuse me.
     
    Alaizia Darkstar and lucario515 like this.
  20. LordInfinitius

    LordInfinitius Void-Bound Voyager

    It's just a recolored Hylotl Trainee Shirt
     

Share This Page