Skip to content
This repository was archived by the owner on Jun 8, 2018. It is now read-only.

Commit 51ada24

Browse files
committed
Dungeon 14
1 parent 8a3949a commit 51ada24

8 files changed

Lines changed: 7184 additions & 1 deletion

File tree

data/maps/dungeons/14/1f.dat

Lines changed: 5344 additions & 0 deletions
Large diffs are not rendered by default.

data/maps/dungeons/14/1f.lua

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
-- Lua script of map dungeons/14/1f.
2+
-- This script is executed every time the hero enters this map.
3+
4+
-- Feel free to modify the code below.
5+
-- You can add more events and remove the ones you don't need.
6+
7+
-- See the Solarus Lua API documentation:
8+
-- http://www.solarus-games.org/doc/latest
9+
10+
local map = ...
11+
local game = map:get_game()
12+
13+
-- Event called at initialization time, as soon as this map is loaded.
14+
function map:on_started()
15+
16+
-- You can initialize the movement and sprites of various
17+
-- map entities here.
18+
end
19+
20+
-- Event called after the opening transition effect of the map,
21+
-- that is, when the player takes control of the hero.
22+
function map:on_opening_transition_finished()
23+
24+
end

0 commit comments

Comments
 (0)