Skip to main content

Charlie 1

Based on game build 714014 | Last updated: 2026-02-28

Overview

This file defines a static map layout in Tiled JSON-compatible format for Charlie's first phase encounter. It specifies a 20x20 tile grid with 16x16 pixel tiles, using a single tileset (tiles.png). The layout contains a background tile layer (BG_TILES) with specific tile IDs placed at fixed coordinates and an object group (FG_OBJECTS) containing a single object marked as type charlie_stage_post, likely used as a positional anchor for boss mechanics or visual effects. As a static layout file, it is consumed during world generation to instantiate a predefined geometry without dynamic runtime behavior.

Usage example

Static layout files like this one are loaded automatically by the world generation system and are not directly instantiated as components in Lua code. However, the game engine references such files via static layout loaders (e.g., static_layouts.lua or archive_worldgen.lua). The structure conforming to this file might be referenced in a task or level configuration as:

local layout = require "map/static_layouts/charlie_1"
-- The layout data is processed internally by the map loader to spawn tiles and objects
-- No direct Lua component interaction is performed on this file at runtime

Dependencies & tags

Components used: None — this is a pure data file, not a Lua component.

Tags: None identified.

Properties

PropertyTypeDefault ValueDescription
versionstring"1.1"Tiled format version
luaversionstring"5.1"Target Lua version (for compatibility notes)
orientationstring"orthogonal"Map rendering orientation
widthinteger20Map width in tiles
heightinteger20Map height in tiles
tilewidthinteger16Pixel width of each tile
tileheightinteger16Pixel height of each tile
propertiestable{}Map-level custom properties (unused here)
tilesetstable(see source)Tileset definitions, including image path and tile dimensions
layerstable(see source)Layer definitions (BG_TILES and FG_OBJECTS)

Main functions

No functional code exists in this file. It is a data structure only.

Events & listeners

No events or listeners are associated with this file.