Updated fletching message to include the new arrowshaft quantities

This commit is contained in:
randy 2024-11-17 14:18:44 -07:00
parent 9ed560cca6
commit eebcb25274

View file

@ -110,6 +110,16 @@ public final class FletchingPulse extends SkillPulse<Item> {
switch (fletch) {
case ARROW_SHAFT:
return "You carefully cut the wood into 15 arrow shafts.";
case OAK_ARROW_SHAFT:
return "You carefully cut the wood into 30 arrow shafts.";
case WILLOW_ARROW_SHAFT:
return "You carefully cut the wood into 45 arrow shafts.";
case MAPLE_ARROW_SHAFT:
return "You carefully cut the wood into 60 arrow shafts.";
case YEW_ARROW_SHAFT:
return "You carefully cut the wood into 75 arrow shafts.";
case MAGIC_ARROW_SHAFT:
return "You carefully cut the wood into 90 arrow shafts.";
default:
return "You carefully cut the wood into " + (StringUtils.isPlusN(fletch.getItem().getName()) ? "an" : "a") + " " + fletch.getItem().getName().replace("(u)", "").trim() + ".";
}