27

Dependencies:   N5110

Revision:
2:9a31febe6d2f
Parent:
0:ef959ad27a16
--- a/Shapes/shapes.h	Fri Apr 09 06:34:43 2021 +0000
+++ b/Shapes/shapes.h	Sat Apr 24 03:01:47 2021 +0000
@@ -62,9 +62,9 @@
     
 const int shapStar[3][3] = {
     
-    { 1,0,1 },
     { 0,1,0 },
-    { 1,0,1 },
+    { 1,1,1 },
+    { 0,1,0 },
     
 };
 
@@ -84,5 +84,50 @@
      { 1,1,0,0,1,1,0,0,1,1,0,0,1,1 },
     
 };
+
+const int whiteMonster_sword[6][11] = {
+     
+     { 0,0,0,1,0,0,0,0,0,0,0 },
+     { 0,1,0,0,0,1,0,0,0,1,0 },
+     { 0,0,1,0,1,0,0,0,1,1,1 },
+     { 1,0,1,0,1,0,1,0,0,1,0 },
+     { 1,0,0,0,0,0,1,0,0,1,0 },
+     { 1,0,1,0,1,0,1,0,0,1,0 },
+    
+};
+
+const int blackMonster_sword[6][11] = {
+    
+    { 0,0,0,0,0,0,1,1,1,0,0 },
+    { 0,1,0,0,0,1,1,1,1,1,0 },
+    { 1,1,1,0,1,1,0,1,0,1,1 },
+    { 0,1,0,0,1,1,0,1,0,1,1 },
+    { 0,1,0,0,1,1,1,1,1,1,1 },
+    { 0,1,0,0,1,0,1,0,1,0,1 },
+    
+};
+
+const int blackMonster_shield[10][11] = {
+    
+    { 0,0,0,1,1,1,1,1,0,0,0 },
+    { 0,0,1,0,0,0,0,0,1,0,0 },
+    { 0,1,0,0,1,1,1,0,0,1,0 },
+    { 1,0,0,1,1,1,1,1,0,0,1 },
+    { 1,0,1,1,0,1,0,1,1,0,1 },
+    { 1,0,1,1,0,1,0,1,1,0,1 },
+    { 1,0,1,1,1,1,1,1,1,0,1 },
+    { 1,0,1,0,1,0,1,0,1,0,1 },
+    { 0,1,0,0,0,0,0,0,0,1,0 },
+    { 0,0,1,1,1,1,1,1,1,0,0 },
+    
+};
+
+const int bullet[3][2] = {
+    
+    { 1,0 },
+    { 0,1 },
+    { 1,0 },
+      
+};
     
 #endif
\ No newline at end of file