forked from 2009Scape/Server
Updated fletching message to include the new arrowshaft quantities
This commit is contained in:
parent
9ed560cca6
commit
eebcb25274
1 changed files with 10 additions and 0 deletions
|
|
@ -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() + ".";
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue