It's Cow Game! Version 2.04!
18
Items/Artificial/Goo/BouncyGoo.gd
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
extends Item
|
||||
|
||||
func initialize_stats():
|
||||
itemName = "Bouncy Goo"
|
||||
itemDescription = "boing boing boing boing gloop glomp boing boing glomp
|
||||
gloomp boing boing boing boing glorp boing boing boing glep boing boing glomp."
|
||||
itemSprite = load("res://Items/Artificial/Goo/Sprites/BouncyGoo.png")
|
||||
|
||||
value = 3
|
||||
weight = 0.7
|
||||
|
||||
hardness = 4
|
||||
edibility = 2
|
||||
|
||||
basketPower = 0
|
||||
basketabilityDifficulty = 90
|
||||
|
||||
flammability = 100
|
||||
BIN
Items/Artificial/Goo/Sprites/BouncyGoo.png
Normal file
|
After Width: | Height: | Size: 324 B |
34
Items/Artificial/Goo/Sprites/BouncyGoo.png.import
Normal file
|
|
@ -0,0 +1,34 @@
|
|||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://voqpmgs3ox4"
|
||||
path="res://.godot/imported/BouncyGoo.png-bd8ab7874574046d53c7a8f00e305b86.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://Items/Artificial/Goo/Sprites/BouncyGoo.png"
|
||||
dest_files=["res://.godot/imported/BouncyGoo.png-bd8ab7874574046d53c7a8f00e305b86.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=0
|
||||
compress/high_quality=false
|
||||
compress/lossy_quality=0.7
|
||||
compress/hdr_compression=1
|
||||
compress/normal_map=0
|
||||
compress/channel_pack=0
|
||||
mipmaps/generate=false
|
||||
mipmaps/limit=-1
|
||||
roughness/mode=0
|
||||
roughness/src_normal=""
|
||||
process/fix_alpha_border=true
|
||||
process/premult_alpha=false
|
||||
process/normal_map_invert_y=false
|
||||
process/hdr_as_srgb=false
|
||||
process/hdr_clamp_exposure=false
|
||||
process/size_limit=0
|
||||
detect_3d/compress_to=1
|
||||
BIN
Items/Artificial/Goo/Sprites/StickyGoo.png
Normal file
|
After Width: | Height: | Size: 320 B |
34
Items/Artificial/Goo/Sprites/StickyGoo.png.import
Normal file
|
|
@ -0,0 +1,34 @@
|
|||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://c3frwltsgy55o"
|
||||
path="res://.godot/imported/StickyGoo.png-d916e3b40fe0f6a6910dc9c509b72f8f.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://Items/Artificial/Goo/Sprites/StickyGoo.png"
|
||||
dest_files=["res://.godot/imported/StickyGoo.png-d916e3b40fe0f6a6910dc9c509b72f8f.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=0
|
||||
compress/high_quality=false
|
||||
compress/lossy_quality=0.7
|
||||
compress/hdr_compression=1
|
||||
compress/normal_map=0
|
||||
compress/channel_pack=0
|
||||
mipmaps/generate=false
|
||||
mipmaps/limit=-1
|
||||
roughness/mode=0
|
||||
roughness/src_normal=""
|
||||
process/fix_alpha_border=true
|
||||
process/premult_alpha=false
|
||||
process/normal_map_invert_y=false
|
||||
process/hdr_as_srgb=false
|
||||
process/hdr_clamp_exposure=false
|
||||
process/size_limit=0
|
||||
detect_3d/compress_to=1
|
||||
17
Items/Artificial/Goo/StickyGoo.gd
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
extends Item
|
||||
|
||||
func initialize_stats():
|
||||
itemName = "Sticky Goo"
|
||||
itemDescription = "Goo. Not ooze, not goop, sticky goo."
|
||||
itemSprite = load("res://Items/Artificial/Goo/Sprites/StickyGoo.png")
|
||||
|
||||
value = 3
|
||||
weight = 0.7
|
||||
|
||||
hardness = 4
|
||||
edibility = 2
|
||||
|
||||
basketPower = 80
|
||||
basketabilityDifficulty = 90
|
||||
|
||||
flammability = 100
|
||||
17
Items/Artificial/Industrial/ExplosiveBarrel.gd
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
extends Item
|
||||
|
||||
func initialize_stats():
|
||||
itemName = "Explosive Barrel"
|
||||
itemDescription = "Contains fire"
|
||||
itemSprite = load("res://Items/Artificial/Industrial/Sprites/ExplosiveBarrel.png")
|
||||
|
||||
value = 30
|
||||
weight = 80
|
||||
|
||||
hardness = 70
|
||||
edibility = -10
|
||||
|
||||
basketPower = 30
|
||||
basketabilityDifficulty = 5
|
||||
|
||||
flammability = 170
|
||||
20
Items/Artificial/Industrial/Gasoline.gd
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
extends Item
|
||||
|
||||
func initialize_stats():
|
||||
itemName = "Gasoline"
|
||||
itemDescription = "A yummy rainbow liquid. note: kids please do not drink gasoline in real life for legal reasons and also probably health reasons thanks"
|
||||
itemSprite = load("res://Items/Artificial/Industrial/Sprites/Gasoline.png")
|
||||
|
||||
value = 4
|
||||
weight = 2
|
||||
|
||||
hardness = 1
|
||||
edibility = -15
|
||||
|
||||
basketPower = 100
|
||||
basketabilityDifficulty = 99
|
||||
|
||||
flammability = 99
|
||||
|
||||
itemTypes.append(types.Juice)
|
||||
itemTypes.append(types.Reformable)
|
||||
17
Items/Artificial/Industrial/Gear.gd
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
extends Item
|
||||
|
||||
func initialize_stats():
|
||||
itemName = "Gear"
|
||||
itemDescription = "Once belonged to a metal snake"
|
||||
itemSprite = load("res://Items/Artificial/Industrial/Sprites/Gear.png")
|
||||
|
||||
value = 31
|
||||
weight = 35
|
||||
|
||||
hardness = 95
|
||||
edibility = 3
|
||||
|
||||
basketPower = 90
|
||||
basketabilityDifficulty = 80
|
||||
|
||||
flammability = 5
|
||||
17
Items/Artificial/Industrial/IronIngot.gd
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
extends Item
|
||||
|
||||
func initialize_stats():
|
||||
itemName = "Iron Ingot"
|
||||
itemDescription = "A popular ingredient in Iron Ingot Juice"
|
||||
itemSprite = load("res://Items/Artificial/Industrial/Sprites/IronIngot.png")
|
||||
|
||||
value = 38
|
||||
weight = 8
|
||||
|
||||
hardness = 95
|
||||
edibility = -20
|
||||
|
||||
basketPower = 95
|
||||
basketabilityDifficulty = 90
|
||||
|
||||
flammability = 5
|
||||
17
Items/Artificial/Industrial/Pipe.gd
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
extends Item
|
||||
|
||||
func initialize_stats():
|
||||
itemName = "Pipe"
|
||||
itemDescription = "Wonderous beauty please share with us all please"
|
||||
itemSprite = load("res://Items/Artificial/Industrial/Sprites/Pipe.png")
|
||||
|
||||
value = 40
|
||||
weight = 12
|
||||
|
||||
hardness = 92
|
||||
edibility = 9
|
||||
|
||||
basketPower = 90
|
||||
basketabilityDifficulty = 60
|
||||
|
||||
flammability = 18
|
||||
BIN
Items/Artificial/Industrial/Sprites/ExplosiveBarrel.png
Normal file
|
After Width: | Height: | Size: 494 B |
|
|
@ -0,0 +1,34 @@
|
|||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://m33j5qnmllmw"
|
||||
path="res://.godot/imported/ExplosiveBarrel.png-fe1843205ebebb4ed929273adb00248e.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://Items/Artificial/Industrial/Sprites/ExplosiveBarrel.png"
|
||||
dest_files=["res://.godot/imported/ExplosiveBarrel.png-fe1843205ebebb4ed929273adb00248e.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=0
|
||||
compress/high_quality=false
|
||||
compress/lossy_quality=0.7
|
||||
compress/hdr_compression=1
|
||||
compress/normal_map=0
|
||||
compress/channel_pack=0
|
||||
mipmaps/generate=false
|
||||
mipmaps/limit=-1
|
||||
roughness/mode=0
|
||||
roughness/src_normal=""
|
||||
process/fix_alpha_border=true
|
||||
process/premult_alpha=false
|
||||
process/normal_map_invert_y=false
|
||||
process/hdr_as_srgb=false
|
||||
process/hdr_clamp_exposure=false
|
||||
process/size_limit=0
|
||||
detect_3d/compress_to=1
|
||||
BIN
Items/Artificial/Industrial/Sprites/Gasoline.png
Normal file
|
After Width: | Height: | Size: 812 B |
34
Items/Artificial/Industrial/Sprites/Gasoline.png.import
Normal file
|
|
@ -0,0 +1,34 @@
|
|||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://bjkkw5kwsnae8"
|
||||
path="res://.godot/imported/Gasoline.png-6c34fe3727fc4912a4bd0d1307964ce7.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://Items/Artificial/Industrial/Sprites/Gasoline.png"
|
||||
dest_files=["res://.godot/imported/Gasoline.png-6c34fe3727fc4912a4bd0d1307964ce7.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=0
|
||||
compress/high_quality=false
|
||||
compress/lossy_quality=0.7
|
||||
compress/hdr_compression=1
|
||||
compress/normal_map=0
|
||||
compress/channel_pack=0
|
||||
mipmaps/generate=false
|
||||
mipmaps/limit=-1
|
||||
roughness/mode=0
|
||||
roughness/src_normal=""
|
||||
process/fix_alpha_border=true
|
||||
process/premult_alpha=false
|
||||
process/normal_map_invert_y=false
|
||||
process/hdr_as_srgb=false
|
||||
process/hdr_clamp_exposure=false
|
||||
process/size_limit=0
|
||||
detect_3d/compress_to=1
|
||||
BIN
Items/Artificial/Industrial/Sprites/Gear.png
Normal file
|
After Width: | Height: | Size: 455 B |
34
Items/Artificial/Industrial/Sprites/Gear.png.import
Normal file
|
|
@ -0,0 +1,34 @@
|
|||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://c8ax76qneexxm"
|
||||
path="res://.godot/imported/Gear.png-bcc20d751edc445e11db31c16572a88c.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://Items/Artificial/Industrial/Sprites/Gear.png"
|
||||
dest_files=["res://.godot/imported/Gear.png-bcc20d751edc445e11db31c16572a88c.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=0
|
||||
compress/high_quality=false
|
||||
compress/lossy_quality=0.7
|
||||
compress/hdr_compression=1
|
||||
compress/normal_map=0
|
||||
compress/channel_pack=0
|
||||
mipmaps/generate=false
|
||||
mipmaps/limit=-1
|
||||
roughness/mode=0
|
||||
roughness/src_normal=""
|
||||
process/fix_alpha_border=true
|
||||
process/premult_alpha=false
|
||||
process/normal_map_invert_y=false
|
||||
process/hdr_as_srgb=false
|
||||
process/hdr_clamp_exposure=false
|
||||
process/size_limit=0
|
||||
detect_3d/compress_to=1
|
||||
BIN
Items/Artificial/Industrial/Sprites/IronIngot.png
Normal file
|
After Width: | Height: | Size: 231 B |
34
Items/Artificial/Industrial/Sprites/IronIngot.png.import
Normal file
|
|
@ -0,0 +1,34 @@
|
|||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://bcitdxldmbhvy"
|
||||
path="res://.godot/imported/IronIngot.png-5912fa3dc195b385be4dffbca3624819.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://Items/Artificial/Industrial/Sprites/IronIngot.png"
|
||||
dest_files=["res://.godot/imported/IronIngot.png-5912fa3dc195b385be4dffbca3624819.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=0
|
||||
compress/high_quality=false
|
||||
compress/lossy_quality=0.7
|
||||
compress/hdr_compression=1
|
||||
compress/normal_map=0
|
||||
compress/channel_pack=0
|
||||
mipmaps/generate=false
|
||||
mipmaps/limit=-1
|
||||
roughness/mode=0
|
||||
roughness/src_normal=""
|
||||
process/fix_alpha_border=true
|
||||
process/premult_alpha=false
|
||||
process/normal_map_invert_y=false
|
||||
process/hdr_as_srgb=false
|
||||
process/hdr_clamp_exposure=false
|
||||
process/size_limit=0
|
||||
detect_3d/compress_to=1
|
||||
BIN
Items/Artificial/Industrial/Sprites/Pipe.png
Normal file
|
After Width: | Height: | Size: 432 B |
34
Items/Artificial/Industrial/Sprites/Pipe.png.import
Normal file
|
|
@ -0,0 +1,34 @@
|
|||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://di58ke5m814b"
|
||||
path="res://.godot/imported/Pipe.png-cb1e7569e001c2a36686e7f81634a24c.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://Items/Artificial/Industrial/Sprites/Pipe.png"
|
||||
dest_files=["res://.godot/imported/Pipe.png-cb1e7569e001c2a36686e7f81634a24c.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=0
|
||||
compress/high_quality=false
|
||||
compress/lossy_quality=0.7
|
||||
compress/hdr_compression=1
|
||||
compress/normal_map=0
|
||||
compress/channel_pack=0
|
||||
mipmaps/generate=false
|
||||
mipmaps/limit=-1
|
||||
roughness/mode=0
|
||||
roughness/src_normal=""
|
||||
process/fix_alpha_border=true
|
||||
process/premult_alpha=false
|
||||
process/normal_map_invert_y=false
|
||||
process/hdr_as_srgb=false
|
||||
process/hdr_clamp_exposure=false
|
||||
process/size_limit=0
|
||||
detect_3d/compress_to=1
|
||||
BIN
Items/Artificial/Industrial/Sprites/Tire.png
Normal file
|
After Width: | Height: | Size: 519 B |
34
Items/Artificial/Industrial/Sprites/Tire.png.import
Normal file
|
|
@ -0,0 +1,34 @@
|
|||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://dqhgsvofxmlx1"
|
||||
path="res://.godot/imported/Tire.png-961b5a0cf9e0a05cf633b2f5df3a3088.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://Items/Artificial/Industrial/Sprites/Tire.png"
|
||||
dest_files=["res://.godot/imported/Tire.png-961b5a0cf9e0a05cf633b2f5df3a3088.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=0
|
||||
compress/high_quality=false
|
||||
compress/lossy_quality=0.7
|
||||
compress/hdr_compression=1
|
||||
compress/normal_map=0
|
||||
compress/channel_pack=0
|
||||
mipmaps/generate=false
|
||||
mipmaps/limit=-1
|
||||
roughness/mode=0
|
||||
roughness/src_normal=""
|
||||
process/fix_alpha_border=true
|
||||
process/premult_alpha=false
|
||||
process/normal_map_invert_y=false
|
||||
process/hdr_as_srgb=false
|
||||
process/hdr_clamp_exposure=false
|
||||
process/size_limit=0
|
||||
detect_3d/compress_to=1
|
||||
17
Items/Artificial/Industrial/Tire.gd
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
extends Item
|
||||
|
||||
func initialize_stats():
|
||||
itemName = "Tire"
|
||||
itemDescription = "Once belonged to a large metal horse"
|
||||
itemSprite = load("res://Items/Artificial/Industrial/Sprites/Tire.png")
|
||||
|
||||
value = 24
|
||||
weight = 30
|
||||
|
||||
hardness = 70
|
||||
edibility = 7
|
||||
|
||||
basketPower = 40
|
||||
basketabilityDifficulty = 20
|
||||
|
||||
flammability = 75
|
||||
17
Items/Artificial/Products/BrassKey.gd
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
extends Item
|
||||
|
||||
func initialize_stats():
|
||||
itemName = "Brass Key"
|
||||
itemDescription = "This key can unlock the knowledge within you."
|
||||
itemSprite = load("res://Items/Artificial/Products/Sprites/Key.png")
|
||||
|
||||
value = 19
|
||||
weight = 2.25
|
||||
|
||||
hardness = 68
|
||||
edibility = 38
|
||||
|
||||
basketPower = 70
|
||||
basketabilityDifficulty = 78
|
||||
|
||||
flammability = -10
|
||||
17
Items/Artificial/Products/DamFireStarter.gd
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
extends Item
|
||||
|
||||
func initialize_stats():
|
||||
itemName = "Dam Fire Starter"
|
||||
itemDescription = "A box of small sticks that help with burning dams."
|
||||
itemSprite = load("res://Items/Artificial/Products/Sprites/DamFireStarter.png")
|
||||
|
||||
value = 25
|
||||
weight = 0.3
|
||||
|
||||
hardness = 25
|
||||
edibility = 0
|
||||
|
||||
basketPower = 20
|
||||
basketabilityDifficulty = 15
|
||||
|
||||
flammability = 100
|
||||
17
Items/Artificial/Products/EmptyKeyPacket.gd
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
extends Item
|
||||
|
||||
func initialize_stats():
|
||||
itemName = "Empty Key Packet"
|
||||
itemDescription = "This packet might have once held a key."
|
||||
itemSprite = load("res://Items/Artificial/Products/Sprites/EmptyKeyPacket.png")
|
||||
|
||||
value = 1
|
||||
weight = 0.1
|
||||
|
||||
hardness = 10
|
||||
edibility = 40
|
||||
|
||||
basketPower = 12
|
||||
basketabilityDifficulty = 16
|
||||
|
||||
flammability = 95
|
||||
17
Items/Artificial/Products/EmptySilicaGelPacket.gd
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
extends Item
|
||||
|
||||
func initialize_stats():
|
||||
itemName = "Empty Silica Gel Packet"
|
||||
itemDescription = "Seems just a little bit less delicious."
|
||||
itemSprite = load("res://Items/Artificial/Products/Sprites/EmptySilicaGelPacket.png")
|
||||
|
||||
value = 18
|
||||
weight = 0.1
|
||||
|
||||
hardness = 10
|
||||
edibility = 40
|
||||
|
||||
basketPower = 12
|
||||
basketabilityDifficulty = 16
|
||||
|
||||
flammability = 95
|
||||
17
Items/Artificial/Products/KeyPacket.gd
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
extends Item
|
||||
|
||||
func initialize_stats():
|
||||
itemName = "Key Packet"
|
||||
itemDescription = "This packet could contain a key."
|
||||
itemSprite = load("res://Items/Artificial/Products/Sprites/KeyPacket.png")
|
||||
|
||||
value = 9
|
||||
weight = 2.35
|
||||
|
||||
hardness = 65
|
||||
edibility = 10
|
||||
|
||||
basketPower = 50
|
||||
basketabilityDifficulty = 40
|
||||
|
||||
flammability = 15
|
||||
17
Items/Artificial/Products/SilicaGel.gd
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
extends Item
|
||||
|
||||
func initialize_stats():
|
||||
itemName = "Silica Gel"
|
||||
itemDescription = "Little clear orbs. A few couldn't hurt... could they? Could make a good juice."
|
||||
itemSprite = load("res://Items/Artificial/Products/Sprites/SilicaGel.png")
|
||||
|
||||
value = 30
|
||||
weight = 0.1
|
||||
|
||||
hardness = 45
|
||||
edibility = -30
|
||||
|
||||
basketPower = 12
|
||||
basketabilityDifficulty = 87
|
||||
|
||||
flammability = 98
|
||||
17
Items/Artificial/Products/SilicaGelPacket.gd
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
extends Item
|
||||
|
||||
func initialize_stats():
|
||||
itemName = "Silica Gel Packet"
|
||||
itemDescription = "It says not to eat it. Hmmmmm..."
|
||||
itemSprite = load("res://Items/Artificial/Products/Sprites/SilicaGelPacket.png")
|
||||
|
||||
value = 48
|
||||
weight = 0.2
|
||||
|
||||
hardness = 45
|
||||
edibility = 50
|
||||
|
||||
basketPower = 50
|
||||
basketabilityDifficulty = 40
|
||||
|
||||
flammability = 98
|
||||
BIN
Items/Artificial/Products/Sprites/DamFireStarter.png
Normal file
|
After Width: | Height: | Size: 581 B |
34
Items/Artificial/Products/Sprites/DamFireStarter.png.import
Normal file
|
|
@ -0,0 +1,34 @@
|
|||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://55g7alpv12a5"
|
||||
path="res://.godot/imported/DamFireStarter.png-0df6f5c869fd334245cde386176be086.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://Items/Artificial/Products/Sprites/DamFireStarter.png"
|
||||
dest_files=["res://.godot/imported/DamFireStarter.png-0df6f5c869fd334245cde386176be086.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=0
|
||||
compress/high_quality=false
|
||||
compress/lossy_quality=0.7
|
||||
compress/hdr_compression=1
|
||||
compress/normal_map=0
|
||||
compress/channel_pack=0
|
||||
mipmaps/generate=false
|
||||
mipmaps/limit=-1
|
||||
roughness/mode=0
|
||||
roughness/src_normal=""
|
||||
process/fix_alpha_border=true
|
||||
process/premult_alpha=false
|
||||
process/normal_map_invert_y=false
|
||||
process/hdr_as_srgb=false
|
||||
process/hdr_clamp_exposure=false
|
||||
process/size_limit=0
|
||||
detect_3d/compress_to=1
|
||||
BIN
Items/Artificial/Products/Sprites/EmptyKeyPacket.png
Normal file
|
After Width: | Height: | Size: 451 B |
34
Items/Artificial/Products/Sprites/EmptyKeyPacket.png.import
Normal file
|
|
@ -0,0 +1,34 @@
|
|||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://c6svgt12gqcd2"
|
||||
path="res://.godot/imported/EmptyKeyPacket.png-c237aaa5b8500ef8508d7381a59957a0.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://Items/Artificial/Products/Sprites/EmptyKeyPacket.png"
|
||||
dest_files=["res://.godot/imported/EmptyKeyPacket.png-c237aaa5b8500ef8508d7381a59957a0.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=0
|
||||
compress/high_quality=false
|
||||
compress/lossy_quality=0.7
|
||||
compress/hdr_compression=1
|
||||
compress/normal_map=0
|
||||
compress/channel_pack=0
|
||||
mipmaps/generate=false
|
||||
mipmaps/limit=-1
|
||||
roughness/mode=0
|
||||
roughness/src_normal=""
|
||||
process/fix_alpha_border=true
|
||||
process/premult_alpha=false
|
||||
process/normal_map_invert_y=false
|
||||
process/hdr_as_srgb=false
|
||||
process/hdr_clamp_exposure=false
|
||||
process/size_limit=0
|
||||
detect_3d/compress_to=1
|
||||
BIN
Items/Artificial/Products/Sprites/EmptySilicaGelPacket.png
Normal file
|
After Width: | Height: | Size: 406 B |
|
|
@ -0,0 +1,34 @@
|
|||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://cch7nhnmkqtso"
|
||||
path="res://.godot/imported/EmptySilicaGelPacket.png-c499d6eb9748b12c314ee75113483ee7.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://Items/Artificial/Products/Sprites/EmptySilicaGelPacket.png"
|
||||
dest_files=["res://.godot/imported/EmptySilicaGelPacket.png-c499d6eb9748b12c314ee75113483ee7.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=0
|
||||
compress/high_quality=false
|
||||
compress/lossy_quality=0.7
|
||||
compress/hdr_compression=1
|
||||
compress/normal_map=0
|
||||
compress/channel_pack=0
|
||||
mipmaps/generate=false
|
||||
mipmaps/limit=-1
|
||||
roughness/mode=0
|
||||
roughness/src_normal=""
|
||||
process/fix_alpha_border=true
|
||||
process/premult_alpha=false
|
||||
process/normal_map_invert_y=false
|
||||
process/hdr_as_srgb=false
|
||||
process/hdr_clamp_exposure=false
|
||||
process/size_limit=0
|
||||
detect_3d/compress_to=1
|
||||
BIN
Items/Artificial/Products/Sprites/Key.png
Normal file
|
After Width: | Height: | Size: 285 B |
34
Items/Artificial/Products/Sprites/Key.png.import
Normal file
|
|
@ -0,0 +1,34 @@
|
|||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://cfpp57m3b3q1m"
|
||||
path="res://.godot/imported/Key.png-08a9aee6073c9367545ceceaca6807dc.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://Items/Artificial/Products/Sprites/Key.png"
|
||||
dest_files=["res://.godot/imported/Key.png-08a9aee6073c9367545ceceaca6807dc.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=0
|
||||
compress/high_quality=false
|
||||
compress/lossy_quality=0.7
|
||||
compress/hdr_compression=1
|
||||
compress/normal_map=0
|
||||
compress/channel_pack=0
|
||||
mipmaps/generate=false
|
||||
mipmaps/limit=-1
|
||||
roughness/mode=0
|
||||
roughness/src_normal=""
|
||||
process/fix_alpha_border=true
|
||||
process/premult_alpha=false
|
||||
process/normal_map_invert_y=false
|
||||
process/hdr_as_srgb=false
|
||||
process/hdr_clamp_exposure=false
|
||||
process/size_limit=0
|
||||
detect_3d/compress_to=1
|
||||
BIN
Items/Artificial/Products/Sprites/KeyPacket.png
Normal file
|
After Width: | Height: | Size: 401 B |
34
Items/Artificial/Products/Sprites/KeyPacket.png.import
Normal file
|
|
@ -0,0 +1,34 @@
|
|||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://dysvmj64j3ula"
|
||||
path="res://.godot/imported/KeyPacket.png-ca11c66905d9361f27b9f055d25c14f2.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://Items/Artificial/Products/Sprites/KeyPacket.png"
|
||||
dest_files=["res://.godot/imported/KeyPacket.png-ca11c66905d9361f27b9f055d25c14f2.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=0
|
||||
compress/high_quality=false
|
||||
compress/lossy_quality=0.7
|
||||
compress/hdr_compression=1
|
||||
compress/normal_map=0
|
||||
compress/channel_pack=0
|
||||
mipmaps/generate=false
|
||||
mipmaps/limit=-1
|
||||
roughness/mode=0
|
||||
roughness/src_normal=""
|
||||
process/fix_alpha_border=true
|
||||
process/premult_alpha=false
|
||||
process/normal_map_invert_y=false
|
||||
process/hdr_as_srgb=false
|
||||
process/hdr_clamp_exposure=false
|
||||
process/size_limit=0
|
||||
detect_3d/compress_to=1
|
||||
BIN
Items/Artificial/Products/Sprites/SilicaGel.png
Normal file
|
After Width: | Height: | Size: 316 B |
34
Items/Artificial/Products/Sprites/SilicaGel.png.import
Normal file
|
|
@ -0,0 +1,34 @@
|
|||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://dd6ar3osy5xse"
|
||||
path="res://.godot/imported/SilicaGel.png-6eee43ade4abbfff2dcd00945307526d.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://Items/Artificial/Products/Sprites/SilicaGel.png"
|
||||
dest_files=["res://.godot/imported/SilicaGel.png-6eee43ade4abbfff2dcd00945307526d.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=0
|
||||
compress/high_quality=false
|
||||
compress/lossy_quality=0.7
|
||||
compress/hdr_compression=1
|
||||
compress/normal_map=0
|
||||
compress/channel_pack=0
|
||||
mipmaps/generate=false
|
||||
mipmaps/limit=-1
|
||||
roughness/mode=0
|
||||
roughness/src_normal=""
|
||||
process/fix_alpha_border=true
|
||||
process/premult_alpha=false
|
||||
process/normal_map_invert_y=false
|
||||
process/hdr_as_srgb=false
|
||||
process/hdr_clamp_exposure=false
|
||||
process/size_limit=0
|
||||
detect_3d/compress_to=1
|
||||
BIN
Items/Artificial/Products/Sprites/SilicaGelPacket.png
Normal file
|
After Width: | Height: | Size: 351 B |
34
Items/Artificial/Products/Sprites/SilicaGelPacket.png.import
Normal file
|
|
@ -0,0 +1,34 @@
|
|||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://hp1l3q60wr6x"
|
||||
path="res://.godot/imported/SilicaGelPacket.png-c707dd667a28289abd754016da9a4740.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://Items/Artificial/Products/Sprites/SilicaGelPacket.png"
|
||||
dest_files=["res://.godot/imported/SilicaGelPacket.png-c707dd667a28289abd754016da9a4740.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=0
|
||||
compress/high_quality=false
|
||||
compress/lossy_quality=0.7
|
||||
compress/hdr_compression=1
|
||||
compress/normal_map=0
|
||||
compress/channel_pack=0
|
||||
mipmaps/generate=false
|
||||
mipmaps/limit=-1
|
||||
roughness/mode=0
|
||||
roughness/src_normal=""
|
||||
process/fix_alpha_border=true
|
||||
process/premult_alpha=false
|
||||
process/normal_map_invert_y=false
|
||||
process/hdr_as_srgb=false
|
||||
process/hdr_clamp_exposure=false
|
||||
process/size_limit=0
|
||||
detect_3d/compress_to=1
|
||||