PFSRD:Nature Magic

This material is published under the OGL

Nature Magic

You are able to use simple spells by drawing on nature's raw majesty.

Prerequisite: Knowledge (nature) 1 rank.

Benefit: You gain know direction as a constant spell-like ability, and can choose another druid orison you can cast as a spell-like ability once per day. Your caster level for both of these spell-like abilities is equal to your character level.


Back to Main Page Pathfinder Open Game Content PFSRD Feats

Open Game Content (place problems on the discussion page).
This is part of the Pathfinder 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 PFSRD 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: But you can also write a program to just directly run from a URL, like that one.
gollark: Yes.
gollark: If you want to run stuff downloaded from the interweb in a script then:```lualocal h = http.get "whatever URL"local x = h.readAll()h.close()local fn, err = load(x, "@thing")if not fn then error(err) endfn(...)```
gollark: You can actually just use `wget run [URL]` or something in the command prompt.
gollark: If you want to save it to a file then```lualocal h = http.get "whatever URL"local f = fs.open("whatever file", "w")f.write(h.readAll())h.close()```
This article is issued from Dandwiki. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.