about summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--basic.lsp2
-rwxr-xr-xbtech-m.lsp19
2 files changed, 20 insertions, 1 deletions
diff --git a/basic.lsp b/basic.lsp
index 93d0769..0662a09 100644
--- a/basic.lsp
+++ b/basic.lsp
@@ -203,7 +203,7 @@
                    ((or (char= c #\<) (char= c #\>))
                     (forward cl)
                     (if (>= (current cl) (size cl))
-                        (crate (class <lsymbol>) 's (create-string 1 c))
+                        (create (class <lsymbol>) 's (create-string 1 c))
                         (let ((cs (elt (string cl) (current cl))))
                              (cond ((and (char= c #\<) (char= cs #\=))
                                     (forward cl)
diff --git a/btech-m.lsp b/btech-m.lsp
new file mode 100755
index 0000000..43f976c
--- /dev/null
+++ b/btech-m.lsp
@@ -0,0 +1,19 @@
+(defclass <unit> () ((name :initarg n :reader name)
+                     (tp :initarg tp :reader tp)
+                     (pv :initarg p :reader pv)))
+(defconstant +mad-3r+ (create (class <unit>)
+                              'n 'marauder
+                              'tp 'bm
+                              'p 42
+                              'sz 3
+                              'tmm 1
+                              'mv 8
+                              'role 'sniper
+                              'skill 3
+                              'damage #(2 3 3)
+                              'ov 1
+                              'a 0
+                              's 0
+                              'crit
+                              'id))
+