This repository has been archived on 2021-07-14. You can view files and clone it, but cannot push or open issues or pull requests.
scriptcraft/src/main/js/plugins/drone/contrib/temple.js
2014-01-25 09:04:16 +00:00

25 lines
531 B
JavaScript

var Drone = require('../drone').Drone;
//
// constructs a mayan temple
//
Drone.extend('temple', function(side) {
if (!side) {
side = 20;
}
var stone = '98:1';
var stair = '109:' + Drone.PLAYER_STAIRS_FACING[this.dir];
this.chkpt('temple');
while (side > 4) {
var middle = Math.round((side-2)/2);
this.chkpt('corner')
.box(stone, side, 1, side)
.right(middle).box(stair).right().box(stair)
.move('corner').up().fwd().right();
side = side - 2;
}
return this.move('temple');
});