ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/maps/perl/schmorp-neko.ext
(Generate patch)

Comparing deliantra/maps/perl/schmorp-neko.ext (file contents):
Revision 1.2 by root, Wed Feb 8 05:22:41 2006 UTC vs.
Revision 1.19 by root, Thu Aug 10 23:25:11 2006 UTC

5use Data::Dumper; 5use Data::Dumper;
6 6
7sub teleport { 7sub teleport {
8 my ($pl, $map, $x, $y) = @_; 8 my ($pl, $map, $x, $y) = @_;
9 9
10 my $portal = cf::object::new ("exit"); 10 my $portal = cf::object::new "exit";
11 11
12 $portal->set_slaying ($map); 12 $portal->set_slaying ($map);
13 $portal->set_hp ($x); 13 $portal->set_hp ($x);
14 $portal->set_sp ($y); 14 $portal->set_sp ($y);
15 15
16 $portal->apply ($pl); 16 $portal->apply ($pl);
17 17
18 $portal->free; 18 $portal->free;
19} 19}
20 20
21sub find_target_player {
22 my ($obj) = @_;
23
24 my ($time, $pl) = (time + 120, undef);
25
26 for (map $_->ob, cf::player::list) {
27 next unless $obj->on_same_map_as ($_);
28
29 my $ptime = List::Util::max $_->{neko_next_pester}, $_->{neko_next_cast};
30
31 ($time, $pl) = ($ptime, $_)
32 if $time > $ptime;
33 }
34
35 $pl
36}
37
21sub on_move { 38sub on_move {
22 my ($data) = @_; 39 my ($event, $who) = @_;
23 40
24 if (my $pl = $data->{who}->nearest_player) { 41 if (my $pl = find_target_player $who) {
25 if ($pl->level >= 10) {
26 my (undef, undef, undef, $dir, undef) = $data->{who}->direction ($pl); 42 my ($d, undef, undef, $dir, undef) = $who->rangevector ($pl);
27 $data->{who}->move ($data->{who}, $dir); 43
44 if ($d < 1.5) {
45 if (grep $_->type == cf::FORCE && $_->slaying eq "schmorp-neko-gave-fish", $pl->inv) {
46 # she likes us!
47 if ($pl->{neko_next_pester} < time) {
48 $pl->{neko_next_pester} = time + 120 + rand 300;
49 $pl->message ("Purr. (Purr)");
50 }
51
52 if ($pl->{neko_next_cast} < time) {
53 $pl->{neko_next_cast} = time + 40 + rand 60;
54
55 # so heal her
56 my $spell = cf::object::new "spell_heal";
57
58 $spell->set_sp (0); # makes casting work
59 $spell->set_gp (0); # on unholy/nomagic ground
60
61 $spell->set_hp (0);
62 $spell->set_dam (($pl->maxhp - $pl->hp) * 0.5); # normal hp heal
63 $spell->set_food (50); # fill food
64 $spell->set_last_sp (100); # fill sp
65 $spell->set_last_grace (100); # fill gr
66 $spell->set_attacktype (cf::AT_CONFUSION | cf::AT_POISON | cf::AT_BLIND | cf::AT_DISEASE);
67
68 $pl->message ("(Neko-san makes strange noises)");
69 $pl->cast_spell ($who, $dir, $spell);
70
71 $spell->free;
72 }
73
74 } else {
75 # check for fish in his inv and steal it
76 if (my $fish = (grep $_->archetype->name eq "fishfood", $pl->inv)[0]) {
77 # add force
78 my $gave_fish = cf::object::new "force";
79 $gave_fish->set_slaying ("schmorp-neko-gave-fish");
80 $gave_fish->set_speed (0);
81 $gave_fish->insert_ob_in_ob ($pl);
82
83 # remove fish
84 $fish->remove;
85 $fish->free;
86
87 # be nice
88 $pl->message ("Meoww! (Thank you)");
89
90 } else {
91 # pester user
92 if ($pl->{neko_next_pester} < time) {
93 $pl->{neko_next_pester} = time + 60 + rand 300;
94 $pl->message ("Meow. (Please bring me fish)");
95 }
96 }
97 }
98
99 # circular movement
100 $dir = $dir % 8 + 1 unless $d > 1.5;
28 } 101 }
102
103 $who->move ($dir);
29 } 104 }
30 105
31 1 106 1
32} 107}
33 108
34sub on_attack { 109sub on_attack {
35 my ($data) = @_; 110 my ($event, $ob, $who) = @_;
36 111
37 cf::LOG cf::llevDebug, sprintf "QBERT Neko-san was attacked by %s!", $data->{activator}->name; 112 if ($who->{neko_last_attack} < time - 300) {
113 $who->{neko_attack} = 0;
114 }
38 115
39 $data->{activator}->message ("Neko-san is suddenly gone!"); 116 $who->{neko_last_attack} = time;
40 teleport $data->{activator}, "/scorn/misc/scorn_illusions", 15, 7; 117 $who->{neko_attack}++
41 $data->{activator}->message ("You hear strange noises all around you..."); 118 or cf::ext::schmorp_irc::do_notice "Neko-san was attacked by ". $who->name . "!\n";
42 $data->{activator}->message ("You feel dumb.");
43 119
120 $who->message ("Meoow! (Please do not hurt me)")
121 if !($who->{neko_attack} & 15);
122
123 if ($who->{neko_attack} > 512) {
124 $who->{neko_attack} -= 128;
125 $who->message ("Neko-san is suddenly gone!");
126 teleport $who, "/scorn/misc/scorn_illusions", 15, 7;
127 $who->message ("You hear strange noises all around you...");
128 $who->message ("You feel dumb.");
44 0 129 }
130
131 1
45} 132}
46 133
47sub on_say { 134sub on_say {
48 my ($data) = @_; 135 my ($event, $ob, $who, $msg) = @_;
49 136
50 cf::LOG cf::llevDebug, "QBERT [Neko-fon] $data->{message}"; 137 cf::LOG cf::llevDebug, sprintf "QBERT [Neko-fon] %s: %s\n", $who->name, $msg;
51 138 cf::ext::schmorp_irc::do_notice (sprintf "[Neko-fon] %s: %s\n", $who->name, $msg);
52 0
53} 139}
54 140

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines