It's Cow Game! Version 2.04!

This commit is contained in:
PajamaBee 2024-09-19 23:06:51 -05:00
commit a9e1ed9ddd
3148 changed files with 95332 additions and 0 deletions

View file

@ -0,0 +1,17 @@
extends Item
func initialize_stats():
itemName = "Crystal Bone"
itemDescription = "Rare and valuable this is the bone of a crystal!"
itemSprite = load("res://Items/Natural/Bones/Sprites/crystalbone.png")
value = 90
weight = 6
hardness = 99
edibility = 2
basketPower = 70
basketabilityDifficulty = 95
flammability = 5

View file

@ -0,0 +1,17 @@
extends Item
func initialize_stats():
itemName = "Dirt Bone"
itemDescription = "These grow in the dirt! Nature is cool!"
itemSprite = load("res://Items/Natural/Bones/Sprites/dirtbone.png")
value = 5
weight = 2
hardness = 8
edibility = 30
basketPower = 5
basketabilityDifficulty = 60
flammability = 5

View file

@ -0,0 +1,17 @@
extends Item
func initialize_stats():
itemName = "Haunted Bone"
itemDescription = "Haunted by the spirit of a bone! ooOOOooOOoo"
itemSprite = load("res://Items/Natural/Bones/Sprites/hauntedbone.png")
value = 10
weight = 0
hardness = 1
edibility = 5
basketPower = 5
basketabilityDifficulty = 90
flammability = 70

View file

@ -0,0 +1,17 @@
extends Item
func initialize_stats():
itemName = "Licorice Bone"
itemDescription = "This is black licorice no one likes these except geese? idk why."
itemSprite = load("res://Items/Natural/Bones/Sprites/licoricebone.png")
value = 10
weight = 0.5
hardness = 35
edibility = 65
basketPower = 24
basketabilityDifficulty = 50
flammability = 50

View file

@ -0,0 +1,17 @@
extends Item
func initialize_stats():
itemName = "Parallelogram Bone"
itemDescription = "A bone in one of the most cool shapes, a wonderful find. Must have been shed by a parallelogram skeleton."
itemSprite = load("res://Items/Natural/Bones/Sprites/ParallelogramBone.png")
value = 44
weight = 2
hardness = 90
edibility = 10
basketPower = 20
basketabilityDifficulty = 75
flammability = 20

View file

@ -0,0 +1,17 @@
extends Item
func initialize_stats():
itemName = "Pretzel Bone"
itemDescription = "A big salty treat."
itemSprite = load("res://Items/Natural/Bones/Sprites/pretzelbone.png")
value = 16
weight = 1
hardness = 9
edibility = 80
basketPower = 65
basketabilityDifficulty = 50
flammability = 55

View file

@ -0,0 +1,17 @@
extends Item
func initialize_stats():
itemName = "Redby Bone"
itemDescription = "A brilliant red jewel that is also a bone"
itemSprite = load("res://Items/Natural/Bones/Sprites/redbybone.png")
value = 100
weight = 4
hardness = 100
edibility = 2
basketPower = 70
basketabilityDifficulty = 95
flammability = 45

View file

@ -0,0 +1,17 @@
extends Item
func initialize_stats():
itemName = "Rex Bone"
itemDescription = "This is the most rare and valuable bone. Common misconception is that this is a t-rex bone, it is not. It is the rare and sought after Rex Bone. A quest to find one is sure to bring friendship and adventure."
itemSprite = load("res://Items/Natural/Bones/Sprites/rexbone.png")
value = 200
weight = 15
hardness = 99
edibility = 1
basketPower = 90
basketabilityDifficulty = 90
flammability = 10

View file

@ -0,0 +1,17 @@
extends Item
func initialize_stats():
itemName = "Rock Bone"
itemDescription = "This grew in a rock, then the rock shed this bone. Both rocks and skeletons grow and shed their bones all the time it's ok."
itemSprite = load("res://Items/Natural/Bones/Sprites/rockbone.png")
value = 7
weight = 10
hardness = 99
edibility = 1
basketPower = 10
basketabilityDifficulty = 75
flammability = 3

Binary file not shown.

After

Width:  |  Height:  |  Size: 377 B

View file

@ -0,0 +1,34 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://crqjhi5cv1734"
path="res://.godot/imported/ParallelogramBone.png-3678e9afbda9bb45f9333500c6a4b003.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://Items/Natural/Bones/Sprites/ParallelogramBone.png"
dest_files=["res://.godot/imported/ParallelogramBone.png-3678e9afbda9bb45f9333500c6a4b003.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

Binary file not shown.

After

Width:  |  Height:  |  Size: 340 B

View file

@ -0,0 +1,34 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://1xutk4vijglr"
path="res://.godot/imported/SquareBone.png-f33d52d926d51786749f1e04c4699e24.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://Items/Natural/Bones/Sprites/SquareBone.png"
dest_files=["res://.godot/imported/SquareBone.png-f33d52d926d51786749f1e04c4699e24.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

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.7 KiB

View file

@ -0,0 +1,34 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://bjg3bjioqy33d"
path="res://.godot/imported/crystalbone.png-7ba148cec3eac69d9101160efe4a3d28.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://Items/Natural/Bones/Sprites/crystalbone.png"
dest_files=["res://.godot/imported/crystalbone.png-7ba148cec3eac69d9101160efe4a3d28.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

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

View file

@ -0,0 +1,34 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://bsnyjffl6h7pu"
path="res://.godot/imported/dirtbone.png-84dacbf3839d5fcf07aafe9fd5861992.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://Items/Natural/Bones/Sprites/dirtbone.png"
dest_files=["res://.godot/imported/dirtbone.png-84dacbf3839d5fcf07aafe9fd5861992.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

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB

View file

@ -0,0 +1,34 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://by8gche4xvpno"
path="res://.godot/imported/hauntedbone.png-28bf8af10857fa5edc65bbe735315281.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://Items/Natural/Bones/Sprites/hauntedbone.png"
dest_files=["res://.godot/imported/hauntedbone.png-28bf8af10857fa5edc65bbe735315281.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

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB

View file

@ -0,0 +1,34 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://cwc8x3doh3l7r"
path="res://.godot/imported/licoricebone.png-6164f2f35b68567423cc6f7d288af37d.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://Items/Natural/Bones/Sprites/licoricebone.png"
dest_files=["res://.godot/imported/licoricebone.png-6164f2f35b68567423cc6f7d288af37d.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

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

View file

@ -0,0 +1,34 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://btuh2vngijpvl"
path="res://.godot/imported/pretzelbone.png-f9a63efd6b2a63b032cb19be2c64bf41.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://Items/Natural/Bones/Sprites/pretzelbone.png"
dest_files=["res://.godot/imported/pretzelbone.png-f9a63efd6b2a63b032cb19be2c64bf41.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

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

View file

@ -0,0 +1,34 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://c5aixp2kyag81"
path="res://.godot/imported/redbybone.png-d15a4b4cca236585b307a549d3258161.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://Items/Natural/Bones/Sprites/redbybone.png"
dest_files=["res://.godot/imported/redbybone.png-d15a4b4cca236585b307a549d3258161.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

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.8 KiB

View file

@ -0,0 +1,34 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://lxwt7hg3582p"
path="res://.godot/imported/rexbone.png-7e2d8f1f842f050c1cd22b8603d1699a.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://Items/Natural/Bones/Sprites/rexbone.png"
dest_files=["res://.godot/imported/rexbone.png-7e2d8f1f842f050c1cd22b8603d1699a.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

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

View file

@ -0,0 +1,34 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://dvy73ajf1xibm"
path="res://.godot/imported/rockbone.png-e7d7ef64dfc441af7b03e6fc6b3ca53c.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://Items/Natural/Bones/Sprites/rockbone.png"
dest_files=["res://.godot/imported/rockbone.png-e7d7ef64dfc441af7b03e6fc6b3ca53c.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

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 KiB

View file

@ -0,0 +1,34 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://c5c5kki7xgt1s"
path="res://.godot/imported/zucchinibone.png-24412063991ba21be5ed6cefd54a62a9.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://Items/Natural/Bones/Sprites/zucchinibone.png"
dest_files=["res://.godot/imported/zucchinibone.png-24412063991ba21be5ed6cefd54a62a9.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

View file

@ -0,0 +1,17 @@
extends Item
func initialize_stats():
itemName = "Square Bone"
itemDescription = "This bone has 4 sides. It must have been grown and shed by a square skeleton."
itemSprite = load("res://Items/Natural/Bones/Sprites/SquareBone.png")
value = 40
weight = 2
hardness = 90
edibility = 10
basketPower = 20
basketabilityDifficulty = 75
flammability = 20

View file

@ -0,0 +1,17 @@
extends Item
func initialize_stats():
itemName = "Zucchini Bone"
itemDescription = "Sometimes zucchinis grow bones and turn into skeletons i think."
itemSprite = load("res://Items/Natural/Bones/Sprites/zucchinibone.png")
value = 30
weight = 1
hardness = 12
edibility = 80
basketPower = 15
basketabilityDifficulty = 70
flammability = 5