
You are viewing a potentially older version of this package. View Latest Version

A BepInEx plugin for Bomb Rush Cyberfunk that allows people to easily add CharacterAPI characters.
Follow CharacterAPI's tutorial up until creating a plugin.
Then, in the Characters folder of this plugin, create a new folder. Then create a file called metadata.json with the contents of the example JSON.
You then need to modify the json to fit your character. Certain variables will take in certain values which are noted below:
voiceBase, graffitiBase: Character names, either what they're called in-game or their internal name
eightballBoss) or by specifying boss (dotexeboss)irenemoveStyle: Move style, internal name and in-game names pretty much match up
skatesAfterwards, boot up the game and go to a Cypher. Your character should show up. If not, check the BepInEx console for any errors and make sure your JSON is valid.
You can also have several character entries in the metadata, in case you want to make a character pack.
[
{
"bundleName": "beat",
"prefabName": "beat_no_blades",
"charaName": "Beat",
"defaultOutfit": 0,
"moveStyle": "inline",
"voiceBase": "",
"freeStyle": 15,
"bounce": 3,
"outfits": [
{
"outfitMaterial": "beatDefault",
"outfitName": "Jet Set"
},
{
"outfitMaterial": "beatFuture",
"outfitName": "Future"
},
{
"outfitMaterial": "beatCombo",
"outfitName": "Combo"
},
{
"outfitMaterial": "beatCorn",
"outfitName": "Corn"
}
],
"graffiti": {
"graffitiBase": "",
"graffitiName": "Beat",
"graffitiArtist": "Beat",
"graffitiMaterial": "beatGraffiti",
"graffitiTexture": "graffitiTexture"
}
}
]