/*
 * This file was automatically generated by sel-utils and
 * released under the MIT License.
 * 
 * License: https://github.com/sel-project/sel-utils/blob/master/LICENSE
 * Repository: https://github.com/sel-project/sel-utils
 * Generated from https://github.com/sel-project/sel-utils/blob/master/xml/attributes/java340.xml
 */
module sul.attributes.java340;

import std.typecons : Tuple;

alias Attribute = Tuple!(string, "name", float, "min", float, "max", float, "def");

public struct Attributes
{

    @disable this();

    enum maxHealth = Attribute("generic.maxHealth", 0f, 1024f, 20f);
    enum absorption = Attribute("generic.absorption", 0f, 4f, 0f);
    enum movementSpeed = Attribute("generic.movementSpeed", 0f, 24791f, 0.1f);
    enum knockbackResistance = Attribute("generic.knockbackResistance", 0f, 1f, 0f);
    enum attackDamage = Attribute("generic.attackDamage", 0f, 2048f, 2f);
    enum attackSpeed = Attribute("generic.attackSpeed", 0f, 1024f, 4f);

}