Laser Tank (board game)

Laser Tank is a 1980 board game published by Judges Guild.

Gameplay

Laser Tank is a set of miniatures combat rules with cardstock vehicles.[1]

Reception

William A. Barton reviewed Laser Tank in The Space Gamer No. 35.[1] Barton commented that "All in all, Laser Tank isn't a bad buy for use in a role-playing campaign. And, for a quicky, little-thought AFV battle, the Laser Tank rules (and vehicles) might prove sufficient for some. Real miniature armor enthusiasts, though, would be advised to look elsewhere for SF armor rules. If you do buy Laser Tank for the miniature rules, well, don't say you weren't warned."[1]

gollark: Apparently Zig can get some optimizations out of making all integer overflow UB.
gollark: (mod 2^128 or so)
gollark: Fibonaccae WILL be computed.
gollark: ```ruststruct Fib1 { cache: Vec<u128>}impl Iterator for Fib1 { type Item = u128; fn next(&mut self) -> Option<Self::Item> { let n = self.cache.len(); let next = self.cache[n - 1].wrapping_add(self.cache[n - 2]); self.cache.push(next); Some(next) }}fn fib1() -> Fib1 { Fib1 { cache: vec![0, 1] } }fn main() { for n in fib1() { print!("{} ", n); }}```
gollark: I prefer it this way.

References

  1. Barton, William A. (January 1981). "Capsule Reviews". The Space Gamer. Steve Jackson Games (35): 23.
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.