This commit is contained in:
2025-12-30 23:48:51 +01:00
parent a072fd48b1
commit 190d45edfa
399 changed files with 3914 additions and 1 deletions

View File

@@ -0,0 +1,41 @@
<? xml version = "1.0" encoding = "UTF-8" ?>
<tileset version="1.10" tiledversion="1.10.2" name="crops_demo" tilewidth="64" tileheight="64" tilecount="5" columns="0">
<grid orientation="orthogonal" width="1" height="1" />
<tile id="0">
<image width="64" height="64" source="../../assets/images/demo/crops/wheat_stage0_styleA.png" />
<properties>
<property name="crop_type" value="wheat" />
<property name="growth_stage" type="int" value="0" />
<property name="growth_time" type="int" value="2000" />
</properties>
</tile>
<tile id="1">
<image width="64" height="64" source="../../assets/images/demo/crops/wheat_stage1_styleA.png" />
<properties>
<property name="crop_type" value="wheat" />
<property name="growth_stage" type="int" value="1" />
</properties>
</tile>
<tile id="2">
<image width="64" height="64" source="../../assets/images/demo/crops/wheat_stage2_styleA.png" />
<properties>
<property name="crop_type" value="wheat" />
<property name="growth_stage" type="int" value="2" />
</properties>
</tile>
<tile id="3">
<image width="64" height="64" source="../../assets/images/demo/crops/wheat_stage3_styleA.png" />
<properties>
<property name="crop_type" value="wheat" />
<property name="growth_stage" type="int" value="3" />
</properties>
</tile>
<tile id="4">
<image width="64" height="64" source="../../assets/images/demo/crops/wheat_stage4_styleA.png" />
<properties>
<property name="crop_type" value="wheat" />
<property name="growth_stage" type="int" value="4" />
<property name="harvestable" type="bool" value="true" />
</properties>
</tile>
</tileset>

View File

@@ -0,0 +1,35 @@
<? xml version = "1.0" encoding = "UTF-8" ?>
<tileset version="1.10" tiledversion="1.10.2" name="objects_demo" tilewidth="64" tileheight="96" tilecount="4" columns="0">
<grid orientation="orthogonal" width="1" height="1" />
<tile id="0">
<image width="64" height="64" source="../../assets/images/demo/buildings/tent_styleA.png" />
<properties>
<property name="building_type" value="tent" />
<property name="collision" type="bool" value="true" />
<property name="interactable" type="bool" value="false" />
</properties>
</tile>
<tile id="1">
<image width="64" height="64" source="../../assets/images/demo/environment/campfire_styleA.png" />
<properties>
<property name="decoration_type" value="campfire" />
<property name="animated" type="bool" value="true" />
<property name="light_radius" type="int" value="128" />
</properties>
</tile>
<tile id="2">
<image width="64" height="96" source="../../assets/images/demo/environment/dead_tree_styleA.png" />
<properties>
<property name="decoration_type" value="tree" />
<property name="collision" type="bool" value="true" />
<property name="height" type="int" value="96" />
</properties>
</tile>
<tile id="3">
<image width="48" height="32" source="../../assets/images/demo/environment/rock_styleA.png" />
<properties>
<property name="decoration_type" value="rock" />
<property name="collision" type="bool" value="true" />
</properties>
</tile>
</tileset>

View File

@@ -0,0 +1,24 @@
<? xml version = "1.0" encoding = "UTF-8" ?>
<tileset version="1.10" tiledversion="1.10.2" name="terrain_demo" tilewidth="64" tileheight="64" tilecount="4" columns="0">
<grid orientation="orthogonal" width="1" height="1" />
<tile id="0">
<image width="64" height="64" source="../../assets/images/demo/terrain/grass_tile_styleA.png" />
</tile>
<tile id="1">
<image width="64" height="64" source="../../assets/images/demo/terrain/dirt_tile_styleA.png" />
</tile>
<tile id="2">
<image width="64" height="64" source="../../assets/images/demo/terrain/tilled_dry_styleA.png" />
<properties>
<property name="farmable" type="bool" value="true" />
<property name="watered" type="bool" value="false" />
</properties>
</tile>
<tile id="3">
<image width="64" height="64" source="../../assets/images/demo/terrain/tilled_watered_styleA.png" />
<properties>
<property name="farmable" type="bool" value="true" />
<property name="watered" type="bool" value="true" />
</properties>
</tile>
</tileset>