mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-24 11:38:29 +01:00
c6aa61ee18
Updated Upstream (Bukkit/CraftBukkit/Spigot) Upstream has released updates that appear to apply and compile correctly. This update has not been tested by PaperMC and as with ANY update, please do your own testing Bukkit Changes: b9df8e9f SPIGOT-7933: Improve custom Minecart max speed fc496179 Fix InstrumentTest 7c0ec598 PR-1075: Make Art an interface c389f5a4 PR-1074: Make Sound an interface CraftBukkit Changes: df1efc0bb SPIGOT-7945: `Bukkit#dispatchCommand` throws `UnsupportedOperationException` 285df6e85 SPIGOT-7933: Improve custom Minecart max speed a0f3d4e50 SPIGOT-7940: Recipe book errors after reload 9e0618ec2 SPIGOT-7937: Cannot spawn minecart during world generation with minecart_improvements enabled 1eb4d28da SPIGOT-7941: Fix resistance over 4 amplify causing issues in damage 52b99158a PR-1504: Make Art an interface e18ae35f1 PR-1502: Make Sound an interface Spigot Changes: e65d67a7 SPIGOT-7934: Item entities start "bouncing" under certain conditions
393 lines
12 KiB
Java
393 lines
12 KiB
Java
package io.papermc.paper.registry.keys;
|
|
|
|
import static net.kyori.adventure.key.Key.key;
|
|
|
|
import io.papermc.paper.generated.GeneratedFrom;
|
|
import io.papermc.paper.registry.RegistryKey;
|
|
import io.papermc.paper.registry.TypedKey;
|
|
import net.kyori.adventure.key.Key;
|
|
import org.bukkit.Art;
|
|
import org.checkerframework.checker.nullness.qual.NonNull;
|
|
import org.jetbrains.annotations.ApiStatus;
|
|
|
|
/**
|
|
* Vanilla keys for {@link RegistryKey#PAINTING_VARIANT}.
|
|
*
|
|
* @apiNote The fields provided here are a direct representation of
|
|
* what is available from the vanilla game source. They may be
|
|
* changed (including removals) on any Minecraft version
|
|
* bump, so cross-version compatibility is not provided on the
|
|
* same level as it is on most of the other API.
|
|
*/
|
|
@SuppressWarnings({
|
|
"unused",
|
|
"SpellCheckingInspection"
|
|
})
|
|
@GeneratedFrom("1.21.3")
|
|
@ApiStatus.Experimental
|
|
public final class PaintingVariantKeys {
|
|
/**
|
|
* {@code minecraft:alban}
|
|
*
|
|
* @apiNote This field is version-dependant and may be removed in future Minecraft versions
|
|
*/
|
|
public static final TypedKey<Art> ALBAN = create(key("alban"));
|
|
|
|
/**
|
|
* {@code minecraft:aztec}
|
|
*
|
|
* @apiNote This field is version-dependant and may be removed in future Minecraft versions
|
|
*/
|
|
public static final TypedKey<Art> AZTEC = create(key("aztec"));
|
|
|
|
/**
|
|
* {@code minecraft:aztec2}
|
|
*
|
|
* @apiNote This field is version-dependant and may be removed in future Minecraft versions
|
|
*/
|
|
public static final TypedKey<Art> AZTEC2 = create(key("aztec2"));
|
|
|
|
/**
|
|
* {@code minecraft:backyard}
|
|
*
|
|
* @apiNote This field is version-dependant and may be removed in future Minecraft versions
|
|
*/
|
|
public static final TypedKey<Art> BACKYARD = create(key("backyard"));
|
|
|
|
/**
|
|
* {@code minecraft:baroque}
|
|
*
|
|
* @apiNote This field is version-dependant and may be removed in future Minecraft versions
|
|
*/
|
|
public static final TypedKey<Art> BAROQUE = create(key("baroque"));
|
|
|
|
/**
|
|
* {@code minecraft:bomb}
|
|
*
|
|
* @apiNote This field is version-dependant and may be removed in future Minecraft versions
|
|
*/
|
|
public static final TypedKey<Art> BOMB = create(key("bomb"));
|
|
|
|
/**
|
|
* {@code minecraft:bouquet}
|
|
*
|
|
* @apiNote This field is version-dependant and may be removed in future Minecraft versions
|
|
*/
|
|
public static final TypedKey<Art> BOUQUET = create(key("bouquet"));
|
|
|
|
/**
|
|
* {@code minecraft:burning_skull}
|
|
*
|
|
* @apiNote This field is version-dependant and may be removed in future Minecraft versions
|
|
*/
|
|
public static final TypedKey<Art> BURNING_SKULL = create(key("burning_skull"));
|
|
|
|
/**
|
|
* {@code minecraft:bust}
|
|
*
|
|
* @apiNote This field is version-dependant and may be removed in future Minecraft versions
|
|
*/
|
|
public static final TypedKey<Art> BUST = create(key("bust"));
|
|
|
|
/**
|
|
* {@code minecraft:cavebird}
|
|
*
|
|
* @apiNote This field is version-dependant and may be removed in future Minecraft versions
|
|
*/
|
|
public static final TypedKey<Art> CAVEBIRD = create(key("cavebird"));
|
|
|
|
/**
|
|
* {@code minecraft:changing}
|
|
*
|
|
* @apiNote This field is version-dependant and may be removed in future Minecraft versions
|
|
*/
|
|
public static final TypedKey<Art> CHANGING = create(key("changing"));
|
|
|
|
/**
|
|
* {@code minecraft:cotan}
|
|
*
|
|
* @apiNote This field is version-dependant and may be removed in future Minecraft versions
|
|
*/
|
|
public static final TypedKey<Art> COTAN = create(key("cotan"));
|
|
|
|
/**
|
|
* {@code minecraft:courbet}
|
|
*
|
|
* @apiNote This field is version-dependant and may be removed in future Minecraft versions
|
|
*/
|
|
public static final TypedKey<Art> COURBET = create(key("courbet"));
|
|
|
|
/**
|
|
* {@code minecraft:creebet}
|
|
*
|
|
* @apiNote This field is version-dependant and may be removed in future Minecraft versions
|
|
*/
|
|
public static final TypedKey<Art> CREEBET = create(key("creebet"));
|
|
|
|
/**
|
|
* {@code minecraft:donkey_kong}
|
|
*
|
|
* @apiNote This field is version-dependant and may be removed in future Minecraft versions
|
|
*/
|
|
public static final TypedKey<Art> DONKEY_KONG = create(key("donkey_kong"));
|
|
|
|
/**
|
|
* {@code minecraft:earth}
|
|
*
|
|
* @apiNote This field is version-dependant and may be removed in future Minecraft versions
|
|
*/
|
|
public static final TypedKey<Art> EARTH = create(key("earth"));
|
|
|
|
/**
|
|
* {@code minecraft:endboss}
|
|
*
|
|
* @apiNote This field is version-dependant and may be removed in future Minecraft versions
|
|
*/
|
|
public static final TypedKey<Art> ENDBOSS = create(key("endboss"));
|
|
|
|
/**
|
|
* {@code minecraft:fern}
|
|
*
|
|
* @apiNote This field is version-dependant and may be removed in future Minecraft versions
|
|
*/
|
|
public static final TypedKey<Art> FERN = create(key("fern"));
|
|
|
|
/**
|
|
* {@code minecraft:fighters}
|
|
*
|
|
* @apiNote This field is version-dependant and may be removed in future Minecraft versions
|
|
*/
|
|
public static final TypedKey<Art> FIGHTERS = create(key("fighters"));
|
|
|
|
/**
|
|
* {@code minecraft:finding}
|
|
*
|
|
* @apiNote This field is version-dependant and may be removed in future Minecraft versions
|
|
*/
|
|
public static final TypedKey<Art> FINDING = create(key("finding"));
|
|
|
|
/**
|
|
* {@code minecraft:fire}
|
|
*
|
|
* @apiNote This field is version-dependant and may be removed in future Minecraft versions
|
|
*/
|
|
public static final TypedKey<Art> FIRE = create(key("fire"));
|
|
|
|
/**
|
|
* {@code minecraft:graham}
|
|
*
|
|
* @apiNote This field is version-dependant and may be removed in future Minecraft versions
|
|
*/
|
|
public static final TypedKey<Art> GRAHAM = create(key("graham"));
|
|
|
|
/**
|
|
* {@code minecraft:humble}
|
|
*
|
|
* @apiNote This field is version-dependant and may be removed in future Minecraft versions
|
|
*/
|
|
public static final TypedKey<Art> HUMBLE = create(key("humble"));
|
|
|
|
/**
|
|
* {@code minecraft:kebab}
|
|
*
|
|
* @apiNote This field is version-dependant and may be removed in future Minecraft versions
|
|
*/
|
|
public static final TypedKey<Art> KEBAB = create(key("kebab"));
|
|
|
|
/**
|
|
* {@code minecraft:lowmist}
|
|
*
|
|
* @apiNote This field is version-dependant and may be removed in future Minecraft versions
|
|
*/
|
|
public static final TypedKey<Art> LOWMIST = create(key("lowmist"));
|
|
|
|
/**
|
|
* {@code minecraft:match}
|
|
*
|
|
* @apiNote This field is version-dependant and may be removed in future Minecraft versions
|
|
*/
|
|
public static final TypedKey<Art> MATCH = create(key("match"));
|
|
|
|
/**
|
|
* {@code minecraft:meditative}
|
|
*
|
|
* @apiNote This field is version-dependant and may be removed in future Minecraft versions
|
|
*/
|
|
public static final TypedKey<Art> MEDITATIVE = create(key("meditative"));
|
|
|
|
/**
|
|
* {@code minecraft:orb}
|
|
*
|
|
* @apiNote This field is version-dependant and may be removed in future Minecraft versions
|
|
*/
|
|
public static final TypedKey<Art> ORB = create(key("orb"));
|
|
|
|
/**
|
|
* {@code minecraft:owlemons}
|
|
*
|
|
* @apiNote This field is version-dependant and may be removed in future Minecraft versions
|
|
*/
|
|
public static final TypedKey<Art> OWLEMONS = create(key("owlemons"));
|
|
|
|
/**
|
|
* {@code minecraft:passage}
|
|
*
|
|
* @apiNote This field is version-dependant and may be removed in future Minecraft versions
|
|
*/
|
|
public static final TypedKey<Art> PASSAGE = create(key("passage"));
|
|
|
|
/**
|
|
* {@code minecraft:pigscene}
|
|
*
|
|
* @apiNote This field is version-dependant and may be removed in future Minecraft versions
|
|
*/
|
|
public static final TypedKey<Art> PIGSCENE = create(key("pigscene"));
|
|
|
|
/**
|
|
* {@code minecraft:plant}
|
|
*
|
|
* @apiNote This field is version-dependant and may be removed in future Minecraft versions
|
|
*/
|
|
public static final TypedKey<Art> PLANT = create(key("plant"));
|
|
|
|
/**
|
|
* {@code minecraft:pointer}
|
|
*
|
|
* @apiNote This field is version-dependant and may be removed in future Minecraft versions
|
|
*/
|
|
public static final TypedKey<Art> POINTER = create(key("pointer"));
|
|
|
|
/**
|
|
* {@code minecraft:pond}
|
|
*
|
|
* @apiNote This field is version-dependant and may be removed in future Minecraft versions
|
|
*/
|
|
public static final TypedKey<Art> POND = create(key("pond"));
|
|
|
|
/**
|
|
* {@code minecraft:pool}
|
|
*
|
|
* @apiNote This field is version-dependant and may be removed in future Minecraft versions
|
|
*/
|
|
public static final TypedKey<Art> POOL = create(key("pool"));
|
|
|
|
/**
|
|
* {@code minecraft:prairie_ride}
|
|
*
|
|
* @apiNote This field is version-dependant and may be removed in future Minecraft versions
|
|
*/
|
|
public static final TypedKey<Art> PRAIRIE_RIDE = create(key("prairie_ride"));
|
|
|
|
/**
|
|
* {@code minecraft:sea}
|
|
*
|
|
* @apiNote This field is version-dependant and may be removed in future Minecraft versions
|
|
*/
|
|
public static final TypedKey<Art> SEA = create(key("sea"));
|
|
|
|
/**
|
|
* {@code minecraft:skeleton}
|
|
*
|
|
* @apiNote This field is version-dependant and may be removed in future Minecraft versions
|
|
*/
|
|
public static final TypedKey<Art> SKELETON = create(key("skeleton"));
|
|
|
|
/**
|
|
* {@code minecraft:skull_and_roses}
|
|
*
|
|
* @apiNote This field is version-dependant and may be removed in future Minecraft versions
|
|
*/
|
|
public static final TypedKey<Art> SKULL_AND_ROSES = create(key("skull_and_roses"));
|
|
|
|
/**
|
|
* {@code minecraft:stage}
|
|
*
|
|
* @apiNote This field is version-dependant and may be removed in future Minecraft versions
|
|
*/
|
|
public static final TypedKey<Art> STAGE = create(key("stage"));
|
|
|
|
/**
|
|
* {@code minecraft:sunflowers}
|
|
*
|
|
* @apiNote This field is version-dependant and may be removed in future Minecraft versions
|
|
*/
|
|
public static final TypedKey<Art> SUNFLOWERS = create(key("sunflowers"));
|
|
|
|
/**
|
|
* {@code minecraft:sunset}
|
|
*
|
|
* @apiNote This field is version-dependant and may be removed in future Minecraft versions
|
|
*/
|
|
public static final TypedKey<Art> SUNSET = create(key("sunset"));
|
|
|
|
/**
|
|
* {@code minecraft:tides}
|
|
*
|
|
* @apiNote This field is version-dependant and may be removed in future Minecraft versions
|
|
*/
|
|
public static final TypedKey<Art> TIDES = create(key("tides"));
|
|
|
|
/**
|
|
* {@code minecraft:unpacked}
|
|
*
|
|
* @apiNote This field is version-dependant and may be removed in future Minecraft versions
|
|
*/
|
|
public static final TypedKey<Art> UNPACKED = create(key("unpacked"));
|
|
|
|
/**
|
|
* {@code minecraft:void}
|
|
*
|
|
* @apiNote This field is version-dependant and may be removed in future Minecraft versions
|
|
*/
|
|
public static final TypedKey<Art> VOID = create(key("void"));
|
|
|
|
/**
|
|
* {@code minecraft:wanderer}
|
|
*
|
|
* @apiNote This field is version-dependant and may be removed in future Minecraft versions
|
|
*/
|
|
public static final TypedKey<Art> WANDERER = create(key("wanderer"));
|
|
|
|
/**
|
|
* {@code minecraft:wasteland}
|
|
*
|
|
* @apiNote This field is version-dependant and may be removed in future Minecraft versions
|
|
*/
|
|
public static final TypedKey<Art> WASTELAND = create(key("wasteland"));
|
|
|
|
/**
|
|
* {@code minecraft:water}
|
|
*
|
|
* @apiNote This field is version-dependant and may be removed in future Minecraft versions
|
|
*/
|
|
public static final TypedKey<Art> WATER = create(key("water"));
|
|
|
|
/**
|
|
* {@code minecraft:wind}
|
|
*
|
|
* @apiNote This field is version-dependant and may be removed in future Minecraft versions
|
|
*/
|
|
public static final TypedKey<Art> WIND = create(key("wind"));
|
|
|
|
/**
|
|
* {@code minecraft:wither}
|
|
*
|
|
* @apiNote This field is version-dependant and may be removed in future Minecraft versions
|
|
*/
|
|
public static final TypedKey<Art> WITHER = create(key("wither"));
|
|
|
|
private PaintingVariantKeys() {
|
|
}
|
|
|
|
/**
|
|
* Creates a key for {@link Art} in the registry {@code minecraft:painting_variant}.
|
|
*
|
|
* @param key the value's key in the registry
|
|
* @return a new typed key
|
|
*/
|
|
@ApiStatus.Experimental
|
|
public static @NonNull TypedKey<Art> create(final @NonNull Key key) {
|
|
return TypedKey.create(RegistryKey.PAINTING_VARIANT, key);
|
|
}
|
|
}
|