Skip to content

Commit 414b837

Browse files
committed
Invisible tiles
1 parent ea4b64f commit 414b837

File tree

280 files changed

+167513
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

280 files changed

+167513
-0
lines changed

Diff for: Projects/Base/Data/RoboTile/Invisable.lua

+31
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
local type = t:type(0,0)
2+
local bts = t:bts(0,0)
3+
local gfx = t:gfx_tile(0,0)
4+
5+
-- door caps
6+
if (gfx <= 0x43) or (gfx >= 0x60 and gfx <= 0x63) then
7+
return true
8+
end
9+
10+
-- door tubes
11+
if gfx == 0x82 or gfx == 0x83 or gfx == 0x84 or gfx == 0xA2 then
12+
return true
13+
end
14+
15+
-- vileplumes
16+
if (gfx >= 0x3B8 and gfx <= 0x3BF) or (gfx >= 0x3D8 and gfx <= 0x3DF) then
17+
return true
18+
end
19+
20+
-- save station
21+
if (gfx >= 0x59 and gfx <= 0x5C) then
22+
return true
23+
end
24+
25+
-- refill stations
26+
if gfx == 0xA1 or (gfx >= 0xA3 and gfx <= 0xA9) or (gfx >= 0xC1 and gfx <= 0xC9) then
27+
return true
28+
end
29+
30+
t:set_gfx(0x0FF, false, false)
31+
return true

Diff for: Projects/Base/Data/RoboTile/Invisable.xml

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
<RoboTileSet>
2+
<Script Name="fill" Priority="0">
3+
require("invisable")
4+
</Script>
5+
</RoboTileSet>

Diff for: Projects/Base/Export/Tileset/SCE/0D/16x16tiles.ttb

0 Bytes
Binary file not shown.

Diff for: Projects/Invisable/ASM

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
../Base/ASM

Diff for: Projects/Invisable/Data/RoboTile/Common.lua

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
../../../Base/Data/RoboTile/Common.lua

Diff for: Projects/Invisable/Data/RoboTile/Invisable.lua

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
../../../Base/Data/RoboTile/Invisable.lua

Diff for: Projects/Invisable/Data/RoboTile/Invisable.xml

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
../../../Base/Data/RoboTile/Invisable.xml

Diff for: Projects/Invisable/Data/Tileset

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
../../Base/Data/Tileset

Diff for: Projects/Invisable/Export/Demos

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
../../Base/Export/Demos

Diff for: Projects/Invisable/Export/Ending

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
../../Base/Export/Ending

Diff for: Projects/Invisable/Export/Enemies

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
../../Base/Export/Enemies

Diff for: Projects/Invisable/Export/Hexmaps

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
../../Base/Export/Hexmaps

Diff for: Projects/Invisable/Export/Intro

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
../../Base/Export/Intro

Diff for: Projects/Invisable/Export/Maps

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
../../Base/Export/Maps

Diff for: Projects/Invisable/Export/MessageBoxes.xml

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
../../Base/Export/MessageBoxes.xml

Diff for: Projects/Invisable/Export/Music

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
../../Base/Export/Music

0 commit comments

Comments
 (0)