3e SRD:Flaming

This material is published under the OGL

Flaming

Upon command, a flaming weapon is sheathed in fire. The fire does not harm the hands that hold the weapon. Flaming weapons deal +1d6 points of bonus fire damage on a successful hit. Bows, crossbows, and slings so enchanted bestow the fire energy upon their ammunition.

Caster Level: 10; Prerequisites: Craft Magic Arms and Armor and flame blade, flame strike, or fireball; Market Price: +1 bonus.



Back to Main Page 3e Open Game Content System Reference Document Magic Items

This page is protected from editing because it is an integral part of D&D Wiki. Please discuss possible problems on the talk page.

Open Game Content (place problems on the discussion page).
This is part of the 3e System Reference Document. It is covered by the Open Game License v1.0a, rather than the GNU Free Documentation License 1.3. To distinguish it, these items will have this notice. If you see any page that contains SRD material and does not show this license statement, please contact an admin so that this license statement can be added. It is our intent to work within this license in good faith.
gollark: No evil "class" stuff needed.
gollark: This is an API I run to do some random things.
gollark: ```python#!/usr/bin/env python3from flask import Flask, jsonifyfrom wsgiref.simple_server import make_serverimport subprocessimport randomfrom mpd import MPDClientimport threadingimport timempd_client = MPDClient()mpd_client.connect("localhost", 6600)print("connected, mpd is", mpd_client.mpd_version)app = Flask(__name__)@app.route("/")def index(): return "Hello, World!"@app.route("/fortune/")def fortune(): return subprocess.run(["fortune"], stdout=subprocess.PIPE).stdoutcurrent_song = Nonedef mpd_loop(): print("mpd query loop started") while True: global current_song current_song = mpd_client.currentsong() current_song["status"] = mpd_client.status() time.sleep(0.2)threading.Thread(target=mpd_loop).start()@app.route("/current-song")def get_current_song(): return jsonify(current_song)with make_server('', 1337, app) as httpd: print("Serving HTTP...") httpd.serve_forever()```
gollark: It doesn't require classes. Hold on.
gollark: I saw `getunicode`, which seems python2-ish since python3 has better unicode handling.
This article is issued from Dandwiki. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.