Menu
News
All News
Dungeons & Dragons
Level Up: Advanced 5th Edition
Pathfinder
Starfinder
Warhammer
2d20 System
Year Zero Engine
Industry News
Reviews
Dragon Reflections
White Dwarf Reflections
Columns
Weekly Digests
Weekly News Digest
Freebies, Sales & Bundles
RPG Print News
RPG Crowdfunding News
Game Content
ENterplanetary DimENsions
Mythological Figures
Opinion
Worlds of Design
Peregrine's Nest
RPG Evolution
Other Columns
From the Freelancing Frontline
Monster ENcyclopedia
WotC/TSR Alumni Look Back
4 Hours w/RSD (Ryan Dancey)
The Road to 3E (Jonathan Tweet)
Greenwood's Realms (Ed Greenwood)
Drawmij's TSR (Jim Ward)
Community
Forums & Topics
Forum List
Latest Posts
Forum list
*Dungeons & Dragons
Level Up: Advanced 5th Edition
D&D Older Editions, OSR, & D&D Variants
*TTRPGs General
*Pathfinder & Starfinder
EN Publishing
*Geek Talk & Media
Search forums
Chat/Discord
Resources
Wiki
Pages
Latest activity
Media
New media
New comments
Search media
Downloads
Latest reviews
Search resources
EN Publishing
Store
EN5ider
Adventures in ZEITGEIST
Awfully Cheerful Engine
What's OLD is NEW
Judge Dredd & The Worlds Of 2000AD
War of the Burning Sky
Level Up: Advanced 5E
Events & Releases
Upcoming Events
Private Events
Featured Events
Socials!
EN Publishing
Twitter
BlueSky
Facebook
Instagram
EN World
BlueSky
YouTube
Facebook
Twitter
Twitch
Podcast
Features
Million Dollar TTRPG Crowdfunders
Most Anticipated Tabletop RPGs Of The Year
Tabletop RPG Podcast Hall of Fame
Eric Noah's Unofficial D&D 3rd Edition News
Top 5 RPGs Compiled Charts 2004-Present
Adventure Game Industry Market Research Summary (RPGs) V1.0
Ryan Dancey: Acquiring TSR
Q&A With Gary Gygax
D&D Rules FAQs
TSR, WotC, & Paizo: A Comparative History
D&D Pronunciation Guide
D&D in the Mainstream
D&D & RPG History
About Morrus
Log in
Register
What's new
Search
Search
Search titles only
By:
Forums & Topics
Forum List
Latest Posts
Forum list
*Dungeons & Dragons
Level Up: Advanced 5th Edition
D&D Older Editions, OSR, & D&D Variants
*TTRPGs General
*Pathfinder & Starfinder
EN Publishing
*Geek Talk & Media
Search forums
Chat/Discord
Menu
Log in
Register
Install the app
Install
Upgrade your account to a Community Supporter account and remove most of the site ads.
Enchanted Trinkets Complete--a hardcover book containing over 500 magic items for your D&D games!
Community
General Tabletop Discussion
*Pathfinder & Starfinder
Magic, gems and some thinking.
JavaScript is disabled. For a better experience, please enable JavaScript in your browser before proceeding.
You are using an out of date browser. It may not display this or other websites correctly.
You should upgrade or use an
alternative browser
.
Reply to thread
Message
<blockquote data-quote="Vlos" data-source="post: 1747383" data-attributes="member: 15447"><p>I started something like this a while back, trying to create a PrC which uses gems to cast spells.</p><p></p><p>Basically what I came up with (high level):</p><p>- Set rarity for each spell</p><p>- Based on spell rarity, cost of gem to store spell.</p><p>- Gems values, based on type, Size, Cut, Quality</p><p></p><p>Compute costs of Spells based on Level and rarity and casters than can find proper gems to store it.</p><p></p><p>Requires ingame skills (Craft/Profession) Gem Cutter.</p><p></p><p>So a Azurite has a base value of 10gp.</p><p></p><p></p><p>So a large Azurite of Standard quality with a Brilliant Cut is worth 75gp. </p><p>(Azurite)10gp x (large)2.5 x (Standard quality)1.0 x Brilliant Cut(3.0) = 75gp</p><p></p><p></p><p></p><p></p><p>The following is Perl code used to help generate costs. I never finished it as other things came up (as usual). </p><p></p><p>This is a bit complex and may be more than you are looking for.</p><p></p><p></p><p>[CODE]</p><p>%gemCutsList = (</p><p> 'Polished Cut - Natural' => [1.0, 'PCN'],</p><p> 'Polished Cut - Oval' => [1.0, 'PCO'],</p><p> 'Polished Cut - Tear' => [1.0, 'PCT'],</p><p> 'Polished Cut - Round' => [1.0, 'PCR'],</p><p> 'Step Cut - Square' => [2.0, 'SCO'],</p><p> 'Step Cut - Oval' => [2.0, 'SCO'],</p><p> 'Brilliant Cut - Heart' => [3.0, 'BCO'],</p><p> 'Mixed Cut - Heart' => [4.0, 'MCO'],</p><p> 'Fancy Cut - Heart' => [5.0, 'FCO'],</p><p> 'Fancy Cut - Fish' => [5.0, 'FCF'],</p><p> 'Fancy Cut - Unicorn' => [5.0, 'FCU'],</p><p> );</p><p></p><p>@gemCuts = keys %gemCutsList;</p><p></p><p>@spellLevels = (1,2,3,4,5,6,7,8,9);</p><p></p><p>%spellRarity = (</p><p> '1' => '1',</p><p> '2' => '500',</p><p> '3' => '1000',</p><p> '4' => '2500'</p><p> );</p><p></p><p>%gemMods = (</p><p> );</p><p></p><p>srand(); # intitalize Randomizer</p><p></p><p></p><p></p><p>%gemList = ('Jade' => 5000,</p><p> 'Pearl' => 5000,</p><p> 'Spinel' => 5000,</p><p> 'Tourmaline' => 5000,</p><p> 'Aquamarine' => 5000,</p><p> 'Garnet' => 5000,</p><p> 'Peridot' => 5000,</p><p> 'Topaz' => 5000,</p><p> 'Black Opal' => 5000,</p><p> 'Emerald' => 5000,</p><p> 'Fire Opal' => 5000,</p><p> 'Opal' => 5000,</p><p> 'Oriental Amethyst' => 5000,</p><p> 'Ariental Topaz' => 5000,</p><p> 'Sapphire' => 5000,</p><p> 'Star Ruby' => 5000,</p><p> 'Star Sapphire' => 5000,</p><p> 'Black Sapphire' => 5000,</p><p> 'Diamond' => 5000,</p><p> 'Emerald' => 5000,</p><p> 'Jacinth' => 5000,</p><p> 'Oriental Emerald' => 5000,</p><p> 'Ruby' => 5000,</p><p> 'Sapphire' => 5000,</p><p> 'Star Ruby' => 5000,</p><p> 'Star Sapphire' => 5000,</p><p> 'Moonstone' => 1000,</p><p> 'Rock Crystal' => 1000,</p><p> 'Sardonyx' => 1000,</p><p> 'Smoky Quartz' => 1000,</p><p> 'Onyx' => 500,</p><p> 'Star Rose Quartz' => 500,</p><p> 'Zircon' => 500,</p><p> 'Alexandrite' => 500,</p><p> 'Amethyst' => 500,</p><p> 'Chrysoberyl' => 500,</p><p> 'Garnet' => 500,</p><p> 'Marble' => 500,</p><p> 'Coral' => 200,</p><p> 'Coral 2' => 200,</p><p> 'Amber' => 100,</p><p> 'Carnelian' => 100,</p><p> 'Chalcedony' => 100,</p><p> 'Chrysoprase' => 100,</p><p> 'Tiger Eye' => 100,</p><p> 'Obsidian' => 100,</p><p> 'Turquiose' => 50,</p><p> 'Turquiose 2' => 50,</p><p> 'Azurite' => 10,</p><p> 'Blue Quartz' => 10,</p><p> 'Hematite' => 10,</p><p> 'Lapis Lazuli' => 10,</p><p> 'Malachite' => 10,</p><p> 'Moss Agate' => 10,</p><p> 'Rhodochrosite' => 10,</p><p> 'White Quartz' => 10,</p><p> 'Banded Agate' => 10,</p><p> 'Jasper' => 10 );</p><p></p><p>@gemTypes = keys %gemList;</p><p></p><p>foreach $gemType (@gemTypes)</p><p> {</p><p> $gemGradesList{$gemList{$gemType}} .= qq($gemType:);</p><p> }</p><p>@gemGrades = sort(keys(%gemGradesList));</p><p></p><p>%cutQualityList = (</p><p> 'Poor' => 0.5,</p><p># 'Raw' => 1.0,</p><p> 'Standard' => 1.0,</p><p> 'Fine' => 1.5,</p><p> 'Exceptional' => 2.5,</p><p> 'Perfect' => 3.0,</p><p> );</p><p>[/CODE]</p></blockquote><p></p>
[QUOTE="Vlos, post: 1747383, member: 15447"] I started something like this a while back, trying to create a PrC which uses gems to cast spells. Basically what I came up with (high level): - Set rarity for each spell - Based on spell rarity, cost of gem to store spell. - Gems values, based on type, Size, Cut, Quality Compute costs of Spells based on Level and rarity and casters than can find proper gems to store it. Requires ingame skills (Craft/Profession) Gem Cutter. So a Azurite has a base value of 10gp. So a large Azurite of Standard quality with a Brilliant Cut is worth 75gp. (Azurite)10gp x (large)2.5 x (Standard quality)1.0 x Brilliant Cut(3.0) = 75gp The following is Perl code used to help generate costs. I never finished it as other things came up (as usual). This is a bit complex and may be more than you are looking for. [CODE] %gemCutsList = ( 'Polished Cut - Natural' => [1.0, 'PCN'], 'Polished Cut - Oval' => [1.0, 'PCO'], 'Polished Cut - Tear' => [1.0, 'PCT'], 'Polished Cut - Round' => [1.0, 'PCR'], 'Step Cut - Square' => [2.0, 'SCO'], 'Step Cut - Oval' => [2.0, 'SCO'], 'Brilliant Cut - Heart' => [3.0, 'BCO'], 'Mixed Cut - Heart' => [4.0, 'MCO'], 'Fancy Cut - Heart' => [5.0, 'FCO'], 'Fancy Cut - Fish' => [5.0, 'FCF'], 'Fancy Cut - Unicorn' => [5.0, 'FCU'], ); @gemCuts = keys %gemCutsList; @spellLevels = (1,2,3,4,5,6,7,8,9); %spellRarity = ( '1' => '1', '2' => '500', '3' => '1000', '4' => '2500' ); %gemMods = ( ); srand(); # intitalize Randomizer %gemList = ('Jade' => 5000, 'Pearl' => 5000, 'Spinel' => 5000, 'Tourmaline' => 5000, 'Aquamarine' => 5000, 'Garnet' => 5000, 'Peridot' => 5000, 'Topaz' => 5000, 'Black Opal' => 5000, 'Emerald' => 5000, 'Fire Opal' => 5000, 'Opal' => 5000, 'Oriental Amethyst' => 5000, 'Ariental Topaz' => 5000, 'Sapphire' => 5000, 'Star Ruby' => 5000, 'Star Sapphire' => 5000, 'Black Sapphire' => 5000, 'Diamond' => 5000, 'Emerald' => 5000, 'Jacinth' => 5000, 'Oriental Emerald' => 5000, 'Ruby' => 5000, 'Sapphire' => 5000, 'Star Ruby' => 5000, 'Star Sapphire' => 5000, 'Moonstone' => 1000, 'Rock Crystal' => 1000, 'Sardonyx' => 1000, 'Smoky Quartz' => 1000, 'Onyx' => 500, 'Star Rose Quartz' => 500, 'Zircon' => 500, 'Alexandrite' => 500, 'Amethyst' => 500, 'Chrysoberyl' => 500, 'Garnet' => 500, 'Marble' => 500, 'Coral' => 200, 'Coral 2' => 200, 'Amber' => 100, 'Carnelian' => 100, 'Chalcedony' => 100, 'Chrysoprase' => 100, 'Tiger Eye' => 100, 'Obsidian' => 100, 'Turquiose' => 50, 'Turquiose 2' => 50, 'Azurite' => 10, 'Blue Quartz' => 10, 'Hematite' => 10, 'Lapis Lazuli' => 10, 'Malachite' => 10, 'Moss Agate' => 10, 'Rhodochrosite' => 10, 'White Quartz' => 10, 'Banded Agate' => 10, 'Jasper' => 10 ); @gemTypes = keys %gemList; foreach $gemType (@gemTypes) { $gemGradesList{$gemList{$gemType}} .= qq($gemType:); } @gemGrades = sort(keys(%gemGradesList)); %cutQualityList = ( 'Poor' => 0.5, # 'Raw' => 1.0, 'Standard' => 1.0, 'Fine' => 1.5, 'Exceptional' => 2.5, 'Perfect' => 3.0, ); [/CODE] [/QUOTE]
Insert quotes…
Verification
Post reply
Community
General Tabletop Discussion
*Pathfinder & Starfinder
Magic, gems and some thinking.
Top