Commit 9e8585c27c63d6b3408d3104d9bbeeb62ae7b997

Authored by dg
1 parent fc808998

New lore associated with the Spellblade and Eden's Guile artifacts


git-svn-id: http://svn.net-core.org/repos/t-engine4@3361 51575b47-30f0-44d4-a5cc-537603b46e54
... ... @@ -614,6 +614,9 @@ end
614 614
615 615 --- On identification, add to lore
616 616 function _M:on_identify()
  617 + if self.on_id_lore then
  618 + game.player:learnLore(self.on_id_lore)
  619 + end
617 620 if self.unique and self.desc and not self.no_unique_lore then
618 621 game.player:additionalLore(self.unique, self:getName(), "artifacts", self.desc)
619 622 game.player:learnLore(self.unique)
... ...
... ... @@ -480,6 +480,7 @@ newEntity{ base = "BASE_LONGSWORD",
480 480 color=colors.AQUAMARINE,
481 481 rarity = 250,
482 482 desc = [[Mages sometimes have funny ideas. Archmage Varil once learned how to handle a sword and found he preferred wielding it instead of his staff.]],
  483 + on_id_lore = "spellblade",
483 484 cost = 1000,
484 485
485 486 require = { stat = { mag=28, str=28, dex=28 }, },
... ... @@ -555,6 +556,7 @@ newEntity{ base = "BASE_LEATHER_BOOT",
555 556 name = "Eden's Guile",
556 557 unided_name = "pair of yellow boots",
557 558 desc = [[The boots of a Rogue outcast, who knew that the best way to deal with a problem was to run from it.]],
  559 + on_id_lore = "eden-guile",
558 560 color = colors.YELLOW,
559 561 level_range = {1, 20},
560 562 rarity = 200,
... ...
... ... @@ -65,3 +65,15 @@ Magical runes and items are imbued with an attachment to certain elemental threa
65 65 Some believe that magic is inherently wrong, that the so-called twisting of the elements with one's will can only lead to terrible things. As students of Angolwen I assume you disagree! Magic is simply an extension of the forces of nature, and are we not natural creatures that use it? But remember that magic is still a powerful force that can be used for good or ill. Magic is indeed a tool of immense value - use it wisely.
66 66 ]],
67 67 }
  68 +
  69 +newLore{
  70 + id = "spellblade",
  71 + category = "angolwen",
  72 + name = "The spellblade",
  73 + lore = [[From the desk of Archmage Varil,
  74 +Another day dawns on Angolwen. I hesitate to write this, but it almost feels as if peace is once again returning to Eyal. Saying this, I almost expect war and destruction to erupt immediately - fate is anything if not spiteful. Regardless, my sleep grows less disturbed by my memories of the Spellhunt day by day, and I can now devote myself wholly to the betterment of our cloistered community here in the mountains.
  75 +
  76 +This is not to say that life has been without conflict at all. An agent of the Ziguranth infiltrated Angolwen under the guise of a travelling alchemist a few days ago; an unhappy first, I'm afraid. Having used choking powder to incapacitate the guards and rob the surrounding mages of their voices, things may have turned ugly if Linaniil hadn't been passing by on one of her walks. Little was left of that man... or the tree he hid behind... or many of the surrounding buildings, to be honest.
  77 +
  78 +In a way, the incident lit a fire under me to pursue my studies and develop my powers, but I must admit that my interest in staff practice has waned as of late. My fencing, on the other hand, improves by the day. Hmm... I wonder if I can get some of the enchanters to help me "augment" my old sword. After all, what is a blade but a sharpened metal staff?]],
  79 +}
... ...
... ... @@ -420,3 +420,22 @@ Yet spells of fiery rages born,
420 420 Our lands of bygone ages torn,
421 421 Gone is trust, wrath is red.
422 422 ]] }
  423 +
  424 +newLore{
  425 + id = "eden-guile",
  426 + category = "artifacts",
  427 + name = "Running man",
  428 + lore = [[Running man, running man
  429 +Your time is ending soon
  430 +Running man, running man
  431 +Will not save sun nor moon
  432 +
  433 +Running man, running man
  434 +Survival growing slim
  435 +Running man, running man
  436 +You know your fate is grim
  437 +
  438 +Running man, running man
  439 +Now's the time to choose
  440 +Running man, running man
  441 +Your honour or your shoes!]] }
... ...