Big tile PR (3 carpets, 4 red sands, 1 grass, 5 shuttle floors) (#6864)

This commit is contained in:
Peptide90
2022-02-27 07:01:48 +00:00
committed by GitHub
parent 7d9c7e46ab
commit fc667f8f44
27 changed files with 413 additions and 1 deletions

View File

@@ -329,6 +329,136 @@
- plating - plating
- floor_laundry - floor_laundry
# Carpets
- type: entity
name: blue arcade floor
parent: FloorTileItemBase
id: FloorTileItemArcadeBlue
components:
- type: Sprite
state: arcadeblue
- type: Item
HeldPrefix: arcadeblue
- type: FloorTile
outputs:
- plating
- FloorArcadeBlue
- type: Stack
stackType: FloorTileStackArcadeBlue
- type: entity
name: red arcade floor
parent: FloorTileItemBase
id: FloorTileItemArcadeRed
components:
- type: Sprite
state: arcadered
- type: Item
HeldPrefix: arcadered
- type: FloorTile
outputs:
- plating
- FloorArcadeRed
- type: Stack
stackType: FloorTileStackArcadeRed
- type: entity
name: eighties floor
parent: FloorTileItemBase
id: FloorTileItemEighties
components:
- type: Sprite
state: eighties
- type: Item
HeldPrefix: eighties
- type: FloorTile
outputs:
- plating
- FloorEighties
- type: Stack
stackType: FloorTileStackEighties
# Shuttles
- type: entity
name: white shuttle floor
parent: FloorTileItemBase
id: FloorTileItemShuttleWhite
components:
- type: Sprite
state: shuttlewhite
- type: Item
HeldPrefix: shuttlewhite
- type: FloorTile
outputs:
- plating
- FloorShuttleWhite
- type: Stack
stackType: FloorTileStackShuttleWhite
- type: entity
name: blue shuttle floor
parent: FloorTileItemBase
id: FloorTileItemShuttleBlue
components:
- type: Sprite
state: shuttleblue
- type: Item
HeldPrefix: shuttleblue
- type: FloorTile
outputs:
- plating
- FloorShuttleBlue
- type: Stack
stackType: FloorTileStackShuttleBlue
- type: entity
name: orange shuttle floor
parent: FloorTileItemBase
id: FloorTileItemShuttleOrange
components:
- type: Sprite
state: shuttleorange
- type: Item
HeldPrefix: shuttleorange
- type: FloorTile
outputs:
- plating
- FloorShuttleOrange
- type: Stack
stackType: FloorTileStackShuttleOrange
- type: entity
name: purple shuttle floor
parent: FloorTileItemBase
id: FloorTileItemShuttlePurple
components:
- type: Sprite
state: shuttlepurple
- type: Item
HeldPrefix: shuttlepurple
- type: FloorTile
outputs:
- plating
- FloorShuttlePurple
- type: Stack
stackType: FloorTileStackShuttlePurple
- type: entity
name: red shuttle floor
parent: FloorTileItemBase
id: FloorTileItemShuttleRed
components:
- type: Sprite
state: shuttlered
- type: Item
HeldPrefix: shuttlered
- type: FloorTile
outputs:
- plating
- FloorShuttleRed
- type: Stack
stackType: FloorTileStackShuttleRed
# Materials # Materials
- type: entity - type: entity
name: gold floor name: gold floor
@@ -404,6 +534,20 @@
- plating - plating
- floor_grass - floor_grass
- type: entity
name: jungle grass tile
parent: FloorTileItemBase
id: FloorTileItemGrassJungle
components:
- type: Sprite
state: grassjungle
- type: Item
HeldPrefix: grassjungle
- type: FloorTile
outputs:
- plating
- FloorGrassJungle
- type: entity - type: entity
name: snow tile name: snow tile
parent: FloorTileItemBase parent: FloorTileItemBase

View File

@@ -67,3 +67,43 @@
id: FloorTileDirty id: FloorTileDirty
name: dirty tile name: dirty tile
spawn: FloorTileItemDirty spawn: FloorTileItemDirty
- type: stack
id: FloorTileStackShuttleWhite
name: white shuttle tile
spawn: FloorTileItemShuttleWhite
- type: stack
id: FloorTileStackShuttleBlue
name: blue shuttle tile
spawn: FloorTileItemShuttleBlue
- type: stack
id: FloorTileStackShuttleOrange
name: orange shuttle tile
spawn: FloorTileItemShuttleOrange
- type: stack
id: FloorTileStackShuttlePurple
name: purple shuttle tile
spawn: FloorTileItemShuttlePurple
- type: stack
id: FloorTileStackShuttleRed
name: red shuttle tile
spawn: FloorTileItemShuttleRed
- type: stack
id: FloorTileStackEighties
name: eighties floor tile
spawn: FloorTileItemEighties
- type: stack
id: FloorTileStackArcadeBlue
name: blue arcade tile
spawn: FloorTileItemArcadeBlue
- type: stack
id: FloorTileStackArcadeRed
name: red arcade tile
spawn: FloorTileItemArcadeRed

View File

@@ -299,6 +299,129 @@
thermalConductivity: 0.04 thermalConductivity: 0.04
heatCapacity: 10000 heatCapacity: 10000
# Carpets (non smoothing)
- type: tile
id: FloorArcadeBlue
name: blue arcade floor
texture: arcadeblue
base_turfs:
- plating
is_subfloor: false
can_crowbar: true
footstep_sounds:
collection: footstep_floor
friction: 0.40
item_drop: FloorTileItemArcadeBlue
thermalConductivity: 0.04
heatCapacity: 10000
- type: tile
id: FloorArcadeRed
name: red arcade floor
texture: arcadered
base_turfs:
- plating
is_subfloor: false
can_crowbar: true
footstep_sounds:
collection: footstep_floor
friction: 0.40
item_drop: FloorTileItemArcadeRed
thermalConductivity: 0.04
heatCapacity: 10000
- type: tile
id: FloorEighties
name: eighties floor
texture: eighties
base_turfs:
- plating
is_subfloor: false
can_crowbar: true
footstep_sounds:
collection: footstep_floor
friction: 0.40
item_drop: FloorTileItemEighties
thermalConductivity: 0.04
heatCapacity: 10000
# Shuttle
- type: tile
id: FloorShuttleWhite
name: white shuttle floor
texture: shuttlewhite
base_turfs:
- plating
is_subfloor: false
can_crowbar: true
footstep_sounds:
collection: footstep_floor
friction: 0.30
item_drop: FloorTileItemShuttleWhite
thermalConductivity: 0.04
heatCapacity: 10000
- type: tile
id: FloorShuttleBlue
name: blue shuttle floor
texture: shuttleblue
base_turfs:
- plating
is_subfloor: false
can_crowbar: true
footstep_sounds:
collection: footstep_floor
friction: 0.30
item_drop: FloorTileItemShuttleBlue
thermalConductivity: 0.04
heatCapacity: 10000
- type: tile
id: FloorShuttleOrange
name: orange shuttle floor
texture: shuttleorange
base_turfs:
- plating
is_subfloor: false
can_crowbar: true
footstep_sounds:
collection: footstep_floor
friction: 0.30
item_drop: FloorTileItemShuttleOrange
thermalConductivity: 0.04
heatCapacity: 10000
- type: tile
id: FloorShuttlePurple
name: purple shuttle floor
texture: shuttlepurple
base_turfs:
- plating
is_subfloor: false
can_crowbar: true
footstep_sounds:
collection: footstep_floor
friction: 0.30
item_drop: FloorTileItemShuttlePurple
thermalConductivity: 0.04
heatCapacity: 10000
- type: tile
id: FloorShuttleRed
name: red shuttle floor
texture: shuttlered
base_turfs:
- plating
is_subfloor: false
can_crowbar: true
footstep_sounds:
collection: footstep_floor
friction: 0.30
item_drop: FloorTileItemShuttleRed
thermalConductivity: 0.04
heatCapacity: 10000
# Materials # Materials
- type: tile - type: tile
id: floor_gold id: floor_gold
@@ -422,6 +545,21 @@
thermalConductivity: 0.04 thermalConductivity: 0.04
heatCapacity: 10000 heatCapacity: 10000
- type: tile
id: FloorGrassJungle
name: jungle grass floor
texture: grassjungle
base_turfs:
- plating
is_subfloor: false
can_crowbar: true
footstep_sounds:
collection: footstep_floor
friction: 0.30
item_drop: FloorTileItemGrassJungle
thermalConductivity: 0.04
heatCapacity: 10000
# Asteroid # Asteroid
- type: tile - type: tile
id: floor_asteroid_sand id: floor_asteroid_sand
@@ -506,3 +644,60 @@
friction: 0.30 friction: 0.30
thermalConductivity: 0.04 thermalConductivity: 0.04
heatCapacity: 10000 heatCapacity: 10000
- type: tile
id: FloorAsteroidIronsand1
name: asteroid ironsand
texture: ironsand1
base_turfs:
- space
is_subfloor: false
can_crowbar: false
footstep_sounds:
collection: footstep_asteroid
friction: 0.30
thermalConductivity: 0.04
heatCapacity: 10000
- type: tile
id: FloorAsteroidIronsand2
name: asteroid ironsand pebbles
texture: ironsand2
base_turfs:
- space
is_subfloor: false
can_crowbar: false
footstep_sounds:
collection: footstep_asteroid
friction: 0.30
thermalConductivity: 0.04
heatCapacity: 10000
- type: tile
id: FloorAsteroidIronsand3
name: asteroid ironsand pebbles 2
texture: ironsand3
base_turfs:
- space
is_subfloor: false
can_crowbar: false
footstep_sounds:
collection: footstep_asteroid
friction: 0.30
thermalConductivity: 0.04
heatCapacity: 10000
- type: tile
id: FloorAsteroidIronsand4
name: asteroid ironsand rock
texture: ironsand4
base_turfs:
- space
is_subfloor: false
can_crowbar: false
footstep_sounds:
collection: footstep_asteroid
friction: 0.30
thermalConductivity: 0.04
heatCapacity: 10000

Binary file not shown.

After

Width:  |  Height:  |  Size: 359 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 396 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 424 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 778 B

View File

@@ -1,7 +1,7 @@
{ {
"version": 1, "version": 1,
"license": "CC-BY-SA-3.0", "license": "CC-BY-SA-3.0",
"copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c6e3401f2e7e1e55c57060cdf956a98ef1fefc24", "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c6e3401f2e7e1e55c57060cdf956a98ef1fefc24, additional copyrights see tiles folder.",
"size": { "size": {
"x": 32, "x": 32,
"y": 32 "y": 32
@@ -28,6 +28,9 @@
{ {
"name": "grass" "name": "grass"
}, },
{
"name": "grassjungle"
},
{ {
"name": "kitchen" "name": "kitchen"
}, },
@@ -103,6 +106,30 @@
{ {
"name": "wood" "name": "wood"
}, },
{
"name": "arcadeblue"
},
{
"name": "arcadered"
},
{
"name": "eighties"
},
{
"name": "shuttlewhite"
},
{
"name": "shuttleblue"
},
{
"name": "shuttleorange"
},
{
"name": "shuttlepurple"
},
{
"name": "shuttlered"
},
{ {
"name": "bcircuit-inhand-left", "name": "bcircuit-inhand-left",
"directions": 4 "directions": 4

Binary file not shown.

After

Width:  |  Height:  |  Size: 272 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 284 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 286 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 200 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 218 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 491 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 534 B

View File

@@ -6,3 +6,9 @@ bar.png, laundry.png, mime.png, clown.png and kitchen.png are under CC-BY-SA-3.0
snow.png taken from TG at commit 67a5373b4649937dd63dd94153e05e8506f40a5d snow.png taken from TG at commit 67a5373b4649937dd63dd94153e05e8506f40a5d
grass.png taken from TG at commit 73a638214c94da9b8c485f1c75f615cb79770883 grass.png taken from TG at commit 73a638214c94da9b8c485f1c75f615cb79770883
reinforced.png taken from /tg/ at commit https://github.com/tgstation/tgstation/commit/4e2a36fe7e56fad93495adf01c697f4b5de04e90, licensed under CC-BY-SA-3.0 reinforced.png taken from /tg/ at commit https://github.com/tgstation/tgstation/commit/4e2a36fe7e56fad93495adf01c697f4b5de04e90, licensed under CC-BY-SA-3.0
ironsand1-4, junglegrass, eightiesred and eighties taken from TG station at https://github.com/tgstation/tgstation/commit/8abb19545828230d92ba18827feeb42a67a55d49
arcadeblue edited by Peptide90 based on eightiestred from TG.
shuttleblue, orange, purple, red and white taken from ParadiseSS13 at https://github.com/ParadiseSS13/Paradise/commit/69c831afcd9aef25a2889b507e4f36a3a5fc6def

Binary file not shown.

After

Width:  |  Height:  |  Size: 475 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 297 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 442 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 469 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 512 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 549 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 252 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 253 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 253 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 237 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 226 B