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

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines