summaryrefslogtreecommitdiff
path: root/src/spells5.cc
diff options
context:
space:
mode:
authorBardur Arantsson <bardur@scientician.net>2018-03-25 20:07:30 +0200
committerBardur Arantsson <bardur@scientician.net>2018-03-25 20:07:30 +0200
commitb673d0e4e129e47e9f025b9bfb9549b09f8b5126 (patch)
tree7ca0598f3f0bb34e97918bf06456bf627e6ccaf3 /src/spells5.cc
parent5866968c2224f93c9ac90c6e42f4533ec0f5cac5 (diff)
Remove identification Divination school spells
Diffstat (limited to 'src/spells5.cc')
-rw-r--r--src/spells5.cc38
1 files changed, 0 insertions, 38 deletions
diff --git a/src/spells5.cc b/src/spells5.cc
index 1ce69914..2aaa4428 100644
--- a/src/spells5.cc
+++ b/src/spells5.cc
@@ -1101,44 +1101,6 @@ void school_spells_init()
}
{
- spell_type *spell = spell_new(&STARIDENTIFY, "Greater Identify");
- spell_type_describe(spell, "Asks for an object and fully identify it, providing the full list of powers");
- spell_type_describe(spell, "Cast at yourself it will reveal your powers");
- spell_type_set_mana(spell, 30, 30);
- spell_type_set_difficulty(spell, 35, 80);
- spell_type_init_mage(spell,
- RANDOM,
- SCHOOL_DIVINATION,
- no_info,
- divination_greater_identify);
- }
-
- {
- spell_type *spell = spell_new(&IDENTIFY, "Identify");
- spell_type_describe(spell, "Asks for an object and identifies it");
- spell_type_describe(spell, "At level 17 it identifies all objects in the inventory");
- spell_type_describe(spell, "At level 27 it identifies all objects in the inventory and in a");
- spell_type_describe(spell, "radius on the floor");
- spell_type_set_mana(spell, 10, 50);
- spell_type_set_difficulty(spell, 8, 40);
- spell_type_init_mage(spell,
- RANDOM,
- SCHOOL_DIVINATION,
- divination_identify_info,
- divination_identify);
-
- spell_type_set_device_charges(spell, "7+d10");
-
- {
- device_allocation *device_allocation = device_allocation_new(TV_STAFF);
- device_allocation->rarity = 45;
- range_init(&device_allocation->base_level, 1, 15);
- range_init(&device_allocation->max_level, 15, 40);
- spell_type_add_device_allocation(spell, device_allocation);
- }
- }
-
- {
spell_type *spell = spell_new(&VISION, "Vision");
spell_type_describe(spell, "Detects the layout of the surrounding area");
spell_type_describe(spell, "At level 25 it maps and lights the whole level");