forked from github/server
Vetrauter kann keine Mana auf Magier übertragen - Vertraute können jetzt Aura auf andere Magier übertragen, das kostet allerdings Faktor 4 an Aura (pro übertragenem Punkt werden 4 abgezogen).
This commit is contained in:
parent
cf157b8fa5
commit
3e35c15a08
|
@ -772,12 +772,13 @@ sp_destroy_magic(castorder *co)
|
||||||
static int
|
static int
|
||||||
sp_transferaura(castorder *co)
|
sp_transferaura(castorder *co)
|
||||||
{
|
{
|
||||||
unit *u;
|
int aura, gain, multi = 2;
|
||||||
int aura;
|
|
||||||
int cost, gain;
|
|
||||||
unit *mage = (unit *)co->magician;
|
unit *mage = (unit *)co->magician;
|
||||||
int cast_level = co->level;
|
int cast_level = co->level;
|
||||||
spellparameter *pa = co->par;
|
spellparameter *pa = co->par;
|
||||||
|
unit * u = pa->param[0]->data.u;
|
||||||
|
sc_mage * scm_src = get_mage(mage);
|
||||||
|
sc_mage * scm_dst = get_mage(u);
|
||||||
|
|
||||||
/* wenn kein Ziel gefunden, Zauber abbrechen */
|
/* wenn kein Ziel gefunden, Zauber abbrechen */
|
||||||
if(pa->param[0]->flag == TARGET_NOTFOUND) return 0;
|
if(pa->param[0]->flag == TARGET_NOTFOUND) return 0;
|
||||||
|
@ -786,43 +787,32 @@ sp_transferaura(castorder *co)
|
||||||
* abbrechen aber kosten lassen */
|
* abbrechen aber kosten lassen */
|
||||||
if(pa->param[0]->flag == TARGET_RESISTS) return cast_level;
|
if(pa->param[0]->flag == TARGET_RESISTS) return cast_level;
|
||||||
|
|
||||||
/* Zieleinheit ermitteln */
|
|
||||||
u = pa->param[0]->data.u;
|
|
||||||
|
|
||||||
/* Wieviel Transferieren? */
|
/* Wieviel Transferieren? */
|
||||||
aura = pa->param[1]->data.i;
|
aura = pa->param[1]->data.i;
|
||||||
|
|
||||||
if(aura < 2) {
|
if (scm_dst==NULL) {
|
||||||
|
/* "Zu dieser Einheit kann ich keine Aura übertragen." */
|
||||||
|
cmistake(mage, co->order, 207, MSG_MAGIC);
|
||||||
|
return 0;
|
||||||
|
} else if (scm_src->magietyp==M_ASTRAL) {
|
||||||
|
if (scm_src->magietyp != scm_dst->magietyp) multi = 3;
|
||||||
|
} else if (scm_src->magietyp==M_GRAU) {
|
||||||
|
if (scm_src->magietyp != scm_dst->magietyp) multi = 4;
|
||||||
|
} else if (scm_dst->magietyp!=scm_src->magietyp) {
|
||||||
|
/* "Zu dieser Einheit kann ich keine Aura übertragen." */
|
||||||
|
cmistake(mage, co->order, 207, MSG_MAGIC);
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (aura < multi) {
|
||||||
/* "Auraangabe fehlerhaft." */
|
/* "Auraangabe fehlerhaft." */
|
||||||
cmistake(mage, co->order, 208, MSG_MAGIC);
|
cmistake(mage, co->order, 208, MSG_MAGIC);
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
if(get_mage(mage)->magietyp != M_ASTRAL) {
|
gain = min(aura, scm_src->spellpoints) / multi;
|
||||||
if (!get_mage(u) || get_mage(u)->magietyp != get_mage(mage)->magietyp) {
|
scm_src->spellpoints -= gain*2;
|
||||||
/* "Zu dieser Einheit kann ich keine Aura übertragen." */
|
scm_dst->spellpoints += gain;
|
||||||
cmistake(mage, co->order, 207, MSG_MAGIC);
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
gain = min(aura,get_mage(mage)->spellpoints)/2;
|
|
||||||
cost = 2 * gain;
|
|
||||||
} else {
|
|
||||||
if (!get_mage(u)) {
|
|
||||||
/* "Zu dieser Einheit kann ich keine Aura übertragen."); */
|
|
||||||
cmistake(mage, co->order, 207, MSG_MAGIC);
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
if(get_mage(u)->magietyp == get_mage(mage)->magietyp) {
|
|
||||||
gain = min(aura,get_mage(mage)->spellpoints)/2;
|
|
||||||
cost = 2 * gain;
|
|
||||||
} else {
|
|
||||||
gain = min(aura,get_mage(mage)->spellpoints)/3;
|
|
||||||
cost = 3 * gain;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
get_mage(u)->spellpoints += gain;
|
|
||||||
get_mage(mage)->spellpoints -= cost;
|
|
||||||
|
|
||||||
/* sprintf(buf, "%s transferiert %d Aura auf %s", unitname(mage),
|
/* sprintf(buf, "%s transferiert %d Aura auf %s", unitname(mage),
|
||||||
gain, unitname(u)); */
|
gain, unitname(u)); */
|
||||||
|
|
Loading…
Reference in New Issue