File: 13.wl

package info (click to toggle)
wadc 3.1-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 7,352 kB
  • sloc: java: 3,808; ansic: 1,950; xml: 135; makefile: 67; sh: 34
file content (29 lines) | stat: -rw-r--r-- 497 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#"standard.h"
#"monsters.h"
#"pickups.h"

boring(x) {
    box(0,128,160,256,256)
    pushpop(
      movestep(96, 96)
      ibox(24,128,200,64,64)
      movestep(32,32)
      x thing
    )
    move(256)
}
boring2 { boring({formerhuman | formersergeant}) }

corridor {
    movestep(0,64)
    box(0,96,128,256,64)
    movestep(256,-64)
}

main {
    pushpop(movestep(32,32) thing {shotgun | chaingun} thing)
    triple(twice(boring2) rotright move(256))
    twice(boring2)
    corridor
    boring2
}