Skip to content

Custom SkinCOM Registry

CJ Kucera edited this page May 9, 2018 · 3 revisions

See also: Custom Skin and Head Pool Registry

One newish modding technique (or at least a technique which hasn't been widely used, prior to May 2018) is to convert Skin/Head resources in Borderlands 2/TPS into other types of items. The most common right now is Class Mods, though technically any kind of item can be created based on a skin. (Weapons cannot be created via this method, since they are a different data type in the game.)

Much like the Custom Skin and Head Pool Registry, as the use of SkinCOMs and the like become more prevalent, it might be useful to have a registry of what mods have laid claim to which skins/heads, so that's what this page is for. If you're a mod author using a skin or head to create one of these newfangled items, add it to this page so that we don't end up with conflicts between mods.

Note that the pool registry can be used to provide drop pools for these new items. Be sure to remove your new items from their previous skin/head drop pools so that they don't show up in world drops unexpectedly, where you might not want them! A handy hotfix to disable a single item could be something like:

set GD_CustomItemPools_allium.Rewards.AlliumTGHeads BalancedItems[0] 
(
    ItmPoolDefinition = None,
    InvBalanceDefinition = None,
    Probability = 
    (
        BaseValueConstant = 0,
        BaseValueAttribute = None,
        InitializationDefinition = None,
        BaseValueScaleConstant = 0
    ),
    bDropOnDeath = False
)

The Registry

(Please try to keep this alphabetized!)

Skin/Head Name Mod
GD_Assassin_Items_MainGame.Assassin.Skin_CyanF Aaron0000's Slayer of Crawmerax
GD_Assassin_Items_MainGame.Assassin.Skin_RedF Aaron0000's Slayer of Seraphs
GD_Mechro_Items_Tulip.Mechro.Skin_CyanB Aaron0000's Slayer of Crawmerax
GD_Mechro_Items_Tulip.Mechro.Skin_PurpleD Aaron0000's Slayer of Seraphs
GD_Mercenary_Items_MainGame.Mercenary.Skin_CyanF Aaron0000's Slayer of Crawmerax
GD_Mercenary_Items_MainGame.Mercenary.Skin_RedF Aaron0000's Slayer of Seraphs
GD_Psycho_Items_Lilac.Psycho.Skin_CyanB Aaron0000's Slayer of Crawmerax
GD_Psycho_Items_Lilac.Psycho.Skin_PurpleD Aaron0000's Slayer of Seraphs
GD_Siren_Items_MainGame.Siren.Skin_CyanF Aaron0000's Slayer of Crawmerax
GD_Siren_Items_MainGame.Siren.Skin_RedF Aaron0000's Slayer of Seraphs
GD_Soldier_Items_MainGame.Soldier.Skin_CyanF Aaron0000's Slayer of Crawmerax
GD_Soldier_Items_MainGame.Soldier.Skin_RedF Aaron0000's Slayer of Seraphs
Clone this wiki locally