UNPKG
swordio
Version:
latest (0.2.0)
0.2.0
0.1.1
0.1.0
A medieval warrior-based programming language
github.com/mrfishie/swordio
cpdt/swordio
swordio
/
lib
/
cells
/
AcidCell.js
10 lines
(8 loc)
•
174 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
function
AcidCell
(
map
) {
this
.
map
= map; }
AcidCell
.
type
=
"U"
;
AcidCell
.
prototype
.
encounter
=
function
(
enemy, vector
) { enemy.
kill
(); };
module
.
exports
=
AcidCell
;