All Downloads are FREE. Search and download functionalities are using the official Maven repository.

me.xhsun.guildwars2wrapper.model.v2.Mastery Maven / Gradle / Ivy

There is a newer version: 1.3.2
Show newest version
package me.xhsun.guildwars2wrapper.model.v2;

import me.xhsun.guildwars2wrapper.model.identifiable.NameableInt;
import me.xhsun.guildwars2wrapper.model.v2.util.comm.Region;

import java.util.List;

/**
 * For more info on masteries API go here
* Model class for mastery * * @author xhsun * @since 2017-06-06 */ public class Mastery extends NameableInt { private String requirement; private int order; private String background; private Region region; private List levels; public String getRequirement() { return requirement; } public int getOrder() { return order; } public String getBackground() { return background; } public Region getRegion() { return region; } public List getLevels() { return levels; } public class Detail { private String name; private String description; private String instruction; private String icon; private int point_cost; private int exp_cost; public String getName() { return name; } public String getDescription() { return description; } public String getInstruction() { return instruction; } public String getIcon() { return icon; } public int getPointCost() { return point_cost; } public int getExpCost() { return exp_cost; } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy