Class TagData

java.lang.Object
valorless.rarespawns.datamodels.TagData

public class TagData extends Object
Represents a custom tag data structure for RareSpawns items. Stores the value and type of a tag for use in item metadata.
  • Field Details

    • value

      public String value
      The value of the tag (e.g., string, integer, boolean, etc.).
    • type

      public String type
      The type of the tag (e.g., "string", "integer", "boolean").
  • Constructor Details

    • TagData

      public TagData(String value, String type)
      Constructs a TagData object with the specified value and type.
      Parameters:
      value - The value of the tag.
      type - The type of the tag.