⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 emj0z040c.java

📁 梦界家园程序开发基底框架
💻 JAVA
字号:
package jm.entity.game.base;

/**
 * <p>Title: 装备</p>
 *
 * <p>Copyright: Copyright (c) 2004-2007</p>
 *
 * <p>Company: 1SHome</p>
 *
 * <p>@author Spook</p>
 *
 * @since 1.3.2
 * @see JDK 1.5.0.6
 */
public class EMJ0Z040C extends EMJ0Z0400 {
    /** 物品编号*/
    private String itemID = null;

    /** 物品名称*/
    private String name = null;

    /** 物品说明*/
    private String meno = null;

    /** 图片编号*/
    private String picID = null;

    /** 重量*/
    private String weight = null;

    /** 持久*/
    private String perdure = null;

    /** 物品种类*/
    private String type = null;

    /** 价格*/
    private String price = null;

    /** 使用等级*/
    private String useLevel = null;

    /** 任务中出现*/
    private String task = null;

    /** 使用角色*/
    private String useType = null;

    /** 增加力量*/
    private String power = null;

    /** 增加敏捷*/
    private String agility = null;

    /** 增加智慧*/
    private String wisdom = null;

    /** 增加体力*/
    private String sinew = null;

    /** 增加攻击*/
    private String attack = null;

    /** 增加魔法*/
    private String magic = null;

    /** 增加物理防御*/
    private String addPRecovery = null;

    /** 增加魔法防御*/
    private String addMRecovery = null;

    /** 攻击速度*/
    private String attackSpeed = null;

    /** 致命一击*/
    private String doubleAttack = null;

    /** 奇偶行区分 */
    private String rowsKb = null;

    /**
     * clear
     */
    public void clear () {
        /* 物品编号*/
        this.itemID = null;
        /* 物品名称*/
        this.name = null;
        /* 物品说明*/
        this.meno = null;
        /* 图片编号*/
        this.picID = null;
        /* 重量*/
        this.weight = null;
        /* 持久*/
        this.perdure = null;
        /* 物品种类*/
        this.type = null;
        /* 价格*/
        this.price = null;
        /* 使用等级*/
        this.useLevel = null;
        /* 任务中出现*/
        this.task = null;
        /* 使用角色*/
        this.useType = null;
        /* 增加力量*/
        this.power = null;
        /* 增加敏捷*/
        this.agility = null;
        /* 增加智慧*/
        this.wisdom = null;
        /* 增加体力*/
        this.sinew = null;
        /* 增加攻击*/
        this.attack = null;
        /* 增加魔法*/
        this.magic = null;
        /* 增加物理防御*/
        this.addPRecovery = null;
        /* 增加魔法防御*/
        this.addMRecovery = null;
        /* 攻击速度*/
        this.attackSpeed = null;
        /* 致命一击*/
        this.doubleAttack = null;
    }

    /**
     * 获得存储器内容
     *
     * @return 存储器内容
     */
    public String getItems () {
        return "ItemID;Name;Meno;PicID;Weight;Perdure;Type;Price;UseLevel;Task;UseType;Power;Agility;Wisdom;Sinew;Attack;Magic;AddPRecovery;AddMRecovery;AttackSpeed;DoubleAttack";
    }

    /**
     * toString
     */
    public String toString () {
        return "MJ0Z040C:"
                /* 物品编号*/
                + " itemID =" + this.itemID + ", "
                /* 物品名称*/
                + " name =" + this.name + ", "
                /* 物品说明*/
                + " meno =" + this.meno + ", "
                /* 图片编号*/
                + " picID =" + this.picID + ", "
                /* 重量*/
                + " weight =" + this.weight + ", "
                /* 持久*/
                + " perdure =" + this.perdure + ", "
                /* 物品种类*/
                + " type =" + this.type + ", "
                /* 价格*/
                + " price =" + this.price + ", "
                /* 使用等级*/
                + " useLevel =" + this.useLevel + ", "
                /* 任务中出现*/
                + " task =" + this.task + ", "
                /* 使用角色*/
                + " useType =" + this.useType + ", "
                /* 增加力量*/
                + " power =" + this.power + ", "
                /* 增加敏捷*/
                + " agility =" + this.agility + ", "
                /* 增加智慧*/
                + " wisdom =" + this.wisdom + ", "
                /* 增加体力*/
                + " sinew =" + this.sinew + ", "
                /* 增加攻击*/
                + " attack =" + this.attack + ", "
                /* 增加魔法*/
                + " magic =" + this.magic + ", "
                /* 增加物理防御*/
                + " addPRecovery =" + this.addPRecovery + ", "
                /* 增加魔法防御*/
                + " addMRecovery =" + this.addMRecovery + ", "
                /* 攻击速度*/
                + " attackSpeed =" + this.attackSpeed + ", "
                /* 致命一击*/
                + " doubleAttack =" + this.doubleAttack + ", "
                ;
    }

    /**
     * 获取物品编号
     *
     * @return ItemID 物品编号
     */
    public String getItemID () {
        return this.itemID;
    }

    /**
     * 获取物品名称
     *
     * @return Name 物品名称
     */
    public String getName () {
        return this.name;
    }

    /**
     * 获取物品说明
     *
     * @return Meno 物品说明
     */
    public String getMeno () {
        return this.meno;
    }

    /**
     * 获取图片编号
     *
     * @return PicID 图片编号
     */
    public String getPicID () {
        return this.picID;
    }

    /**
     * 获取重量
     *
     * @return Weight 重量
     */
    public String getWeight () {
        return this.weight;
    }

    /**
     * 获取持久
     *
     * @return Perdure 持久
     */
    public String getPerdure () {
        return this.perdure;
    }

    /**
     * 获取物品种类
     *
     * @return Type 物品种类
     */
    public String getType () {
        return this.type;
    }

    /**
     * 获取价格
     *
     * @return Price 价格
     */
    public String getPrice () {
        return this.price;
    }

    /**
     * 获取使用等级
     *
     * @return UseLevel 使用等级
     */
    public String getUseLevel () {
        return this.useLevel;
    }

    /**
     * 获取任务中出现
     *
     * @return Task 任务中出现
     */
    public String getTask () {
        return this.task;
    }

    /**
     * 获取使用角色
     *
     * @return UseType 使用角色
     */
    public String getUseType () {
        return this.useType;
    }

    /**
     * 获取增加力量
     *
     * @return Power 增加力量
     */
    public String getPower () {
        return this.power;
    }

    /**
     * 获取增加敏捷
     *
     * @return Agility 增加敏捷
     */
    public String getAgility () {
        return this.agility;
    }

    /**
     * 获取增加智慧
     *
     * @return Wisdom 增加智慧
     */
    public String getWisdom () {
        return this.wisdom;
    }

    /**
     * 获取增加体力
     *
     * @return Sinew 增加体力
     */
    public String getSinew () {
        return this.sinew;
    }

    /**
     * 获取增加攻击
     *
     * @return Attack 增加攻击
     */
    public String getAttack () {
        return this.attack;
    }

    /**
     * 获取增加魔法
     *
     * @return Magic 增加魔法
     */
    public String getMagic () {
        return this.magic;
    }

    /**
     * 获取增加物理防御
     *
     * @return AddPRecovery 增加物理防御
     */
    public String getAddPRecovery () {
        return this.addPRecovery;
    }

    /**
     * 获取增加魔法防御
     *
     * @return AddMRecovery 增加魔法防御
     */
    public String getAddMRecovery () {
        return this.addMRecovery;
    }

    /**
     * 获取攻击速度
     *
     * @return AttackSpeed 攻击速度
     */
    public String getAttackSpeed () {
        return this.attackSpeed;
    }

    /**
     * 获取致命一击
     *
     * @return DoubleAttack 致命一击
     */
    public String getDoubleAttack () {
        return this.doubleAttack;
    }

    /**
     * 获得奇偶行区分
     *
     * @return 奇偶行区分
     */
    public String getRowsKb () {
        return rowsKb;
    }

    /**
     * 设置物品编号
     *
     * @param ItemID 物品编号
     */
    public void setItemID (String ItemID) {
        this.itemID = ItemID;
    }

    /**
     * 设置物品名称
     *
     * @param Name 物品名称
     */
    public void setName (String Name) {
        this.name = Name;
    }

    /**
     * 设置物品说明
     *
     * @param Meno 物品说明
     */
    public void setMeno (String Meno) {
        this.meno = Meno;
    }

    /**
     * 设置图片编号
     *
     * @param PicID 图片编号
     */
    public void setPicID (String PicID) {
        this.picID = PicID;
    }

    /**
     * 设置重量
     *
     * @param Weight 重量
     */
    public void setWeight (String Weight) {
        this.weight = Weight;
    }

    /**
     * 设置持久
     *
     * @param Perdure 持久
     */
    public void setPerdure (String Perdure) {
        this.perdure = Perdure;
    }

    /**
     * 设置物品种类
     *
     * @param Type 物品种类
     */
    public void setType (String Type) {
        this.type = Type;
    }

    /**
     * 设置价格
     *
     * @param Price 价格
     */
    public void setPrice (String Price) {
        this.price = Price;
    }

    /**
     * 设置使用等级
     *
     * @param UseLevel 使用等级
     */
    public void setUseLevel (String UseLevel) {
        this.useLevel = UseLevel;
    }

    /**
     * 设置任务中出现
     *
     * @param Task 任务中出现
     */
    public void setTask (String Task) {
        this.task = Task;
    }

    /**
     * 设置使用角色
     *
     * @param UseType 使用角色
     */
    public void setUseType (String UseType) {
        this.useType = UseType;
    }

    /**
     * 设置增加力量
     *
     * @param Power 增加力量
     */
    public void setPower (String Power) {
        this.power = Power;
    }

    /**
     * 设置增加敏捷
     *
     * @param Agility 增加敏捷
     */
    public void setAgility (String Agility) {
        this.agility = Agility;
    }

    /**
     * 设置增加智慧
     *
     * @param Wisdom 增加智慧
     */
    public void setWisdom (String Wisdom) {
        this.wisdom = Wisdom;
    }

    /**
     * 设置增加体力
     *
     * @param Sinew 增加体力
     */
    public void setSinew (String Sinew) {
        this.sinew = Sinew;
    }

    /**
     * 设置增加攻击
     *
     * @param Attack 增加攻击
     */
    public void setAttack (String Attack) {
        this.attack = Attack;
    }

    /**
     * 设置增加魔法
     *
     * @param Magic 增加魔法
     */
    public void setMagic (String Magic) {
        this.magic = Magic;
    }

    /**
     * 设置增加物理防御
     *
     * @param AddPRecovery 增加物理防御
     */
    public void setAddPRecovery (String AddPRecovery) {
        this.addPRecovery = AddPRecovery;
    }

    /**
     * 设置增加魔法防御
     *
     * @param AddMRecovery 增加魔法防御
     */
    public void setAddMRecovery (String AddMRecovery) {
        this.addMRecovery = AddMRecovery;
    }

    /**
     * 设置攻击速度
     *
     * @param AttackSpeed 攻击速度
     */
    public void setAttackSpeed (String AttackSpeed) {
        this.attackSpeed = AttackSpeed;
    }

    /**
     * 设置致命一击
     *
     * @param DoubleAttack 致命一击
     */
    public void setDoubleAttack (String DoubleAttack) {
        this.doubleAttack = DoubleAttack;
    }

    /**
     * 设置奇偶行区分
     *
     * @param string 奇偶行区分
     */
    public void setRowsKb (String RowsKb) {
        this.rowsKb = RowsKb;
    }
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -