Changes between Version 1 and Version 2 of olivine/dsl/attribs/enchantment


Ignore:
Timestamp:
May 21, 2020 11:40:17 PM (4 years ago)
Author:
jonathan
Comment:

Page needs the dictionary definition too

Legend:

Unmodified
Added
Removed
Modified
  • olivine/dsl/attribs/enchantment

    v1 v2  
    1 = Supported Olivine Enchantments =
     1= Enchantment Definitions =
     2An item is enchanted using a ''type'' and a ''level''.  See the table below for how to define this dictionary value:
     3||= Name =||= Type =||= Description =||
     4||`type`||[#enchantment enchantment]||One of the enchantments supported by Olivine, click the link for a complete list||
     5||`level`||integer||The enchantment level (e.g. 1 for 'I', 2 for 'II' etc.)||
     6
     7== [=#enchantment Supported Olivine Enchantments] ==
    28These are the list of possible enchantments supported by Olivine
    39
    410||= Olivine Identifier =||= Vanilla ID =||= Description =||
    5 ||protection||0||Standard armor protection||
    6 ||fire_protection||1||Fire-resistance||
    7 ||feather_falling||2||Reduced damage from falling||
    8 ||blast_protection||3||Protection from explosions||
    9 ||projectile_protection||4||Projection from projectiles||
    10 ||respiration||5||Improved under-water (fluid) breathing||
    11 ||aqua||6||Use of tools underwater is improved||
    12 ||thorns||7||Opponents receive damage when attacking you||
    13 ||sharpness||16||Standard damage boost for weapons||
    14 ||smite||17||Extra damage toward undead mobs||
    15 ||soap||18||Extra damage toward spiders||
    16 ||knockback||19||Weapon enhancer for sending opponents flying back further||
    17 ||fire_aspect||20||Melee weapons inflict fire||
    18 ||looting||21||Loot drops from mobs improved||
    19 ||efficiency||32||Pickaxes dig faster||
    20 ||silk_touch||33||When mining, takes a block as is instead of the natural drop||
    21 ||unbreaking||34||Tools and armor incur damage slower||
    22 ||fortune||35||Improved drops from certain ores / gems||
    23 ||power||48||Arrows fired from bows deal more damage||
    24 ||punch||49||Arrows fired from bows deliver increased knockback||
    25 ||flame||50||Arrows fired from bows inflict fire on their targets||
    26 ||infinity||51||Infinite ammo for bows||
    27 ||disenchant||52||Arrows fired from bows deliver the disenchantment enchantment (drains mana, strips magic resistance)||
    28 ||sea_luck||61||Loot from fishing rods is improved||
    29 ||lure||62||Faster fishing||
     11||`protection`||0||Standard armor protection||
     12||`fire_protection`||1||Fire-resistance||
     13||`feather_falling`||2||Reduced damage from falling||
     14||`blast_protection`||3||Protection from explosions||
     15||`projectile_protection`||4||Projection from projectiles||
     16||`respiration`||5||Improved under-water (fluid) breathing||
     17||`aqua`||6||Use of tools underwater is improved||
     18||`thorns`||7||Opponents receive damage when attacking you||
     19||`sharpness`||16||Standard damage boost for weapons||
     20||`smite`||17||Extra damage toward undead mobs||
     21||`soap`||18||Extra damage toward spiders||
     22||`knockback`||19||Weapon enhancer for sending opponents flying back further||
     23||`fire_aspect`||20||Melee weapons inflict fire||
     24||`looting`||21||Loot drops from mobs improved||
     25||`efficiency`||32||Pickaxes dig faster||
     26||`silk_touch`||33||When mining, takes a block as is instead of the natural drop||
     27||`unbreaking`||34||Tools and armor incur damage slower||
     28||`fortune`||35||Improved drops from certain ores / gems||
     29||`power`||48||Arrows fired from bows deal more damage||
     30||`punch`||49||Arrows fired from bows deliver increased knockback||
     31||`flame`||50||Arrows fired from bows inflict fire on their targets||
     32||`infinity`||51||Infinite ammo for bows||
     33||`disenchant`||52||Arrows fired from bows deliver the disenchantment enchantment (drains mana, strips magic resistance)||
     34||`sea_luck`||61||Loot from fishing rods is improved||
     35||`lure`||62||Faster fishing||
     36
     37== Examples ==
     38An example of a ''Bane of Arthopods'' (hurts spiders) level 2 item:
     39{{{
     40{
     41   type -> soap
     42   level -> 2
     43}
     44}}}
     45
     46Aqua affinity:
     47{{{
     48{
     49   type -> aqua
     50   level -> 1
     51}
     52}}}