1998Q3/
<!-- MHonArc v2.4.4 -->
<!--X-Subject: [MUD&#45;Dev] Re: let's call it a spellcraft -->
<!--X-From-R13: Hnqvz Fxnpuraxb <igNserrubyq.pebpbqvyr.bet> -->
<!--X-Date: Tue, 22 Sep 1998 20:13:03 &#45;0700 -->
<!--X-Message-Id: 36086740.A278771E#freehold,crocodile.org -->
<!--X-Content-Type: text/plain -->
<!--X-Reference: 199809221328200520.00069756#relay,eunet.yu -->
<!--X-Head-End-->
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
<html>
<head>
<title>MUD-Dev message, [MUD-Dev] Re: let's call it a spellcraft</title>
<!-- meta name="robots" content="noindex,nofollow" -->
<link rev="made" href="mailto:vt#freehold,crocodile.org">
</head>
<body background="/backgrounds/paperback.gif" bgcolor="#ffffff"
      text="#000000" link="#0000FF" alink="#FF0000" vlink="#006000">

  <font size="+4" color="#804040">
    <strong><em>MUD-Dev<br>mailing list archive</em></strong>
  </font>
      
<br>
[&nbsp;<a href="../">Other Periods</a>
&nbsp;|&nbsp;<a href="../../">Other mailing lists</a>
&nbsp;|&nbsp;<a href="/search.php3">Search</a>
&nbsp;]
<br clear=all><hr>
<!--X-Body-Begin-->
<!--X-User-Header-->
<!--X-User-Header-End-->
<!--X-TopPNI-->

Date:&nbsp;
[&nbsp;<a href="msg01119.html">Previous</a>
&nbsp;|&nbsp;<a href="msg01121.html">Next</a>
&nbsp;]
&nbsp;&nbsp;&nbsp;&nbsp;
Thread:&nbsp;
[&nbsp;<a href="msg01119.html">Previous</a>
&nbsp;|&nbsp;<a href="msg01124.html">Next</a>
&nbsp;]
&nbsp;&nbsp;&nbsp;&nbsp;
Index:&nbsp;
[&nbsp;<A HREF="author.html#01120">Author</A>
&nbsp;|&nbsp;<A HREF="#01120">Date</A>
&nbsp;|&nbsp;<A HREF="thread.html#01120">Thread</A>
&nbsp;]

<!--X-TopPNI-End-->
<!--X-MsgBody-->
<!--X-Subject-Header-Begin-->
<H1>[MUD-Dev] Re: let's call it a spellcraft</H1>
<HR>
<!--X-Subject-Header-End-->
<!--X-Head-of-Message-->
<UL>
<LI><em>To</em>: <A HREF="mailto:mud-dev#kanga,nu">mud-dev#kanga,nu</A></LI>
<LI><em>Subject</em>: [MUD-Dev] Re: let's call it a spellcraft</LI>
<LI><em>From</em>: Vadim Tkachenko &lt;<A HREF="mailto:vt#freehold,crocodile.org">vt#freehold,crocodile.org</A>&gt;</LI>
<LI><em>Date</em>: Tue, 22 Sep 1998 22:13:04 -0500</LI>
<LI><em>Reply-To</em>: <A HREF="mailto:mud-dev#kanga,nu">mud-dev#kanga,nu</A></LI>
</UL>
<!--X-Head-of-Message-End-->
<!--X-Head-Body-Sep-Begin-->
<HR>
<!--X-Head-Body-Sep-End-->
<!--X-Body-of-Message-->
<PRE>
Vladimir Prelovac wrote:
 

[and quzah added later, I will refer to his post as well]

&gt;   The spells are one of my concerns. I am looking for a spell system, that &gt; would be possible to code, and would let the spellcasters create new spells &gt; in the game.

Basic question:

OK, I want to create the 'Apocalypse' spell, destroying every player in
the area of effect, except myself.

And at the same time I joined the game 5 minutes ago.

How are you going to define the limitations on the spell being created?

&gt; Something like spell researching. What I, so far, have in mind 
&gt; is making a base of 50 or 100 various effects that a spell may produce. 

Again, why limit yourself with numbers like 50? Why not 500? Why not
just X?

&gt; Then making a base of 50-60 basic spells (as a combination of those 
&gt; effects)

What about the side and cumulative effects of the variouse spell
components?
How about creating a complex spell by sequencing some simpler spells and
setting a proper timing for them (I guess, that was discussed here
before)?

Like, I can feel the opponent going to cast a fireball on me, so I fire
the sequence of "magic mirror" on myself and "Dispel heat resistance" on
him?

&gt; which the player can start with (finding runes near his village, a 
&gt; local wizard teacher, a wandering mage... ).

Ultima Underworld? I liked it very, very much (by the way, never played
the Ultima series (up to VIII), does it have the same magic system?)

&gt; ALL the other spells shall become to existance by the spellcasting players &gt; themselves (ie. after some time spend on research, mixing various material &gt; and such, a mage could come up with a new spell).

How would you define the necessity of some material component for the
spell? See, if you just say "I want this spell to require the feather"
and that's it, it's not fun, but if you say "This spell requires a
feather because...", it's completely different.

&gt; He would then give it a name, write it to his spellbook, and maybe teach it &gt; to his friends. That way the new spell, carrying the name he gave it, would &gt; be tought in the lands for generations after.

Good idea, tough to implement, though ;-)

Now, some afterthoughts.

[Quzah]

&gt; I have in mind a much simpler effect list. Basically, there are
&gt; only a very very few things that a spell can do:

&gt; Lower X
&gt; Raise X
&gt; Set X to Y

I presume that X and Y are properties (for clarity sake, sometimes
they're called attibutes, or stats).

Now, can you give me a real example when Y can be _set_ to X, unless
it's boolean? Also, let's consider this: 

1. You scratch your hand, have some temporary disability (can't put your
hand into boiling water), but it will heal off by itself.
2. You accidentally miscalculate your axe swing and chop off your hand.
You can't fix it unless you go to the surgeon with a lump sum and he
sews it back, or you use magic to grow a new hand.

Here you have the example of the vanishing effect and permanent effect.
Unfortunately, the vanishing effect could be pretty
calculation-intensive (especially if you go into extremes like the
trajectories - say, it may be half-decay, or linear, or whatever else),
but I believe the abovesaid is a good _generic_ way to handle the
property changes and hopefully can be optimized (here's a callback to
the event handling discussion).

[actually, all abovesaid is a simplified version of property handling in
Gradient MUD, dormant at the time]

Also, there are effect dependencies, like - if you chop off your hand,
you start bleeding until you either fix it or die from the blood loss,
not counting the original effect ;-)

Comments, anyone?

[Quzah]
&gt; 1) area of effect needed
&gt; 2) range needed
&gt; 3) component list
&gt; 4) sylibus list
&gt; 5) spell trigger/action

Actually, can it be generalized as 

	"action results are a function of (action, actor, target, context)",

and every component may change properties through the action. For
example, if you try to cast a fireball in a small room, you definitely
get some ashes on the walls and ceiling, and expect some backfire, too
;-) and just prey that the ceiling doesn't collapse on you.

Every component can influence the course of action, too - what happens
if you cast a fireball underwater? Or in a presence of explosive gases?

And again, I'd propose to include the response actions along with the
property changes into the action results (touch that plant I don't know
the English name for (mimose?), and it squeezes its leaves).

&gt;         Vladimir.

-- 
Still alive and smile stays on,
Vadim Tkachenko &lt;vt#freehold,crocodile.org&gt;
--
UNIX _is_ user friendly, he's just very picky about who his friends are


</PRE>

<!--X-Body-of-Message-End-->
<!--X-MsgBody-End-->
<!--X-Follow-Ups-->
<HR>
<ul compact><li><strong>Follow-Ups</strong>:
<ul>
<li><strong><A NAME="01128" HREF="msg01128.html">[MUD-Dev] Re: let's call it a spellcraft</A></strong>
<ul compact><li><em>From:</em> Travis Casey &lt;efindel#polaris,net&gt;</li></ul>
<li><strong><A NAME="01124" HREF="msg01124.html">[MUD-Dev] Re: let's call it a spellcraft</A></strong>
<ul compact><li><em>From:</em> "Adam J. Thornton" &lt;adam#phoenix,Princeton.EDU&gt;</li></ul>
</UL></LI></UL>
<!--X-Follow-Ups-End-->
<!--X-References-->
<UL><LI><STRONG>References</STRONG>:
<UL>
<LI><STRONG><A NAME="01091" HREF="msg01091.html">No Subject</A></STRONG>
<UL><LI><EM>From:</EM> "Vladimir Prelovac" &lt;tomcat#galeb,etf.bg.ac.yu&gt;</LI></UL></LI>
</UL></LI></UL>
<!--X-References-End-->
<!--X-BotPNI-->
<UL>
<LI>Prev by Date:
<STRONG><A HREF="msg01119.html">[MUD-Dev] Re: spell design systems</A></STRONG>
</LI>
<LI>Next by Date:
<STRONG><A HREF="msg01121.html">[MUD-Dev] Re: Medievia</A></STRONG>
</LI>
<LI>Prev by thread:
<STRONG><A HREF="msg01119.html">[MUD-Dev] Re: spell design systems</A></STRONG>
</LI>
<LI>Next by thread:
<STRONG><A HREF="msg01124.html">[MUD-Dev] Re: let's call it a spellcraft</A></STRONG>
</LI>
<LI>Index(es):
<UL>
<LI><A HREF="index.html#01120"><STRONG>Date</STRONG></A></LI>
<LI><A HREF="thread.html#01120"><STRONG>Thread</STRONG></A></LI>
</UL>
</LI>
</UL>

<!--X-BotPNI-End-->
<!--X-User-Footer-->
<!--X-User-Footer-End-->
<ul><li>Thread context:
<BLOCKQUOTE><UL>
<LI><STRONG>[MUD-Dev] Re: Affordances and social method (Was: Re: Wire d Magazine...)</STRONG>, <EM>(continued)</EM>
<ul compact>
<LI><strong><A NAME="00432" HREF="msg00432.html">[MUD-Dev] Re: Affordances and social method (Was: Re: Wire d Magazine...)</A></strong>, 
Koster, Raph <a href="mailto:rkoster#origin,ea.com">rkoster#origin,ea.com</a>, Thu 30 Jul 1998, 14:38 GMT
</LI>
</ul>
</LI>
<LI><strong><A NAME="00422" HREF="msg00422.html">No Subject</A></strong>, 
J C Lawrence <a href="mailto:claw#under,engr.sgi.com">claw#under,engr.sgi.com</a>, Wed 29 Jul 1998, 23:33 GMT
<UL>
<li>&lt;Possible follow-up(s)&gt;<br>
<LI><strong><A NAME="01091" HREF="msg01091.html">No Subject</A></strong>, 
Vladimir Prelovac <a href="mailto:tomcat#galeb,etf.bg.ac.yu">tomcat#galeb,etf.bg.ac.yu</a>, Tue 22 Sep 1998, 11:28 GMT
<UL>
<LI><strong><A NAME="01119" HREF="msg01119.html">[MUD-Dev] Re: spell design systems</A></strong>, 
Travis Casey <a href="mailto:efindel#polaris,net">efindel#polaris,net</a>, Wed 23 Sep 1998, 03:06 GMT
</LI>
<LI><strong><A NAME="01120" HREF="msg01120.html">[MUD-Dev] Re: let's call it a spellcraft</A></strong>, 
Vadim Tkachenko <a href="mailto:vt#freehold,crocodile.org">vt#freehold,crocodile.org</a>, Wed 23 Sep 1998, 03:13 GMT
<UL>
<LI><strong><A NAME="01124" HREF="msg01124.html">[MUD-Dev] Re: let's call it a spellcraft</A></strong>, 
Adam J. Thornton <a href="mailto:adam#phoenix,Princeton.EDU">adam#phoenix,Princeton.EDU</a>, Wed 23 Sep 1998, 04:43 GMT
<UL>
<LI><strong><A NAME="01177" HREF="msg01177.html">[MUD-Dev] Re: let's call it a spellcraft</A></strong>, 
Jon A. Lambert <a href="mailto:jlsysinc#ix,netcom.com">jlsysinc#ix,netcom.com</a>, Thu 24 Sep 1998, 05:23 GMT
<UL>
<LI><strong><A NAME="01183" HREF="msg01183.html">[MUD-Dev] Re: let's call it a spellcraft</A></strong>, 
Vadim Tkachenko <a href="mailto:vt#freehold,crocodile.org">vt#freehold,crocodile.org</a>, Thu 24 Sep 1998, 05:55 GMT
<UL>
<LI><strong><A NAME="01195" HREF="msg01195.html">[MUD-Dev] Re: let's call it a spellcraft</A></strong>, 
Adam Wiggins <a href="mailto:adam#angel,com">adam#angel,com</a>, Thu 24 Sep 1998, 18:22 GMT
</LI>
</UL>
</LI>
</UL>
</LI>
</UL>
</LI>
</UL>
</LI>
</UL>
</LI>
</UL>
</LI>
</UL></BLOCKQUOTE>

</ul>
<hr>
<center>
[&nbsp;<a href="../">Other Periods</a>
&nbsp;|&nbsp;<a href="../../">Other mailing lists</a>
&nbsp;|&nbsp;<a href="/search.php3">Search</a>
&nbsp;]
</center>
<hr>
</body>
</html>