技能配置结构调整
parent
8166850000
commit
5045b00225
@ -0,0 +1,10 @@
|
||||
[gd_resource type="Resource" script_class="AttackBoxCfg" load_steps=2 format=3 uid="uid://bqejjllfy03h3"]
|
||||
|
||||
[ext_resource type="Script" path="res://script/config/attack_box_cfg.gd" id="1_d4mqn"]
|
||||
|
||||
[resource]
|
||||
script = ExtResource("1_d4mqn")
|
||||
height = 1.0
|
||||
radius = 0.0
|
||||
size = Vector2(1, 1)
|
||||
offset = Vector2(0.5, 0)
|
||||
@ -0,0 +1,10 @@
|
||||
[gd_resource type="Resource" script_class="AttackBoxCfg" load_steps=2 format=3 uid="uid://57sukcw6ewqo"]
|
||||
|
||||
[ext_resource type="Script" path="res://script/config/attack_box_cfg.gd" id="1_8rhve"]
|
||||
|
||||
[resource]
|
||||
script = ExtResource("1_8rhve")
|
||||
height = 1.0
|
||||
radius = 0.5
|
||||
size = Vector2(0, 0)
|
||||
offset = Vector2(0, 0)
|
||||
Binary file not shown.
|
After Width: | Height: | Size: 2.8 KiB |
@ -0,0 +1,34 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://dwi4ioxeauoc4"
|
||||
path="res://.godot/imported/items.png-d10b6b2feac7b3334582afee422be338.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://example/Items/item_icons/items.png"
|
||||
dest_files=["res://.godot/imported/items.png-d10b6b2feac7b3334582afee422be338.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
|
||||
@ -0,0 +1,32 @@
|
||||
extends Resource
|
||||
|
||||
enum SlotType {
|
||||
SMALL,
|
||||
LARGE,
|
||||
EQUIPMENT,
|
||||
QUEST,
|
||||
POTION,
|
||||
AMMO,
|
||||
CURRENCY,
|
||||
FUEL,
|
||||
CRAFTING,
|
||||
E_MAINHAND,
|
||||
E_OFFHAND,
|
||||
E_HELM,
|
||||
E_CHEST,
|
||||
E_BELT,
|
||||
E_HANDS,
|
||||
E_FEET,
|
||||
E_RING,
|
||||
E_NECK,
|
||||
}
|
||||
@export var name := ""
|
||||
@export_multiline var description := ""
|
||||
@export var max_stack_count := 1
|
||||
@export var in_inventory_width := 1
|
||||
@export var in_inventory_height := 1
|
||||
@export var texture : Texture
|
||||
@export var mesh : Mesh
|
||||
|
||||
@export var slot_flags : SlotType = SlotType.SMALL
|
||||
@export var default_properties : Dictionary
|
||||
@ -0,0 +1,19 @@
|
||||
[gd_resource type="Resource" load_steps=4 format=3 uid="uid://c65l1w3756rlu"]
|
||||
|
||||
[ext_resource type="Script" path="res://example/Items/item_type.gd" id="2"]
|
||||
[ext_resource type="Texture2D" uid="uid://dwi4ioxeauoc4" path="res://example/Items/item_icons/items.png" id="2_npnns"]
|
||||
|
||||
[sub_resource type="AtlasTexture" id="1"]
|
||||
atlas = ExtResource("2_npnns")
|
||||
region = Rect2(12, 24, 24, 12)
|
||||
|
||||
[resource]
|
||||
script = ExtResource("2")
|
||||
name = "arrows"
|
||||
description = "desc_arrows"
|
||||
max_stack_count = 20
|
||||
in_inventory_width = 2
|
||||
in_inventory_height = 1
|
||||
texture = SubResource("1")
|
||||
slot_flags = 5
|
||||
default_properties = {}
|
||||
@ -0,0 +1,28 @@
|
||||
[gd_resource type="Resource" load_steps=4 format=3 uid="uid://d2gb438d6vtlg"]
|
||||
|
||||
[ext_resource type="Script" path="res://example/Items/item_type.gd" id="1"]
|
||||
[ext_resource type="Texture2D" uid="uid://dwi4ioxeauoc4" path="res://example/Items/item_icons/items.png" id="2_4rd1p"]
|
||||
|
||||
[sub_resource type="AtlasTexture" id="1"]
|
||||
atlas = ExtResource("2_4rd1p")
|
||||
region = Rect2(0, 156, 24, 12)
|
||||
|
||||
[resource]
|
||||
script = ExtResource("1")
|
||||
name = "belt_1"
|
||||
description = "desc_belt_1"
|
||||
max_stack_count = 1
|
||||
in_inventory_width = 2
|
||||
in_inventory_height = 1
|
||||
texture = SubResource("1")
|
||||
slot_flags = 13
|
||||
default_properties = {
|
||||
"back_color": Color(1, 0.65098, 0, 1),
|
||||
"price": {
|
||||
"res://example/wyvernbox/item_types/consumable/coin_gold.tres": 50,
|
||||
"res://example/wyvernbox/item_types/consumable/coin_purple.tres": 10
|
||||
},
|
||||
"stats": {
|
||||
"dodgerate": 12.0
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,28 @@
|
||||
[gd_resource type="Resource" load_steps=4 format=3 uid="uid://c158a1idjr28m"]
|
||||
|
||||
[ext_resource type="Script" path="res://example/Items/item_type.gd" id="1"]
|
||||
[ext_resource type="Texture2D" uid="uid://dwi4ioxeauoc4" path="res://example/Items/item_icons/items.png" id="2_laq2t"]
|
||||
|
||||
[sub_resource type="AtlasTexture" id="1"]
|
||||
atlas = ExtResource("2_laq2t")
|
||||
region = Rect2(24, 156, 24, 12)
|
||||
|
||||
[resource]
|
||||
script = ExtResource("1")
|
||||
name = "belt_2"
|
||||
description = "desc_belt_2"
|
||||
max_stack_count = 1
|
||||
in_inventory_width = 2
|
||||
in_inventory_height = 1
|
||||
texture = SubResource("1")
|
||||
slot_flags = 13
|
||||
default_properties = {
|
||||
"back_color": Color(1, 0.65098, 0, 1),
|
||||
"price": {
|
||||
"res://example/wyvernbox/item_types/consumable/coin_gold.tres": 50,
|
||||
"res://example/wyvernbox/item_types/consumable/coin_purple.tres": 10
|
||||
},
|
||||
"stats": {
|
||||
"health_regen": 2.0
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,28 @@
|
||||
[gd_resource type="Resource" load_steps=4 format=3 uid="uid://ubapirchpsp"]
|
||||
|
||||
[ext_resource type="Script" path="res://example/Items/item_type.gd" id="1"]
|
||||
[ext_resource type="Texture2D" uid="uid://dwi4ioxeauoc4" path="res://example/Items/item_icons/items.png" id="2_cwgb2"]
|
||||
|
||||
[sub_resource type="AtlasTexture" id="1"]
|
||||
atlas = ExtResource("2_cwgb2")
|
||||
region = Rect2(0, 120, 24, 36)
|
||||
|
||||
[resource]
|
||||
script = ExtResource("1")
|
||||
name = "chestplate_1"
|
||||
description = "desc_chestplate_1"
|
||||
max_stack_count = 1
|
||||
in_inventory_width = 2
|
||||
in_inventory_height = 3
|
||||
texture = SubResource("1")
|
||||
slot_flags = 12
|
||||
default_properties = {
|
||||
"back_color": Color(1, 0.65098, 0, 1),
|
||||
"price": {
|
||||
"res://example/wyvernbox/item_types/consumable/coin_gold.tres": 50,
|
||||
"res://example/wyvernbox/item_types/consumable/coin_purple.tres": 10
|
||||
},
|
||||
"stats": {
|
||||
"defense": 24.0
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,29 @@
|
||||
[gd_resource type="Resource" load_steps=4 format=3 uid="uid://nquj8y70tdy1"]
|
||||
|
||||
[ext_resource type="Script" path="res://example/Items/item_type.gd" id="1"]
|
||||
[ext_resource type="Texture2D" uid="uid://dwi4ioxeauoc4" path="res://example/Items/item_icons/items.png" id="2_fdlcg"]
|
||||
|
||||
[sub_resource type="AtlasTexture" id="1"]
|
||||
atlas = ExtResource("2_fdlcg")
|
||||
region = Rect2(24, 120, 24, 36)
|
||||
|
||||
[resource]
|
||||
script = ExtResource("1")
|
||||
name = "chestplate_2"
|
||||
description = "desc_chestplate_2"
|
||||
max_stack_count = 1
|
||||
in_inventory_width = 2
|
||||
in_inventory_height = 3
|
||||
texture = SubResource("1")
|
||||
slot_flags = 12
|
||||
default_properties = {
|
||||
"back_color": Color(1, 0.65098, 0, 1),
|
||||
"price": {
|
||||
"res://example/wyvernbox/item_types/consumable/coin_gold.tres": 50,
|
||||
"res://example/wyvernbox/item_types/consumable/coin_purple.tres": 10
|
||||
},
|
||||
"stats": {
|
||||
"defense": 16.0,
|
||||
"dodgerate": 16.0
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,19 @@
|
||||
[gd_resource type="Resource" load_steps=4 format=3 uid="uid://cqbrojgnmjvil"]
|
||||
|
||||
[ext_resource type="Script" path="res://example/Items/item_type.gd" id="2"]
|
||||
[ext_resource type="Texture2D" uid="uid://dwi4ioxeauoc4" path="res://example/Items/item_icons/items.png" id="2_lbcs7"]
|
||||
|
||||
[sub_resource type="AtlasTexture" id="1"]
|
||||
atlas = ExtResource("2_lbcs7")
|
||||
region = Rect2(0, 0, 12, 12)
|
||||
|
||||
[resource]
|
||||
script = ExtResource("2")
|
||||
name = "coin_gold"
|
||||
description = "desc_coin_gold"
|
||||
max_stack_count = 100
|
||||
in_inventory_width = 1
|
||||
in_inventory_height = 1
|
||||
texture = SubResource("1")
|
||||
slot_flags = 6
|
||||
default_properties = {}
|
||||
@ -0,0 +1,21 @@
|
||||
[gd_resource type="Resource" load_steps=4 format=3 uid="uid://4amkkv73m0lc"]
|
||||
|
||||
[ext_resource type="Script" path="res://example/Items/item_type.gd" id="2"]
|
||||
[ext_resource type="Texture2D" uid="uid://dwi4ioxeauoc4" path="res://example/Items/item_icons/items.png" id="2_gphlp"]
|
||||
|
||||
[sub_resource type="AtlasTexture" id="1"]
|
||||
atlas = ExtResource("2_gphlp")
|
||||
region = Rect2(0, 12, 12, 12)
|
||||
|
||||
[resource]
|
||||
script = ExtResource("2")
|
||||
name = "coin_purple"
|
||||
description = "desc_coin_purple"
|
||||
max_stack_count = 100
|
||||
in_inventory_width = 1
|
||||
in_inventory_height = 1
|
||||
texture = SubResource("1")
|
||||
slot_flags = 6
|
||||
default_properties = {
|
||||
"back_color": Color(0.67451, 0.270588, 0.972549, 1)
|
||||
}
|
||||
@ -0,0 +1,19 @@
|
||||
[gd_resource type="Resource" load_steps=4 format=3 uid="uid://csj85mouew67r"]
|
||||
|
||||
[ext_resource type="Script" path="res://example/Items/item_type.gd" id="2"]
|
||||
[ext_resource type="Texture2D" uid="uid://dwi4ioxeauoc4" path="res://example/Items/item_icons/items.png" id="2_vvaq3"]
|
||||
|
||||
[sub_resource type="AtlasTexture" id="1"]
|
||||
atlas = ExtResource("2_vvaq3")
|
||||
region = Rect2(84, 24, 12, 12)
|
||||
|
||||
[resource]
|
||||
script = ExtResource("2")
|
||||
name = "feather"
|
||||
description = "desc_feather"
|
||||
max_stack_count = 20
|
||||
in_inventory_width = 1
|
||||
in_inventory_height = 1
|
||||
texture = SubResource("1")
|
||||
slot_flags = 8
|
||||
default_properties = {}
|
||||
@ -0,0 +1,19 @@
|
||||
[gd_resource type="Resource" load_steps=4 format=3 uid="uid://ghiwkmadh0i"]
|
||||
|
||||
[ext_resource type="Script" path="res://example/Items/item_type.gd" id="2"]
|
||||
[ext_resource type="Texture2D" uid="uid://dwi4ioxeauoc4" path="res://example/Items/item_icons/items.png" id="2_io53q"]
|
||||
|
||||
[sub_resource type="AtlasTexture" id="1"]
|
||||
atlas = ExtResource("2_io53q")
|
||||
region = Rect2(84, 36, 12, 12)
|
||||
|
||||
[resource]
|
||||
script = ExtResource("2")
|
||||
name = "gem_blue"
|
||||
description = "desc_gem_blue"
|
||||
max_stack_count = 20
|
||||
in_inventory_width = 1
|
||||
in_inventory_height = 1
|
||||
texture = SubResource("1")
|
||||
slot_flags = 8
|
||||
default_properties = {}
|
||||
@ -0,0 +1,28 @@
|
||||
[gd_resource type="Resource" load_steps=4 format=3 uid="uid://dmgt12il41ul7"]
|
||||
|
||||
[ext_resource type="Script" path="res://example/Items/item_type.gd" id="1"]
|
||||
[ext_resource type="Texture2D" uid="uid://dwi4ioxeauoc4" path="res://example/Items/item_icons/items.png" id="2_1ooxf"]
|
||||
|
||||
[sub_resource type="AtlasTexture" id="1"]
|
||||
atlas = ExtResource("2_1ooxf")
|
||||
region = Rect2(0, 168, 24, 24)
|
||||
|
||||
[resource]
|
||||
script = ExtResource("1")
|
||||
name = "head_helmet"
|
||||
description = "desc_head_helmet"
|
||||
max_stack_count = 1
|
||||
in_inventory_width = 2
|
||||
in_inventory_height = 2
|
||||
texture = SubResource("1")
|
||||
slot_flags = 11
|
||||
default_properties = {
|
||||
"back_color": Color(1, 0.65098, 0, 1),
|
||||
"price": {
|
||||
"res://example/wyvernbox/item_types/consumable/coin_gold.tres": 50,
|
||||
"res://example/wyvernbox/item_types/consumable/coin_purple.tres": 10
|
||||
},
|
||||
"stats": {
|
||||
"defense": 8.0
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,28 @@
|
||||
[gd_resource type="Resource" load_steps=4 format=3 uid="uid://bwtgji4rkgc5"]
|
||||
|
||||
[ext_resource type="Script" path="res://example/Items/item_type.gd" id="1"]
|
||||
[ext_resource type="Texture2D" uid="uid://dwi4ioxeauoc4" path="res://example/Items/item_icons/items.png" id="2_6ygl4"]
|
||||
|
||||
[sub_resource type="AtlasTexture" id="1"]
|
||||
atlas = ExtResource("2_6ygl4")
|
||||
region = Rect2(24, 168, 24, 24)
|
||||
|
||||
[resource]
|
||||
script = ExtResource("1")
|
||||
name = "head_wizardhat"
|
||||
description = "desc_head_wizardhat"
|
||||
max_stack_count = 1
|
||||
in_inventory_width = 2
|
||||
in_inventory_height = 2
|
||||
texture = SubResource("1")
|
||||
slot_flags = 11
|
||||
default_properties = {
|
||||
"back_color": Color(1, 0.65098, 0, 1),
|
||||
"price": {
|
||||
"res://example/wyvernbox/item_types/consumable/coin_gold.tres": 50,
|
||||
"res://example/wyvernbox/item_types/consumable/coin_purple.tres": 10
|
||||
},
|
||||
"stats": {
|
||||
"magic_regen": 2.0
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,19 @@
|
||||
[gd_resource type="Resource" load_steps=4 format=3 uid="uid://v7imonnsq6xx"]
|
||||
|
||||
[ext_resource type="Script" path="res://example/Items/item_type.gd" id="2"]
|
||||
[ext_resource type="Texture2D" uid="uid://dwi4ioxeauoc4" path="res://example/Items/item_icons/items.png" id="2_awqqy"]
|
||||
|
||||
[sub_resource type="AtlasTexture" id="1"]
|
||||
atlas = ExtResource("2_awqqy")
|
||||
region = Rect2(12, 36, 24, 12)
|
||||
|
||||
[resource]
|
||||
script = ExtResource("2")
|
||||
name = "herb"
|
||||
description = "desc_herb"
|
||||
max_stack_count = 20
|
||||
in_inventory_width = 2
|
||||
in_inventory_height = 1
|
||||
texture = SubResource("1")
|
||||
slot_flags = 8
|
||||
default_properties = {}
|
||||
@ -0,0 +1,19 @@
|
||||
[gd_resource type="Resource" load_steps=4 format=3 uid="uid://okiwvbkwltf2"]
|
||||
|
||||
[ext_resource type="Script" path="res://example/Items/item_type.gd" id="2"]
|
||||
[ext_resource type="Texture2D" uid="uid://dwi4ioxeauoc4" path="res://example/Items/item_icons/items.png" id="2_v5nv2"]
|
||||
|
||||
[sub_resource type="AtlasTexture" id="1"]
|
||||
atlas = ExtResource("2_v5nv2")
|
||||
region = Rect2(60, 24, 24, 12)
|
||||
|
||||
[resource]
|
||||
script = ExtResource("2")
|
||||
name = "leather"
|
||||
description = "desc_leather"
|
||||
max_stack_count = 20
|
||||
in_inventory_width = 2
|
||||
in_inventory_height = 1
|
||||
texture = SubResource("1")
|
||||
slot_flags = 8
|
||||
default_properties = {}
|
||||
@ -0,0 +1,21 @@
|
||||
[gd_resource type="Resource" load_steps=4 format=3 uid="uid://d4eo3up2esgao"]
|
||||
|
||||
[ext_resource type="Script" path="res://example/Items/item_type.gd" id="2"]
|
||||
[ext_resource type="Texture2D" uid="uid://dwi4ioxeauoc4" path="res://example/Items/item_icons/items.png" id="2_l77qe"]
|
||||
|
||||
[sub_resource type="AtlasTexture" id="1"]
|
||||
atlas = ExtResource("2_l77qe")
|
||||
region = Rect2(0, 24, 12, 24)
|
||||
|
||||
[resource]
|
||||
script = ExtResource("2")
|
||||
name = "magic_crystal"
|
||||
description = "desc_magic_crystal"
|
||||
max_stack_count = 20
|
||||
in_inventory_width = 1
|
||||
in_inventory_height = 2
|
||||
texture = SubResource("1")
|
||||
slot_flags = 8
|
||||
default_properties = {
|
||||
"back_color": Color(0.67451, 0.270588, 0.972549, 1)
|
||||
}
|
||||
@ -0,0 +1,29 @@
|
||||
[gd_resource type="Resource" load_steps=4 format=3 uid="uid://vi43b1o26w60"]
|
||||
|
||||
[ext_resource type="Script" path="res://example/Items/item_type.gd" id="2"]
|
||||
[ext_resource type="Texture2D" uid="uid://dwi4ioxeauoc4" path="res://example/Items/item_icons/items.png" id="2_glg1x"]
|
||||
|
||||
[sub_resource type="AtlasTexture" id="1"]
|
||||
atlas = ExtResource("2_glg1x")
|
||||
region = Rect2(12, 72, 12, 48)
|
||||
|
||||
[resource]
|
||||
script = ExtResource("2")
|
||||
name = "melee_battleaxe"
|
||||
description = "desc_melee_battleaxe"
|
||||
max_stack_count = 1
|
||||
in_inventory_width = 1
|
||||
in_inventory_height = 4
|
||||
texture = SubResource("1")
|
||||
slot_flags = 9
|
||||
default_properties = {
|
||||
"back_color": Color(1, 0.65098, 0, 1),
|
||||
"price": {
|
||||
"res://example/wyvernbox/item_types/consumable/coin_gold.tres": 50,
|
||||
"res://example/wyvernbox/item_types/consumable/coin_purple.tres": 10
|
||||
},
|
||||
"stats": {
|
||||
"weapon_damage": 8.0,
|
||||
"weapon_speed": 0.8
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,29 @@
|
||||
[gd_resource type="Resource" load_steps=4 format=3 uid="uid://cidvqmpxobgv7"]
|
||||
|
||||
[ext_resource type="Script" path="res://example/Items/item_type.gd" id="2"]
|
||||
[ext_resource type="Texture2D" uid="uid://dwi4ioxeauoc4" path="res://example/Items/item_icons/items.png" id="2_qyy4c"]
|
||||
|
||||
[sub_resource type="AtlasTexture" id="1"]
|
||||
atlas = ExtResource("2_qyy4c")
|
||||
region = Rect2(0, 72, 12, 36)
|
||||
|
||||
[resource]
|
||||
script = ExtResource("2")
|
||||
name = "melee_sword"
|
||||
description = "desc_melee_sword"
|
||||
max_stack_count = 1
|
||||
in_inventory_width = 1
|
||||
in_inventory_height = 3
|
||||
texture = SubResource("1")
|
||||
slot_flags = 9
|
||||
default_properties = {
|
||||
"back_color": Color(1, 0.65098, 0, 1),
|
||||
"price": {
|
||||
"res://example/wyvernbox/item_types/consumable/coin_gold.tres": 50,
|
||||
"res://example/wyvernbox/item_types/consumable/coin_purple.tres": 10
|
||||
},
|
||||
"stats": {
|
||||
"weapon_damage": 4.0,
|
||||
"weapon_speed": 1.5
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,19 @@
|
||||
[gd_resource type="Resource" load_steps=4 format=3 uid="uid://d2vm3srqwars"]
|
||||
|
||||
[ext_resource type="Script" path="res://example/Items/item_type.gd" id="2"]
|
||||
[ext_resource type="Texture2D" uid="uid://dwi4ioxeauoc4" path="res://example/Items/item_icons/items.png" id="2_w6v7m"]
|
||||
|
||||
[sub_resource type="AtlasTexture" id="1"]
|
||||
atlas = ExtResource("2_w6v7m")
|
||||
region = Rect2(48, 24, 12, 12)
|
||||
|
||||
[resource]
|
||||
script = ExtResource("2")
|
||||
name = "metalscrap_copper"
|
||||
description = "desc_metalscrap_copper"
|
||||
max_stack_count = 20
|
||||
in_inventory_width = 1
|
||||
in_inventory_height = 1
|
||||
texture = SubResource("1")
|
||||
slot_flags = 8
|
||||
default_properties = {}
|
||||
@ -0,0 +1,24 @@
|
||||
[gd_resource type="Resource" load_steps=4 format=3 uid="uid://b45up1xg1qnlo"]
|
||||
|
||||
[ext_resource type="Script" path="res://example/Items/item_type.gd" id="2"]
|
||||
[ext_resource type="Texture2D" uid="uid://dwi4ioxeauoc4" path="res://example/Items/item_icons/items.png" id="2_eoswi"]
|
||||
|
||||
[sub_resource type="AtlasTexture" id="1"]
|
||||
atlas = ExtResource("2_eoswi")
|
||||
region = Rect2(36, 36, 12, 12)
|
||||
|
||||
[resource]
|
||||
script = ExtResource("2")
|
||||
name = "metalscrap_gold"
|
||||
description = "desc_metalscrap_gold"
|
||||
max_stack_count = 20
|
||||
in_inventory_width = 1
|
||||
in_inventory_height = 1
|
||||
texture = SubResource("1")
|
||||
slot_flags = 8
|
||||
default_properties = {
|
||||
"back_color": Color(0.67451, 0.270588, 0.972549, 1),
|
||||
"price": {
|
||||
"res://example/wyvernbox/item_types/consumable/coin_gold.tres": 10.0
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,19 @@
|
||||
[gd_resource type="Resource" load_steps=4 format=3 uid="uid://dyb3w176j3sco"]
|
||||
|
||||
[ext_resource type="Script" path="res://example/Items/item_type.gd" id="2"]
|
||||
[ext_resource type="Texture2D" uid="uid://dwi4ioxeauoc4" path="res://example/Items/item_icons/items.png" id="2_61lme"]
|
||||
|
||||
[sub_resource type="AtlasTexture" id="1"]
|
||||
atlas = ExtResource("2_61lme")
|
||||
region = Rect2(36, 24, 12, 12)
|
||||
|
||||
[resource]
|
||||
script = ExtResource("2")
|
||||
name = "metalscrap_iron"
|
||||
description = "desc_metalscrap_iron"
|
||||
max_stack_count = 20
|
||||
in_inventory_width = 1
|
||||
in_inventory_height = 1
|
||||
texture = SubResource("1")
|
||||
slot_flags = 8
|
||||
default_properties = {}
|
||||
@ -0,0 +1,21 @@
|
||||
[gd_resource type="Resource" load_steps=4 format=3 uid="uid://desvy1h36yy1s"]
|
||||
|
||||
[ext_resource type="Script" path="res://example/Items/item_type.gd" id="2"]
|
||||
[ext_resource type="Texture2D" uid="uid://dwi4ioxeauoc4" path="res://example/Items/item_icons/items.png" id="2_bon0y"]
|
||||
|
||||
[sub_resource type="AtlasTexture" id="1"]
|
||||
atlas = ExtResource("2_bon0y")
|
||||
region = Rect2(48, 36, 12, 12)
|
||||
|
||||
[resource]
|
||||
script = ExtResource("2")
|
||||
name = "metalscrap_wyvernite"
|
||||
description = "desc_metalscrap_wyvernite"
|
||||
max_stack_count = 20
|
||||
in_inventory_width = 1
|
||||
in_inventory_height = 1
|
||||
texture = SubResource("1")
|
||||
slot_flags = 8
|
||||
default_properties = {
|
||||
"back_color": Color(0.67451, 0.270588, 0.972549, 1)
|
||||
}
|
||||
@ -0,0 +1,24 @@
|
||||
[gd_resource type="Resource" load_steps=4 format=3 uid="uid://b0l5g2tgwvm3b"]
|
||||
|
||||
[ext_resource type="Texture2D" uid="uid://dwi4ioxeauoc4" path="res://example/Items/item_icons/items.png" id="1"]
|
||||
[ext_resource type="Script" path="res://example/Items/item_type.gd" id="2"]
|
||||
|
||||
[sub_resource type="AtlasTexture" id="1"]
|
||||
atlas = ExtResource("1")
|
||||
region = Rect2(36, 0, 12, 24)
|
||||
|
||||
[resource]
|
||||
script = ExtResource("2")
|
||||
name = "potion_blue"
|
||||
description = "desc_potion_blue"
|
||||
max_stack_count = 20
|
||||
in_inventory_width = 1
|
||||
in_inventory_height = 2
|
||||
texture = SubResource("1")
|
||||
slot_flags = 4
|
||||
default_properties = {
|
||||
"back_color": Color(0.67451, 0.270588, 0.972549, 1),
|
||||
"price": {
|
||||
"res://example/wyvernbox/item_types/consumable/coin_purple.tres": 5
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,21 @@
|
||||
[gd_resource type="Resource" load_steps=4 format=3 uid="uid://cbrsfa22sudf5"]
|
||||
|
||||
[ext_resource type="Texture2D" uid="uid://dwi4ioxeauoc4" path="res://example/Items/item_icons/items.png" id="1"]
|
||||
[ext_resource type="Script" path="res://example/Items/item_type.gd" id="2"]
|
||||
|
||||
[sub_resource type="AtlasTexture" id="1"]
|
||||
atlas = ExtResource("1")
|
||||
region = Rect2(24, 0, 12, 24)
|
||||
|
||||
[resource]
|
||||
script = ExtResource("2")
|
||||
name = "potion_purple"
|
||||
description = "desc_potion_purple"
|
||||
max_stack_count = 20
|
||||
in_inventory_width = 1
|
||||
in_inventory_height = 2
|
||||
texture = SubResource("1")
|
||||
slot_flags = 4
|
||||
default_properties = {
|
||||
"back_color": Color(0.67451, 0.270588, 0.972549, 1)
|
||||
}
|
||||
@ -0,0 +1,21 @@
|
||||
[gd_resource type="Resource" load_steps=4 format=3 uid="uid://crq178t8cp2g7"]
|
||||
|
||||
[ext_resource type="Texture2D" uid="uid://dwi4ioxeauoc4" path="res://example/Items/item_icons/items.png" id="1"]
|
||||
[ext_resource type="Script" path="res://example/Items/item_type.gd" id="2"]
|
||||
|
||||
[sub_resource type="AtlasTexture" id="1"]
|
||||
atlas = ExtResource("1")
|
||||
region = Rect2(12, 0, 12, 24)
|
||||
|
||||
[resource]
|
||||
script = ExtResource("2")
|
||||
name = "potion_red"
|
||||
description = "desc_potion_red"
|
||||
max_stack_count = 20
|
||||
in_inventory_width = 1
|
||||
in_inventory_height = 2
|
||||
texture = SubResource("1")
|
||||
slot_flags = 4
|
||||
default_properties = {
|
||||
"back_color": Color(0.67451, 0.270588, 0.972549, 1)
|
||||
}
|
||||
@ -0,0 +1,28 @@
|
||||
[gd_resource type="Resource" load_steps=4 format=3 uid="uid://d1sgj2djflire"]
|
||||
|
||||
[ext_resource type="Script" path="res://example/Items/item_type.gd" id="1"]
|
||||
[ext_resource type="Texture2D" uid="uid://dwi4ioxeauoc4" path="res://example/Items/item_icons/items.png" id="2_7y5px"]
|
||||
|
||||
[sub_resource type="AtlasTexture" id="1"]
|
||||
atlas = ExtResource("2_7y5px")
|
||||
region = Rect2(0, 192, 12, 12)
|
||||
|
||||
[resource]
|
||||
script = ExtResource("1")
|
||||
name = "ring_1"
|
||||
description = "desc_ring_1"
|
||||
max_stack_count = 1
|
||||
in_inventory_width = 1
|
||||
in_inventory_height = 1
|
||||
texture = SubResource("1")
|
||||
slot_flags = 16
|
||||
default_properties = {
|
||||
"back_color": Color(1, 0.65098, 0, 1),
|
||||
"price": {
|
||||
"res://example/wyvernbox/item_types/consumable/coin_gold.tres": 50,
|
||||
"res://example/wyvernbox/item_types/consumable/coin_purple.tres": 10
|
||||
},
|
||||
"stats": {
|
||||
"dodgerate": 8.0
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,28 @@
|
||||
[gd_resource type="Resource" load_steps=4 format=3 uid="uid://dwsqjeolbi2j6"]
|
||||
|
||||
[ext_resource type="Script" path="res://example/Items/item_type.gd" id="1"]
|
||||
[ext_resource type="Texture2D" uid="uid://dwi4ioxeauoc4" path="res://example/Items/item_icons/items.png" id="2_a2wrg"]
|
||||
|
||||
[sub_resource type="AtlasTexture" id="1"]
|
||||
atlas = ExtResource("2_a2wrg")
|
||||
region = Rect2(12, 192, 12, 12)
|
||||
|
||||
[resource]
|
||||
script = ExtResource("1")
|
||||
name = "ring_2"
|
||||
description = "desc_ring_2"
|
||||
max_stack_count = 1
|
||||
in_inventory_width = 1
|
||||
in_inventory_height = 1
|
||||
texture = SubResource("1")
|
||||
slot_flags = 16
|
||||
default_properties = {
|
||||
"back_color": Color(1, 0.65098, 0, 1),
|
||||
"price": {
|
||||
"res://example/wyvernbox/item_types/consumable/coin_gold.tres": 50,
|
||||
"res://example/wyvernbox/item_types/consumable/coin_purple.tres": 10
|
||||
},
|
||||
"stats": {
|
||||
"health": 8.0
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,21 @@
|
||||
[gd_resource type="Resource" load_steps=4 format=3 uid="uid://7vy4rqrqnt4q"]
|
||||
|
||||
[ext_resource type="Script" path="res://example/Items/item_type.gd" id="2"]
|
||||
[ext_resource type="Texture2D" uid="uid://dwi4ioxeauoc4" path="res://example/Items/item_icons/items.png" id="2_oismr"]
|
||||
|
||||
[sub_resource type="AtlasTexture" id="1"]
|
||||
atlas = ExtResource("2_oismr")
|
||||
region = Rect2(96, 24, 12, 24)
|
||||
|
||||
[resource]
|
||||
script = ExtResource("2")
|
||||
name = "scroll_enchant"
|
||||
description = "desc_scroll_enchant"
|
||||
max_stack_count = 20
|
||||
in_inventory_width = 1
|
||||
in_inventory_height = 2
|
||||
texture = SubResource("1")
|
||||
slot_flags = 6
|
||||
default_properties = {
|
||||
"back_color": Color(0.67451, 0.270588, 0.972549, 1)
|
||||
}
|
||||
@ -0,0 +1,28 @@
|
||||
[gd_resource type="Resource" load_steps=4 format=3 uid="uid://ckgvaqimbvnv8"]
|
||||
|
||||
[ext_resource type="Script" path="res://example/Items/item_type.gd" id="2"]
|
||||
[ext_resource type="Texture2D" uid="uid://dwi4ioxeauoc4" path="res://example/Items/item_icons/items.png" id="2_8lhvp"]
|
||||
|
||||
[sub_resource type="AtlasTexture" id="1"]
|
||||
atlas = ExtResource("2_8lhvp")
|
||||
region = Rect2(0, 48, 12, 24)
|
||||
|
||||
[resource]
|
||||
script = ExtResource("2")
|
||||
name = "wand_purple"
|
||||
description = "desc_wand_purple"
|
||||
max_stack_count = 1
|
||||
in_inventory_width = 1
|
||||
in_inventory_height = 2
|
||||
texture = SubResource("1")
|
||||
slot_flags = 9
|
||||
default_properties = {
|
||||
"back_color": Color(1, 0.65098, 0, 1),
|
||||
"price": {
|
||||
"res://example/wyvernbox/item_types/consumable/coin_gold.tres": 50,
|
||||
"res://example/wyvernbox/item_types/consumable/coin_purple.tres": 10
|
||||
},
|
||||
"stats": {
|
||||
"magic": 16.0
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,28 @@
|
||||
[gd_resource type="Resource" load_steps=4 format=3 uid="uid://napa4vmvmphs"]
|
||||
|
||||
[ext_resource type="Script" path="res://example/Items/item_type.gd" id="2"]
|
||||
[ext_resource type="Texture2D" uid="uid://dwi4ioxeauoc4" path="res://example/Items/item_icons/items.png" id="2_cihvk"]
|
||||
|
||||
[sub_resource type="AtlasTexture" id="1"]
|
||||
atlas = ExtResource("2_cihvk")
|
||||
region = Rect2(12, 48, 12, 24)
|
||||
|
||||
[resource]
|
||||
script = ExtResource("2")
|
||||
name = "wand_red"
|
||||
description = "desc_wand_red"
|
||||
max_stack_count = 1
|
||||
in_inventory_width = 1
|
||||
in_inventory_height = 2
|
||||
texture = SubResource("1")
|
||||
slot_flags = 9
|
||||
default_properties = {
|
||||
"back_color": Color(1, 0.65098, 0, 1),
|
||||
"price": {
|
||||
"res://example/wyvernbox/item_types/consumable/coin_gold.tres": 50,
|
||||
"res://example/wyvernbox/item_types/consumable/coin_purple.tres": 10
|
||||
},
|
||||
"stats": {
|
||||
"spell_damage": 8.0
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,19 @@
|
||||
[gd_resource type="Resource" load_steps=4 format=3 uid="uid://uge4rk0vtwxs"]
|
||||
|
||||
[ext_resource type="Script" path="res://example/Items/item_type.gd" id="2"]
|
||||
[ext_resource type="Texture2D" uid="uid://dwi4ioxeauoc4" path="res://example/Items/item_icons/items.png" id="2_7ia04"]
|
||||
|
||||
[sub_resource type="AtlasTexture" id="1"]
|
||||
atlas = ExtResource("2_7ia04")
|
||||
region = Rect2(60, 36, 24, 12)
|
||||
|
||||
[resource]
|
||||
script = ExtResource("2")
|
||||
name = "wood"
|
||||
description = "desc_wood"
|
||||
max_stack_count = 20
|
||||
in_inventory_width = 2
|
||||
in_inventory_height = 1
|
||||
texture = SubResource("1")
|
||||
slot_flags = 8
|
||||
default_properties = {}
|
||||
Binary file not shown.
|
After Width: | Height: | Size: 2.0 KiB |
@ -0,0 +1,34 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://b7e3wp7i33ye5"
|
||||
path="res://.godot/imported/all_icons.png-28909f8bd099d79f5d095eb93a9167e6.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://example/Random Upgrades/icons/all_icons.png"
|
||||
dest_files=["res://.godot/imported/all_icons.png-28909f8bd099d79f5d095eb93a9167e6.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
|
||||
@ -0,0 +1,7 @@
|
||||
[gd_resource type="AtlasTexture" load_steps=2 format=3 uid="uid://c3bx6kf7frbwk"]
|
||||
|
||||
[ext_resource type="Texture2D" uid="uid://b7e3wp7i33ye5" path="res://example/Random Upgrades/icons/all_icons.png" id="1"]
|
||||
|
||||
[resource]
|
||||
atlas = ExtResource("1")
|
||||
region = Rect2(0, 0, 64, 64)
|
||||
@ -0,0 +1,7 @@
|
||||
[gd_resource type="AtlasTexture" load_steps=2 format=3 uid="uid://cak6lra5ej68c"]
|
||||
|
||||
[ext_resource type="Texture2D" uid="uid://b7e3wp7i33ye5" path="res://example/Random Upgrades/icons/all_icons.png" id="1_6pmrx"]
|
||||
|
||||
[resource]
|
||||
atlas = ExtResource("1_6pmrx")
|
||||
region = Rect2(64, 128, 64, 64)
|
||||
@ -0,0 +1,7 @@
|
||||
[gd_resource type="AtlasTexture" load_steps=2 format=3 uid="uid://dkc8d2p0xbl1n"]
|
||||
|
||||
[ext_resource type="Texture2D" uid="uid://b7e3wp7i33ye5" path="res://example/Random Upgrades/icons/all_icons.png" id="1_lk0lg"]
|
||||
|
||||
[resource]
|
||||
atlas = ExtResource("1_lk0lg")
|
||||
region = Rect2(128, 128, 64, 64)
|
||||
@ -0,0 +1,7 @@
|
||||
[gd_resource type="AtlasTexture" load_steps=2 format=3 uid="uid://ciiykhulvckp7"]
|
||||
|
||||
[ext_resource type="Texture2D" uid="uid://b7e3wp7i33ye5" path="res://example/Random Upgrades/icons/all_icons.png" id="1_fd56b"]
|
||||
|
||||
[resource]
|
||||
atlas = ExtResource("1_fd56b")
|
||||
region = Rect2(192, 128, 64, 64)
|
||||
@ -0,0 +1,7 @@
|
||||
[gd_resource type="AtlasTexture" load_steps=2 format=3 uid="uid://dki1d3uksoyfj"]
|
||||
|
||||
[ext_resource type="Texture2D" uid="uid://b7e3wp7i33ye5" path="res://example/Random Upgrades/icons/all_icons.png" id="1_ds6ve"]
|
||||
|
||||
[resource]
|
||||
atlas = ExtResource("1_ds6ve")
|
||||
region = Rect2(0, 192, 64, 64)
|
||||
@ -0,0 +1,7 @@
|
||||
[gd_resource type="AtlasTexture" load_steps=2 format=3 uid="uid://cpenn4qsfhx28"]
|
||||
|
||||
[ext_resource type="Texture2D" uid="uid://b7e3wp7i33ye5" path="res://example/Random Upgrades/icons/all_icons.png" id="1_icesd"]
|
||||
|
||||
[resource]
|
||||
atlas = ExtResource("1_icesd")
|
||||
region = Rect2(64, 192, 64, 64)
|
||||
@ -0,0 +1,7 @@
|
||||
[gd_resource type="AtlasTexture" load_steps=2 format=3 uid="uid://cm6cb8uou75x0"]
|
||||
|
||||
[ext_resource type="Texture2D" uid="uid://b7e3wp7i33ye5" path="res://example/Random Upgrades/icons/all_icons.png" id="1_mlqxi"]
|
||||
|
||||
[resource]
|
||||
atlas = ExtResource("1_mlqxi")
|
||||
region = Rect2(128, 192, 64, 64)
|
||||
@ -0,0 +1,7 @@
|
||||
[gd_resource type="AtlasTexture" load_steps=2 format=3 uid="uid://0c7ngrkwn42u"]
|
||||
|
||||
[ext_resource type="Texture2D" uid="uid://b7e3wp7i33ye5" path="res://example/Random Upgrades/icons/all_icons.png" id="1_jk82p"]
|
||||
|
||||
[resource]
|
||||
atlas = ExtResource("1_jk82p")
|
||||
region = Rect2(192, 192, 64, 64)
|
||||
@ -0,0 +1,7 @@
|
||||
[gd_resource type="AtlasTexture" load_steps=2 format=3 uid="uid://dfpwu4ra3fxgx"]
|
||||
|
||||
[ext_resource type="Texture2D" uid="uid://b7e3wp7i33ye5" path="res://example/Random Upgrades/icons/all_icons.png" id="1"]
|
||||
|
||||
[resource]
|
||||
atlas = ExtResource("1")
|
||||
region = Rect2(64, 0, 64, 64)
|
||||
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue