Impianto irrigazione giardino: come trovare giardinieri
Come Trovare Giardinieri per l'Installazione di un Impianto di Irrigazione per il Giardino.
Trovare Giardinieri per l'Installazione di un Impianto d'Irrigazione per il Giardino.
Scopri come trovare i migliori giardinieri per installare un impianto di irrigazione nel tuo giardino. Questo articolo offre consigli pratici e suggerimenti utili per scegliere professionisti esperti, garantendo risultati ottimali per la tua area verde. Non lasciare nulla al caso, leggi ora!
Trova professionisti vicino a te
Trova professionisti
#include "defs.h"
inherit "/obj/monster.c";
void reset(int arg) {
::reset(arg);
if(arg) return;
set_name("giant");
set_alt_name("giant");
set_race("giant");
set_short("Giant");
set_long(
"This is a massive giant, standing well over ten feet tall. His skin\n"+
"is a dark gray, and his eyes a deep yellow. He wears a skirt of animal\n"+
"skins, and wields a wicked looking club.\n"
);
set_level(15);
set_hp(225);
set_al(-1000);
set_wc(20);
set_ac(12);
add_money(1000+random(1000));
set_chat_chance(5);
load_chat("The giant grunts.\n");
load_chat("The giant looks around the clearing.\n");
load_chat("The giant hefts his club menacingly.\n");
set_a_chat_chance(10);
load_a_chat("The giant bellows in rage!\n");
load_a_chat("The giant swings his club at you!\n");
set_chance(15);
set_spell_dam(20);
set_spell_mess1(
"The giant roars in rage and smashes his foe with his club!\n"
); /* 3RD PERSON */
set_spell_mess2(
"The giant roars in rage and smashes you with his club!\n"
); /* 1ST PERSON */
add_spell("club",
"#MN# roars and smashes you with $HIS$ club!\n",
"#MN# roars and smashes #TN# with $HIS$ club!\n",
20,20,0,0);
}