5e SRD:Shortbow
Shortbow
Simple Ranged Weapons
Weapon | Cost | Damage | Weight | Properties |
---|---|---|---|---|
Shortbow | 25 gp | 1d6 piercing | 2 lb. | Ammunition (range 80/320), two-handed |
Back to Main Page → 5e System Reference Document → Equipment → Weapons
gollark: ```rust// Evaluate an arithmetic expressioncommand!(eval(_context, message, args) { let expr = args.multiple::<String>()?.join(" "); // yes, this is kind of undoing the work the command parser does... send_result(message, &calc::eval(&expr))?;});// Evaluate an arithmetic expression in polish notationcommand!(eval_polish(_context, message, args) { let expr = args.multiple::<String>()?.join(" "); send_result(message, &calc::eval_polish(&expr))?;});```ALL THE CODE for this feature.
gollark: No, since I was too lazy to do anything other than plug in an existing rust library.
gollark: ++exec```testtest2```
gollark: ++eval-polish + 1 1
gollark: There, much better.
This article is issued from Dandwiki. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.