Skip to content

VPExtra.yml

Soreth edited this page Nov 7, 2020 · 3 revisions

Here is the extra file, in this file you can edit the game.

FOOD_LIST

Here you can create custom food. The node is the type of food, need to be specified under EXTRA_TYPE nbt.

Important note, gapple and napple are reserved for golden apple and notch apple if you want override them.

Each food are created like this :

ABSORPTION is number of heart set when eating.

FOOD is found restored when eating.

SATURATION is saturation restored when eating.

SOUND is the sound played when player end eat the food.

VOLUME is the volume of sound.

SPEED is the speed of sound.

EFFECT_LIST is a list of potion effect. With type as node.

HEAL is a heal applied when you eat the food.

DAMAGES is a damage applied when you eat the food.

Example
FOOD_LIST:
 apple:
  SATURATION: 9
  FOOD: 4
  ABSORPTION: 4
  SOUND: BURP
  EFFECT_LIST:
   REGENERATION:
    DURATION: 120
    LEVEL: 2
    AMBIANT: false
    PARTICLE: false
   ABSORPTION:
    DURATION: 12
    LEVEL: 1
    AMBIANT: false
    PARTICLE: false 
 napple:
  SATURATION: 9
  FOOD: 4
  ABSORPTION: 20
  SOUND: BURP
  EFFECT_LIST:
   REGENERATION:
    DURATION: 20
    LEVEL: 3
    AMBIANT: false
    PARTICLE: false
   ABSORPTION:
    DURATION: 120
    LEVEL: 1
    AMBIANT: false
    PARTICLE: false
   DAMAGE_RESISTANCE:
    DURATION: 300
   FIRE_RESISTANCE:
    DURATION: 300
 godapple:
  SATURATION: 20
  FOOD: 20
  ABSORPTION: 100
  SOUND: GHAST_SCREAM
  EFFECT_LIST:
   REGENERATION:
    DURATION: 60
    LEVEL: 4
    AMBIANT: false
    PARTICLE: false
   ABSORPTION:
    DURATION: 120
   DAMAGE_RESISTANCE:
    DURATION: 300
    LEVEL: 4
   FIRE_RESISTANCE:
    DURATION: 300

REMOVE_LIST

Here you can remove recipes. Each node are created like this :

MATERIAL is the material recipe to remove.

DATA the data of material to remove. If -1 will just require to match material.

Example
REMOVE_LIST:
 iron:
  MATERIAL: IRON_INGOT

RECIPE_LIST

Here you can create your own recipes. Node don't have importance and value is the recipe.

BLOCK

Here you can edit vanilla block value. Node is block name ( be carefull it depend on the server version ). You can edit those settings :

RESISTANCE is blast resistance and protection to explosion. Double value, but should try to have good results.

DURABILITY is mining durability, if set on lower value than default, you'll mine the block faster but if you increase the value can make issues.

Example
BLOCK:
 flowing_water:
  RESISTANCE: 6
 water:
  RESISTANCE: 6
 flowing_lava:
  RESISTANCE: 6
 lava:
  RESISTANCE: 6