3e SRD:Oil
Oil
A pint of oil burns for 6 hours in a lantern. Use a flask of oil as a grenadelike weapon. Use the rules for alchemist's fire, except that it takes a full-round action to prepare a flask with a fuse. Once it is thrown, there is only a 50% chance that the flask ignites successfully.
A pint of oil poured on the ground covers an area 5 feet square (provided the surface is smooth). If lit, the oil burns for 2 rounds and deals 1d3 points of damage to each creature in the area.
Back to Main Page → 3e Open Game Content → System Reference Document → Equipment → Adventuring Gear
gollark: You can just suggest a command?
gollark: Honestly, the code is kind of a mess right now.
gollark: ... how?
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.
This article is issued from Dandwiki. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.