C:\Users\buildzoid\Desktop\GameEngineOnlyBranch\src\Maps\Tareya\w1rx0y26.java
 1 //this template was designed by buildzoid
 2 //it contains all values required by the
 3 //mapmanager of OC2DTSG
 4 package Maps.Tareya;
 5 
 6 import java.awt.Color;
 7 
 8 public class w1rx0y26 {
 9     
10     static char[][] grafik = {
11         //1    2    3    4    5    6    7    8    9    0    1    2    3    4    5
12         {'#', '#', '#', '#', '#', '_', '_', '_', '_', '_', '_', '_', '#', '#', '#'},
13         {'#', ' ', ' ', ' ', ' ', 'I', 'X', 'I', 'X', 'I', 'X', 'I', '#', ' ', '#'},
14         {'#', ' ', ' ', ' ', ' ', 'I', 'X', 'I', 'N', 'I', 'X', 'I', ' ', ' ', '#'},
15         {'-', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', '#', '#'},
16         {'-', ' ', ' ', ' ', ' ', ' ', ' ', '#', ' ', ' ', ' ', ' ', ' ', '#', '#'},
17         {'-', ' ', ' ', ' ', '#', '#', '#', '#', ' ', ' ', ' ', ' ', ' ', ' ', '#'},
18         {'-', ' ', ' ', ' ', '#', '#', '#', ' ', ' ', ' ', ' ', ' ', ' ', ' ', '#'},
19         {'-', ' ', ' ', '#', '#', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', '#'},
20         {'#', '#', '#', '#', '#', '#', '#', '-', '-', '#', '#', '#', '#', '#', '#'}
21     };
22     
23     
24     public static char[][] ggrafik() {
25         char[][] grafix = new char[9][15];
26         for (int i = 0; i < 9; i++) {
27             grafix[i] = grafik[i].clone();   
28         }
29         return grafix;
30     }
31     public static Color genviroment(){
32         //////////////////// R   G   B
33         Color c = new Color(100,200,000);
34         return c;
35     }
36 
37     public static Color genviromentf(){
38         //////////////////// R   G   B
39         Color c = new Color(60,150,000);
40         return c;
41     }
42 
43     public static int glvl(){
44         ////// this number +-2 is the levels you will meet
45         return 2;
46     }
47     public static int[] mobids(){
48         ///////mob #s: 1   2   3   4   5   6
49         int[] mids = {000,000,000,000,000,000};
50         return mids;
51     }
52 
53     //Custom Coordinate specific room behaviour
54     public static void dothing(int Xinroom,int Yinroom) {
55         if (Xinroom == 1 && Yinroom == 1) {
56             
57         }
58     }
59 }
60