0 of 0

File information

Last updated

Original upload

Created by

alichanST

Uploaded by

alichanST

Virus scan

Safe to use

About this mod

The mod is a framework for mod developers to create their own weapon mods for the eslilingue, allowing them to add any item to it, its damage, and whether it is explosive or not.

Requirements
Permissions and credits
Donations
The mod is a framework for mod developers to create their own weapon mods for the eslilingue, allowing them to add any item to it, its damage, and whether it is explosive or not.

To create your custom slingshot mod, you must create the necessary files:

manifest.json

{
    "Name": "nameMod",
    "Author": "authorName",
    "Version": "0.1",
    "Description": "Description mod.",
    "UniqueID": "authorName.nameMod",
    "ContentPackFor": {
      "UniqueID": "alichan.SlingShotFramework", //reference for framework
      "MinimumVersion": "0.1"
    }
}





SlingShot.json

{
    "validItemIds": [
      "(O)392",
      "(O)288" //Add the items you want to add to the slingshot here, in this example we added the Nautilus Shell -> item code (O)392 and the Mega Bomb -> item code (O)288
    ],
    "ammoDamageValues": {
      "(O)392": 300,
      "(O)288": 900 //Add damage to items added in the list above (O)392 receives 300 of damage and (O)288 receives 900 of damage
    },
    "explosiveAmmunitionIds": [
      "(O)392",
      "(O)288" // Add items as explosive item ammunition
    ],
    "explosionItemIds": [
      "(O)392",
      "(O)288" // Add items as explosive item sound of explosion
    ],
    "validCategories": [
      -74 // Add all items in the category to be used in the slingshot
    ]
}

Only these 2 files are needed to use the framework in your mod.