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

Comparing cf.schmorp.de/maps/perl/schmorp-neko.ext (file contents):
Revision 1.21 by root, Fri Aug 25 15:24:54 2006 UTC vs.
Revision 1.33 by root, Tue Dec 12 16:59:34 2006 UTC

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

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines