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
|
||||
19
Items/Ash/Ash.gd
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
extends Item
|
||||
|
||||
func initialize_stats():
|
||||
itemName = "Ash"
|
||||
itemDescription = "Ash"
|
||||
itemSprite = load("res://Items/Ash/AshAsh.png")
|
||||
|
||||
value = 1
|
||||
weight = 0.01
|
||||
|
||||
hardness = 2
|
||||
edibility = 1
|
||||
|
||||
basketPower = 1
|
||||
basketabilityDifficulty = 99
|
||||
|
||||
flammability = 1
|
||||
|
||||
itemTypes.append(types.Ash)
|
||||
BIN
Items/Ash/Ash.png
Normal file
|
After Width: | Height: | Size: 297 B |
34
Items/Ash/Ash.png.import
Normal file
|
|
@ -0,0 +1,34 @@
|
|||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://cs57c3s8tq27q"
|
||||
path="res://.godot/imported/Ash.png-ca8accfc44d544c89fd47a112bbda54d.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://Items/Ash/Ash.png"
|
||||
dest_files=["res://.godot/imported/Ash.png-ca8accfc44d544c89fd47a112bbda54d.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/Ash/AshAsh.png
Normal file
|
After Width: | Height: | Size: 295 B |
34
Items/Ash/AshAsh.png.import
Normal file
|
|
@ -0,0 +1,34 @@
|
|||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://fmhuk7dvrpq3"
|
||||
path="res://.godot/imported/AshAsh.png-acc4d0740efb1fbbd67e81682d25725e.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://Items/Ash/AshAsh.png"
|
||||
dest_files=["res://.godot/imported/AshAsh.png-acc4d0740efb1fbbd67e81682d25725e.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
|
||||
19
Items/Ash/RareArtifactAsh.gd
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
extends Item
|
||||
|
||||
func initialize_stats():
|
||||
itemName = "Rare Artifact Ash"
|
||||
itemDescription = "Looks like someone burned a rare and valuable artifact"
|
||||
itemSprite = load("res://Items/Ash/RareArtifactAsh.png")
|
||||
|
||||
value = 30
|
||||
weight = 0.01
|
||||
|
||||
hardness = 2
|
||||
edibility = 50
|
||||
|
||||
basketPower = 1
|
||||
basketabilityDifficulty = 99
|
||||
|
||||
flammability = 1
|
||||
|
||||
itemTypes.append(types.Ash)
|
||||
BIN
Items/Ash/RareArtifactAsh.png
Normal file
|
After Width: | Height: | Size: 304 B |
34
Items/Ash/RareArtifactAsh.png.import
Normal file
|
|
@ -0,0 +1,34 @@
|
|||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://4jwf7aqfvysd"
|
||||
path="res://.godot/imported/RareArtifactAsh.png-a3095fdd4fa6c16446dc7ac8a3200463.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://Items/Ash/RareArtifactAsh.png"
|
||||
dest_files=["res://.godot/imported/RareArtifactAsh.png-a3095fdd4fa6c16446dc7ac8a3200463.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/Badges/FlappyCowBadge.gd
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
extends Item
|
||||
|
||||
func initialize_stats():
|
||||
itemName = "Flappy Cow Badge"
|
||||
itemDescription = "Wow! You won this from beating Flappy Cow! You flapped and you won!"
|
||||
itemSprite = load("res://Items/Badges/Sprites/FlappyCowBadge.png")
|
||||
|
||||
value = 30
|
||||
weight = 2
|
||||
|
||||
hardness = 90
|
||||
edibility = 1
|
||||
|
||||
basketPower = 70
|
||||
basketabilityDifficulty = 70
|
||||
|
||||
flammability = 5
|
||||
17
Items/Badges/RingTossBadge.gd
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
extends Item
|
||||
|
||||
func initialize_stats():
|
||||
itemName = "Ring Toss Badge"
|
||||
itemDescription = "Wow! You scored at least 150 points in Ring Toss!"
|
||||
itemSprite = load("res://Items/Badges/Sprites/RingTossBadge.png")
|
||||
|
||||
value = 20
|
||||
weight = 1
|
||||
|
||||
hardness = 80
|
||||
edibility = 4
|
||||
|
||||
basketPower = 50
|
||||
basketabilityDifficulty = 50
|
||||
|
||||
flammability = 5
|
||||
17
Items/Badges/RingTossGoldBadge.gd
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
extends Item
|
||||
|
||||
func initialize_stats():
|
||||
itemName = "Ring Toss Perfect Badge"
|
||||
itemDescription = "Wow! You scored at perfect 200 points in Ring Toss!"
|
||||
itemSprite = load("res://Items/Badges/Sprites/RingTossBadgePerfect.png")
|
||||
|
||||
value = 30
|
||||
weight = 2
|
||||
|
||||
hardness = 90
|
||||
edibility = 1
|
||||
|
||||
basketPower = 70
|
||||
basketabilityDifficulty = 70
|
||||
|
||||
flammability = 5
|
||||
BIN
Items/Badges/Sprites/FlappyCowBadge.png
Normal file
|
After Width: | Height: | Size: 975 B |
34
Items/Badges/Sprites/FlappyCowBadge.png.import
Normal file
|
|
@ -0,0 +1,34 @@
|
|||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://j1ieewnxlqbh"
|
||||
path="res://.godot/imported/FlappyCowBadge.png-e683121d1c4c1b2e87808fc2398cb4b2.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://Items/Badges/Sprites/FlappyCowBadge.png"
|
||||
dest_files=["res://.godot/imported/FlappyCowBadge.png-e683121d1c4c1b2e87808fc2398cb4b2.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/Badges/Sprites/RingTossBadge.png
Normal file
|
After Width: | Height: | Size: 453 B |
34
Items/Badges/Sprites/RingTossBadge.png.import
Normal file
|
|
@ -0,0 +1,34 @@
|
|||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://og6jc1nvgt1a"
|
||||
path="res://.godot/imported/RingTossBadge.png-21aa02223c61e1ee704e62f230293a1f.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://Items/Badges/Sprites/RingTossBadge.png"
|
||||
dest_files=["res://.godot/imported/RingTossBadge.png-21aa02223c61e1ee704e62f230293a1f.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/Badges/Sprites/RingTossBadgePerfect.png
Normal file
|
After Width: | Height: | Size: 460 B |
34
Items/Badges/Sprites/RingTossBadgePerfect.png.import
Normal file
|
|
@ -0,0 +1,34 @@
|
|||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://b3wg7wx034400"
|
||||
path="res://.godot/imported/RingTossBadgePerfect.png-ec58b0c3eb66eadc90ca73b1496718b9.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://Items/Badges/Sprites/RingTossBadgePerfect.png"
|
||||
dest_files=["res://.godot/imported/RingTossBadgePerfect.png-ec58b0c3eb66eadc90ca73b1496718b9.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
|
||||
19
Items/Basket/BaseItem/Basket.gd
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
extends Item
|
||||
|
||||
func initialize_stats():
|
||||
itemName = "Basket"
|
||||
itemDescription = "A Basket"
|
||||
itemSprite = load("res://Items/Basket/BaseItem/BasketBasket.png")
|
||||
|
||||
value = 5
|
||||
weight = 2
|
||||
|
||||
hardness = 50
|
||||
edibility = 40
|
||||
|
||||
basketPower = 99
|
||||
basketabilityDifficulty = 99
|
||||
|
||||
flammability = 90
|
||||
|
||||
itemTypes.append(types.Basket)
|
||||
BIN
Items/Basket/BaseItem/Basket.png
Normal file
|
After Width: | Height: | Size: 610 B |
34
Items/Basket/BaseItem/Basket.png.import
Normal file
|
|
@ -0,0 +1,34 @@
|
|||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://dn0i5ji0rtcy0"
|
||||
path="res://.godot/imported/Basket.png-e0367da9d83b738be2ba5088546ae074.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://Items/Basket/BaseItem/Basket.png"
|
||||
dest_files=["res://.godot/imported/Basket.png-e0367da9d83b738be2ba5088546ae074.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/Basket/BaseItem/BasketBasket.png
Normal file
|
After Width: | Height: | Size: 632 B |
34
Items/Basket/BaseItem/BasketBasket.png.import
Normal file
|
|
@ -0,0 +1,34 @@
|
|||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://dlxnk74anrjt7"
|
||||
path="res://.godot/imported/BasketBasket.png-5de8460ee111765d734eb4c115ea709a.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://Items/Basket/BaseItem/BasketBasket.png"
|
||||
dest_files=["res://.godot/imported/BasketBasket.png-5de8460ee111765d734eb4c115ea709a.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/Basket/BaseItem/Knot.png
Normal file
|
After Width: | Height: | Size: 382 B |
34
Items/Basket/BaseItem/Knot.png.import
Normal file
|
|
@ -0,0 +1,34 @@
|
|||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://b1uognb7re5nc"
|
||||
path="res://.godot/imported/Knot.png-ccd19801caf708c3be22ee638471109c.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://Items/Basket/BaseItem/Knot.png"
|
||||
dest_files=["res://.godot/imported/Knot.png-ccd19801caf708c3be22ee638471109c.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
|
||||
19
Items/Candy/Candy.gd
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
extends Item
|
||||
|
||||
func initialize_stats():
|
||||
itemName = "Candy"
|
||||
itemDescription = "Candy"
|
||||
itemSprite = load("res://Items/Candy/DefaultCandy.png")
|
||||
|
||||
value = 5
|
||||
weight = 0.2
|
||||
|
||||
hardness = 55
|
||||
edibility = 120
|
||||
|
||||
basketPower = 45
|
||||
basketabilityDifficulty = 50
|
||||
|
||||
flammability = 25
|
||||
|
||||
itemTypes.append(types.Candy)
|
||||
BIN
Items/Candy/Candy.png
Normal file
|
After Width: | Height: | Size: 236 B |
34
Items/Candy/Candy.png.import
Normal file
|
|
@ -0,0 +1,34 @@
|
|||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://drkn76xsy4qof"
|
||||
path="res://.godot/imported/Candy.png-1560666803708427ae096504b70a95a7.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://Items/Candy/Candy.png"
|
||||
dest_files=["res://.godot/imported/Candy.png-1560666803708427ae096504b70a95a7.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/Candy/DefaultCandy.png
Normal file
|
After Width: | Height: | Size: 248 B |
34
Items/Candy/DefaultCandy.png.import
Normal file
|
|
@ -0,0 +1,34 @@
|
|||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://ckv8gw6qsf8oo"
|
||||
path="res://.godot/imported/DefaultCandy.png-77bd85f5069b7faecfa726550c0ca1e6.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://Items/Candy/DefaultCandy.png"
|
||||
dest_files=["res://.godot/imported/DefaultCandy.png-77bd85f5069b7faecfa726550c0ca1e6.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/Dishes/Cup.gd
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
extends Item
|
||||
|
||||
func initialize_stats():
|
||||
itemName = "Cup"
|
||||
itemDescription = "A vessel for juice and other liquid."
|
||||
itemSprite = load("res://Items/Dishes/Sprites/Cup.png")
|
||||
|
||||
value = 14
|
||||
weight = 0.8
|
||||
|
||||
hardness = 45
|
||||
edibility = 5
|
||||
|
||||
basketPower = 60
|
||||
basketabilityDifficulty = 60
|
||||
|
||||
flammability = 2
|
||||
BIN
Items/Dishes/Sprites/Cup.png
Normal file
|
After Width: | Height: | Size: 232 B |
34
Items/Dishes/Sprites/Cup.png.import
Normal file
|
|
@ -0,0 +1,34 @@
|
|||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://dg73qs2rqvcq4"
|
||||
path="res://.godot/imported/Cup.png-e7e2963165ed0388cf88c24dc8e06eeb.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://Items/Dishes/Sprites/Cup.png"
|
||||
dest_files=["res://.godot/imported/Cup.png-e7e2963165ed0388cf88c24dc8e06eeb.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/Dishes/Sprites/Straw.png
Normal file
|
After Width: | Height: | Size: 271 B |
34
Items/Dishes/Sprites/Straw.png.import
Normal file
|
|
@ -0,0 +1,34 @@
|
|||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://b6lokfoagferl"
|
||||
path="res://.godot/imported/Straw.png-ca76cf62ecf122920561902a0f61711a.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://Items/Dishes/Sprites/Straw.png"
|
||||
dest_files=["res://.godot/imported/Straw.png-ca76cf62ecf122920561902a0f61711a.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/Dishes/Straw.gd
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
extends Item
|
||||
|
||||
func initialize_stats():
|
||||
itemName = "Straw"
|
||||
itemDescription = "it's that straw you found in a cave underneath the museum."
|
||||
itemSprite = load("res://Items/Dishes/Sprites/Straw.png")
|
||||
|
||||
value = 90
|
||||
weight = 0.1
|
||||
|
||||
hardness = 32
|
||||
edibility = 4
|
||||
|
||||
basketPower = 40
|
||||
basketabilityDifficulty = 40
|
||||
|
||||
flammability = 14
|
||||
17
Items/Foods/Condiments/BBQSauce.gd
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
extends Item
|
||||
|
||||
func initialize_stats():
|
||||
itemName = "BBQ Sauce"
|
||||
itemDescription = "Tomato Smoothie, Fire Flavored."
|
||||
itemSprite = load("res://Items/Foods/Condiments/Sprites/BBQSauce.png")
|
||||
|
||||
value = 42
|
||||
weight = 0.9
|
||||
|
||||
hardness = 10
|
||||
edibility = 75
|
||||
|
||||
basketPower = 90
|
||||
basketabilityDifficulty = 90
|
||||
|
||||
flammability = 50
|
||||
17
Items/Foods/Condiments/FakeRelish.gd
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
extends Item
|
||||
|
||||
func initialize_stats():
|
||||
itemName = "Fake Relish"
|
||||
itemDescription = "Seems like it's make of pickles, but you're not sure."
|
||||
itemSprite = load("res://Items/Foods/Condiments/Sprites/FakeRelish.png")
|
||||
|
||||
value = 8
|
||||
weight = 1
|
||||
|
||||
hardness = 25
|
||||
edibility = 54
|
||||
|
||||
basketPower = 65
|
||||
basketabilityDifficulty = 72
|
||||
|
||||
flammability = 28
|
||||
17
Items/Foods/Condiments/Ketchup.gd
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
extends Item
|
||||
|
||||
func initialize_stats():
|
||||
itemName = "Ketchup"
|
||||
itemDescription = "Tomato Smoothie."
|
||||
itemSprite = load("res://Items/Foods/Condiments/Sprites/Ketchup.png")
|
||||
|
||||
value = 35
|
||||
weight = 0.9
|
||||
|
||||
hardness = 10
|
||||
edibility = 65
|
||||
|
||||
basketPower = 85
|
||||
basketabilityDifficulty = 85
|
||||
|
||||
flammability = 20
|
||||
17
Items/Foods/Condiments/Mustard.gd
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
extends Item
|
||||
|
||||
func initialize_stats():
|
||||
itemName = "Mustard"
|
||||
itemDescription = "Yellow goop food, yummy."
|
||||
itemSprite = load("res://Items/Foods/Condiments/Sprites/Mustard.png")
|
||||
|
||||
value = 9
|
||||
weight = 0.2
|
||||
|
||||
hardness = 10
|
||||
edibility = 65
|
||||
|
||||
basketPower = 80
|
||||
basketabilityDifficulty = 80
|
||||
|
||||
flammability = 20
|
||||
17
Items/Foods/Condiments/OldBBQSauce.gd
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
extends Item
|
||||
|
||||
func initialize_stats():
|
||||
itemName = "Old BBQ Sauce"
|
||||
itemDescription = "Still fine, mostly. Tastes a bit like ashes."
|
||||
itemSprite = load("res://Items/Foods/Condiments/Sprites/OldBBQSauce.png")
|
||||
|
||||
value = 10
|
||||
weight = 0.7
|
||||
|
||||
hardness = 8
|
||||
edibility = 59
|
||||
|
||||
basketPower = 70
|
||||
basketabilityDifficulty = 90
|
||||
|
||||
flammability = 35
|
||||
17
Items/Foods/Condiments/OldKetchup.gd
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
extends Item
|
||||
|
||||
func initialize_stats():
|
||||
itemName = "Old Ketchup"
|
||||
itemDescription = "Ketchup that's kinda gone bad."
|
||||
itemSprite = load("res://Items/Foods/Condiments/Sprites/OldKetchup.png")
|
||||
|
||||
value = 6
|
||||
weight = 0.8
|
||||
|
||||
hardness = 8
|
||||
edibility = 52
|
||||
|
||||
basketPower = 65
|
||||
basketabilityDifficulty = 85
|
||||
|
||||
flammability = 16
|
||||
BIN
Items/Foods/Condiments/Sprites/BBQSauce.png
Normal file
|
After Width: | Height: | Size: 237 B |
34
Items/Foods/Condiments/Sprites/BBQSauce.png.import
Normal file
|
|
@ -0,0 +1,34 @@
|
|||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://dy8l84nc2j4d"
|
||||
path="res://.godot/imported/BBQSauce.png-968188ee709afff304ccec2af53f6a0d.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://Items/Foods/Condiments/Sprites/BBQSauce.png"
|
||||
dest_files=["res://.godot/imported/BBQSauce.png-968188ee709afff304ccec2af53f6a0d.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/Foods/Condiments/Sprites/FakeRelish.png
Normal file
|
After Width: | Height: | Size: 345 B |
34
Items/Foods/Condiments/Sprites/FakeRelish.png.import
Normal file
|
|
@ -0,0 +1,34 @@
|
|||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://b2jemn870p2o5"
|
||||
path="res://.godot/imported/FakeRelish.png-a1e4322e17ebde6517fe53c66d9a67b9.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://Items/Foods/Condiments/Sprites/FakeRelish.png"
|
||||
dest_files=["res://.godot/imported/FakeRelish.png-a1e4322e17ebde6517fe53c66d9a67b9.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/Foods/Condiments/Sprites/Ketchup.png
Normal file
|
After Width: | Height: | Size: 238 B |
34
Items/Foods/Condiments/Sprites/Ketchup.png.import
Normal file
|
|
@ -0,0 +1,34 @@
|
|||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://cy0cibiwyuth"
|
||||
path="res://.godot/imported/Ketchup.png-e0cde86b86cf8b16105d2c91313fad77.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://Items/Foods/Condiments/Sprites/Ketchup.png"
|
||||
dest_files=["res://.godot/imported/Ketchup.png-e0cde86b86cf8b16105d2c91313fad77.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/Foods/Condiments/Sprites/Mustard.png
Normal file
|
After Width: | Height: | Size: 234 B |
34
Items/Foods/Condiments/Sprites/Mustard.png.import
Normal file
|
|
@ -0,0 +1,34 @@
|
|||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://5v1s4q3xdj5y"
|
||||
path="res://.godot/imported/Mustard.png-7e7c4eee5bb7019ddf24b11eb34dcc5b.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://Items/Foods/Condiments/Sprites/Mustard.png"
|
||||
dest_files=["res://.godot/imported/Mustard.png-7e7c4eee5bb7019ddf24b11eb34dcc5b.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/Foods/Condiments/Sprites/OldBBQSauce.png
Normal file
|
After Width: | Height: | Size: 291 B |
34
Items/Foods/Condiments/Sprites/OldBBQSauce.png.import
Normal file
|
|
@ -0,0 +1,34 @@
|
|||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://dnkoi0hn17y3g"
|
||||
path="res://.godot/imported/OldBBQSauce.png-0ed19168b60136bba384ee60ce4ae174.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://Items/Foods/Condiments/Sprites/OldBBQSauce.png"
|
||||
dest_files=["res://.godot/imported/OldBBQSauce.png-0ed19168b60136bba384ee60ce4ae174.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/Foods/Condiments/Sprites/OldKetchup.png
Normal file
|
After Width: | Height: | Size: 296 B |
34
Items/Foods/Condiments/Sprites/OldKetchup.png.import
Normal file
|
|
@ -0,0 +1,34 @@
|
|||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://babunio2bd7bp"
|
||||
path="res://.godot/imported/OldKetchup.png-ae3a73a0200f62624b14958bdf8e151f.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://Items/Foods/Condiments/Sprites/OldKetchup.png"
|
||||
dest_files=["res://.godot/imported/OldKetchup.png-ae3a73a0200f62624b14958bdf8e151f.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/Foods/Condiments/Sprites/Relish.png
Normal file
|
After Width: | Height: | Size: 273 B |
34
Items/Foods/Condiments/Sprites/Relish.png.import
Normal file
|
|
@ -0,0 +1,34 @@
|
|||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://uaqt0fp7xdv5"
|
||||
path="res://.godot/imported/Relish.png-139f05066a761f38059f6b218e17c9e4.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://Items/Foods/Condiments/Sprites/Relish.png"
|
||||
dest_files=["res://.godot/imported/Relish.png-139f05066a761f38059f6b218e17c9e4.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
|
||||