Adds Checkerboard Tiles, External Hull Plating, Hardened Reinforced Floors, & Monotile Dirty Decal (#18676)

* adds checkered floor tiles, hull tiles, and steel monotile decal

* adds checker floors, hull floors, and dirty steel monotile decal

* adds hardened reinf tiles
This commit is contained in:
Flareguy
2023-08-06 03:27:48 -05:00
committed by GitHub
parent 5c20237cf4
commit 8c256d3960
15 changed files with 124 additions and 2 deletions

View File

@@ -28,6 +28,13 @@
sprite: Decals/dirty.rsi
state: dirtheavy
- type: decal
id: DirtHeavyMonotile
tags: ["station", "dirty"]
sprite:
sprite: Decals/dirty.rsi
state: dirtheavy-mono
- type: decal
id: Damaged
tags: ["station", "dirty"]

View File

@@ -59,6 +59,30 @@
graph: TileSteel
node: steeltile
- type: entity
name: steel dark checker tile
parent: FloorTileItemSteel
id: FloorTileItemSteelCheckerDark
components:
- type: Sprite
state: checker-dark
- type: FloorTile
outputs:
- Plating
- FloorSteelCheckerDark
- type: entity
name: steel light checker tile
parent: FloorTileItemSteel
id: FloorTileItemSteelCheckerLight
components:
- type: Sprite
state: checker-light
- type: FloorTile
outputs:
- Plating
- FloorSteelCheckerLight
- type: entity
name: steel tile
parent: FloorTileItemBase

View File

@@ -12,6 +12,34 @@
itemDrop: FloorTileItemSteel
heatCapacity: 10000
- type: tile
id: FloorSteelCheckerLight
name: tiles-steel-floor-checker-light
sprite: /Textures/Tiles/cafeteria.png
variants: 4
placementVariants: [0, 1, 2, 3]
baseTurf: Plating
isSubfloor: false
canCrowbar: true
footstepSounds:
collection: FootstepFloor
itemDrop: FloorTileItemSteelCheckerLight
heatCapacity: 10000
- type: tile
id: FloorSteelCheckerDark
name: tiles-steel-floor-checker-dark
sprite: /Textures/Tiles/checker_dark.png
variants: 4
placementVariants: [0, 1, 2, 3]
baseTurf: Plating
isSubfloor: false
canCrowbar: true
footstepSounds:
collection: FootstepFloor
itemDrop: FloorTileItemSteelCheckerDark
heatCapacity: 10000
- type: tile
id: FloorSteelMini
name: tiles-steel-floor-mini
@@ -1181,3 +1209,42 @@
collection: BarestepWood
itemDrop: MaterialWoodPlank1
heatCapacity: 10000
#Hull tiles
- type: tile
id: FloorHull
name: tiles-hull
sprite: /Textures/Tiles/hull.png
baseTurf: Plating
isSubfloor: false
canCrowbar: false
canAxe: false #You can't RCD these in SS13 apparently, so this is probably the next best thing
footstepSounds:
collection: FootstepHull
itemDrop: FloorTileItemSteel #probably should not be normally obtainable, but the game shits itself and dies when you try to put null here
heatCapacity: 10000
- type: tile
id: FloorHullReinforced
name: tiles-hull-reinforced
sprite: /Textures/Tiles/hull_reinforced.png
baseTurf: Plating
isSubfloor: false
canCrowbar: false
canAxe: false #You can't RCD these in SS13 apparently, so this is probably the next best thing
footstepSounds:
collection: FootstepHull
itemDrop: FloorTileItemSteel
heatCapacity: 100000 #/tg/ has this set as "INFINITY." I don't know if that exists here so I've just added an extra 0
- type: tile
id: FloorReinforcedHardened
name: tiles-super-reinforced-floor
sprite: /Textures/Tiles/super_reinforced.png
baseTurf: Plating
isSubfloor: false
canCrowbar: false
canAxe: false
footstepSounds:
collection: FootstepHull
itemDrop: FloorTileItemReinforced #same case as FloorHull