Skip to content
Snippets Groups Projects
Commit 73eac475 authored by dg's avatar dg
Browse files

+def gems now give +2-10 to all saves as well

Citrines give +2 infravision in addition to their +1 lite radius
Turquoises gives +10 see through stealth in addition to their +10 see invisible
+ damage gems now give +1-5% crit rate (phys, spell, and mind) as well



git-svn-id: http://svn.net-core.org/repos/t-engine4@5191 51575b47-30f0-44d4-a5cc-537603b46e54
parent 9cca26be
No related branches found
No related tags found
No related merge requests found
......@@ -73,11 +73,11 @@ newGem("Pearl", "object/pearl.png", 5, 18, "white", 40, 50, 5, 70,
{ splash={type="LITE", dam=1} }
)
newGem("Moonstone", "object/moonstone.png",5, 18, "white", 40, 50, 5, 70,
{ combat_def=10 },
{ combat_def=10, combat_mentalresist=10, combat_spellresist=10, combat_physresist=10, },
{ stun={chance=20, dur=3} }
)
newGem("Fire Opal", "object/fireopal.png",5, 18, "red", 40, 50, 5, 70,
{ inc_damage = {all=10} },
{ inc_damage = {all=10}, combat_physcrit=5, combat_mindcrit=5, combat_spellcrit=5, },
{ splash={type="FIRE", dam=40} }
)
newGem("Bloodstone", "object/bloodstone.png",5, 18, "red", 40, 50, 5, 70,
......@@ -89,11 +89,11 @@ newGem("Ruby", "object/ruby.png", 4, 16, "red", 30, 40, 4, 65,
{ power=20 }
)
newGem("Amber", "object/amber.png", 4, 16, "yellow", 30, 40, 4, 65,
{ inc_damage = {all=8} },
{ inc_damage = {all=8}, combat_physcrit=4, combat_mindcrit=4, combat_spellcrit=4, },
{ stun={chance=10, dur=2} }
)
newGem("Turquoise", "object/turquoise.png",4, 16, "green", 30, 40, 4, 65,
{ see_invisible=10 },
{ see_invisible=10, see_stealth=10 },
{ splash={type="ACID", dam=30} }
)
newGem("Jade", "object/jade.png", 4, 16, "green", 30, 40, 4, 65,
......@@ -101,7 +101,7 @@ newGem("Jade", "object/jade.png", 4, 16, "green", 30, 40, 4, 65,
{ splash={type="SLOW", dam=-1 + 1 / (1 + 0.20)} }
)
newGem("Sapphire", "object/sapphire.png",4, 16, "blue", 30, 40, 4, 65,
{ combat_def=8 },
{ combat_def=8, combat_mentalresist=8, combat_spellresist=8, combat_physresist=8, },
{ splash={type="ICE", dam=30} }
)
newGem("Quartz", "object/quartz.png",3, 12, "white", 20, 30, 3, 50,
......@@ -113,11 +113,11 @@ newGem("Emerald", "object/emerald.png",3, 12, "green", 20, 30, 3, 50,
{ splash={type="POISON", dam=50} }
)
newGem("Lapis Lazuli", "object/lapis_lazuli.png",3, 12, "blue", 20, 30, 3, 50,
{ combat_def=6 },
{ combat_def=6, combat_mentalresist=6, combat_spellresist=6, combat_physresist=6, },
{ mana=30 }
)
newGem("Garnet", "object/garnet.png",3, 12, "red", 20, 30, 3, 50,
{ inc_damage = {all=6} },
{ inc_damage = {all=6}, combat_physcrit=3, combat_mindcrit=3, combat_spellcrit=3, },
{ leech=5 }
)
newGem("Onyx", "object/onyx.png", 3, 12, "black", 20, 30, 3, 50,
......@@ -125,7 +125,7 @@ newGem("Onyx", "object/onyx.png", 3, 12, "black", 20, 30, 3, 50,
{ power=15 }
)
newGem("Amethyst", "object/amethyst.png",2, 10, "violet", 10, 20, 2, 35,
{ inc_damage = {all=4} },
{ inc_damage = {all=4}, combat_physcrit=2, combat_mindcrit=2, combat_spellcrit=2, },
{ splash={type="ARCANE", dam=25}}
)
newGem("Opal", "object/opal.png", 2, 10, "blue", 10, 20, 2, 35,
......@@ -133,7 +133,7 @@ newGem("Opal", "object/opal.png", 2, 10, "blue", 10, 20, 2, 35,
{ power=10 }
)
newGem("Topaz", "object/topaz.png", 2, 10, "blue", 10, 20, 2, 35,
{ combat_def=4 },
{ combat_def=4, combat_mentalresist=4, combat_spellresist=4, combat_physresist=4, },
{ range=3 }
)
newGem("Aquamarine", "object/aquamarine.png",2, 10, "blue", 10, 20, 2, 35,
......@@ -141,7 +141,7 @@ newGem("Aquamarine", "object/aquamarine.png",2, 10, "blue", 10, 20, 2, 35,
{ mana=20 }
)
newGem("Ametrine", "object/ametrine.png",1, 8, "yellow", 1, 10, 1, 20,
{ inc_damage = {all=2} },
{ inc_damage = {all=2}, combat_physcrit=1, combat_mindcrit=1, combat_spellcrit=1, },
{ splash={type="LITE", dam=1} }
)
newGem("Zircon", "object/zircon.png",1, 8, "yellow", 1, 10, 1, 20,
......@@ -149,11 +149,11 @@ newGem("Zircon", "object/zircon.png",1, 8, "yellow", 1, 10, 1, 20,
{ daze={chance=20, dur=3} }
)
newGem("Spinel", "object/spinel.png",1, 8, "green", 1, 10, 1, 20,
{ combat_def=2 },
{ combat_def=2, combat_mentalresist=2, combat_spellresist=2, combat_physresist=2, },
{ mana=10 }
)
newGem("Citrine", "object/citrine.png",1, 8, "yellow", 1, 10, 1, 20,
{ lite=1 },
{ lite=1, infravision=2, },
{ range=1 }
)
newGem("Agate", "object/agate.png", 1, 8, "black", 1, 10, 1, 20,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment