Implement Turtle Shell (#5235)

This commit is contained in:
IvanCraft623
2022-09-28 12:19:15 -05:00
committed by GitHub
parent 383dc2a2b9
commit 1366a43c22
7 changed files with 63 additions and 1 deletions

View File

@ -1486,6 +1486,7 @@ final class StringToItemParser extends StringToTParser{
$result->register("thick_potion", fn() => Items::POTION()->setType(PotionType::THICK()));
$result->register("thick_splash_potion", fn() => Items::SPLASH_POTION()->setType(PotionType::THICK()));
$result->register("totem", fn() => Items::TOTEM());
$result->register("turtle_helmet", fn() => Items::TURTLE_HELMET());
$result->register("turtle_master_potion", fn() => Items::POTION()->setType(PotionType::TURTLE_MASTER()));
$result->register("turtle_master_splash_potion", fn() => Items::SPLASH_POTION()->setType(PotionType::TURTLE_MASTER()));
$result->register("turtle_shell_piece", fn() => Items::SCUTE());