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.17 by root, Mon Apr 10 08:34:07 2006 UTC vs.
Revision 1.26 by root, Wed Aug 30 08:34:21 2006 UTC

1#! perl 1#! perl
2 2
3# archetype nekosan 3# archetype nekosan
4
5use Data::Dumper;
6 4
7sub teleport { 5sub teleport {
8 my ($pl, $map, $x, $y) = @_; 6 my ($pl, $map, $x, $y) = @_;
9 7
10 my $portal = cf::object::new "exit"; 8 my $portal = cf::object::new "exit";
33 } 31 }
34 32
35 $pl 33 $pl
36} 34}
37 35
38sub on_move { 36sub on_monster_move {
39 my ($event, $who) = @_; 37 my ($self, $enemy) = @_;
40 38
41 if (my $pl = find_target_player $who) { 39 if (my $pl = find_target_player $self) {
42 my ($d, undef, undef, $dir, undef) = $who->rangevector ($pl); 40 my ($d, undef, undef, $dir, undef) = $self->rangevector ($pl);
43 41
44 if ($d < 1.5) { 42 if ($d < 1.5) {
45 if (grep $_->type == cf::FORCE && $_->slaying eq "schmorp-neko-gave-fish", $pl->inv) { 43 if (grep $_->type == cf::FORCE && $_->slaying eq "schmorp-neko-gave-fish", $pl->inv) {
46 # she likes us! 44 # she likes us!
47 if ($pl->{neko_next_pester} < time) { 45 if ($pl->{neko_next_pester} < time) {
64 $spell->set_last_sp (100); # fill sp 62 $spell->set_last_sp (100); # fill sp
65 $spell->set_last_grace (100); # fill gr 63 $spell->set_last_grace (100); # fill gr
66 $spell->set_attacktype (cf::AT_CONFUSION | cf::AT_POISON | cf::AT_BLIND | cf::AT_DISEASE); 64 $spell->set_attacktype (cf::AT_CONFUSION | cf::AT_POISON | cf::AT_BLIND | cf::AT_DISEASE);
67 65
68 $pl->message ("(Neko-san makes strange noises)"); 66 $pl->message ("(Neko-san makes strange noises)");
69 $pl->cast_spell ($who, $dir, $spell); 67 $pl->cast_spell ($self, $dir, $spell);
70 68
71 $spell->free; 69 $spell->free;
72 } 70 }
73 71
74 } else { 72 } else {
98 96
99 # circular movement 97 # circular movement
100 $dir = $dir % 8 + 1 unless $d > 1.5; 98 $dir = $dir % 8 + 1 unless $d > 1.5;
101 } 99 }
102 100
103 $who->move ($dir); 101 $self->move ($dir);
104 } 102 }
105 103
106 1 104 cf::override;
107} 105}
108 106
109sub on_attack { 107sub on_attack {
110 my ($event, $ob, $who) = @_; 108 my ($self, $hitter) = @_;
111 109
110 if ($hitter->type == cf::PLAYER) {
112 if ($who->{neko_last_attack} < time - 300) { 111 if ($hitter->{neko_last_attack} < time - 300) {
113 $who->{neko_attack} = 0; 112 $hitter->{neko_attack} = 0;
113 }
114
115 $hitter->{neko_last_attack} = time;
116 $hitter->{neko_attack}++
117 or ext::schmorp_irc::do_notice "Neko-san was attacked by ". $hitter->name . "!\n";
118
119 $hitter->message ("Meoow! (Please do not hurt me)")
120 if !($hitter->{neko_attack} & 15);
121
122 if ($hitter->{neko_attack} > 512) {
123 $hitter->{neko_attack} -= 128;
124 $hitter->message ("Neko-san is suddenly gone!");
125 teleport $hitter, "/scorn/misc/scorn_illusions", 15, 7;
126 $hitter->message ("You hear strange noises all around you...");
127 $hitter->message ("You feel dumb.");
128 }
129 } else {
130 $hitter->hp (-1);
131 $hitter->kill_object;
114 } 132 }
115 133
116 $who->{neko_last_attack} = time; 134 cf::override;
117 $who->{neko_attack}++
118 or cf::LOG cf::llevDebug, sprintf "QBERT Neko-san was attacked by %s!\n", $who->name;
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.");
129 }
130
131 1
132} 135}
133 136
134sub on_say { 137sub on_say {
135 my ($event, $ob, $who, $msg) = @_; 138 my ($self, $pl, $msg) = @_;
136 139
137 cf::LOG cf::llevDebug, sprintf "QBERT [Neko-fon] %s: %s\n", $who->name, $msg; 140 cf::LOG cf::llevDebug, sprintf "QBERT [Neko-fon] %s: %s\n", $pl->ob->name, $msg;
141 ext::schmorp_irc::do_notice (sprintf "[Neko-fon] %s: %s\n", $pl->ob->name, $msg);
138} 142}
139 143
144cf::register_attachment "Nekosan", package => __PACKAGE__;
145

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines