Example #1
0
 public MazeTile()
 {
     TileType = TileTypes.go;
     GoWhere  = new GoWhereScript(typeof(SouthValleyMazeScript), 5, 2);
     TileText = "进入南林秘境";
 }
Example #2
0
 public TestMapDoorTile()
 {
     TileType = TileTypes.go;
     GoWhere  = new GoWhereScript(typeof(TestMapScript), 2, 6);
     TileText = "这里去往南谷外广场";
 }
Example #3
0
 public SouthernDoorTile()
 {
     TileType = TileTypes.go;
     GoWhere  = new GoWhereScript(typeof(SwordSouthValleyMapScript), 2, 6);
     TileText = "这里是天剑宗南谷入口,由此进入天剑宗南谷镇";
 }
Example #4
0
 public override void TileEvent()
 {
     GoWhere = new GoWhereScript(InWhere.GetType(), InWhere.Tiles[1].Loc.TileX, InWhere.Tiles[1].Loc.TileY - 1);
     base.TileEvent();
 }