Basically putting all the translation stuff together before I refactor things to use it.
This commit is contained in:
45
scenes/Singletons/Item.tscn
Normal file
45
scenes/Singletons/Item.tscn
Normal file
@@ -0,0 +1,45 @@
|
||||
[gd_scene load_steps=5 format=3 uid="uid://mfxht4d8pvjj"]
|
||||
|
||||
[ext_resource type="Script" uid="uid://1vd57s0j3b2o" path="res://scripts/Singleton/Item.gd" id="1_sv510"]
|
||||
[ext_resource type="Script" uid="uid://dipe47ljyvycv" path="res://scripts/Item/ingredients/ItemOnion.gd" id="2_w2ka5"]
|
||||
[ext_resource type="Script" uid="uid://b6v2o563casay" path="res://scripts/Item/medicine/ItemPotion.gd" id="3_q4yin"]
|
||||
[ext_resource type="Script" uid="uid://c6t5tprnd23t0" path="res://scripts/Item/Item.gd" id="3_v1lpn"]
|
||||
|
||||
[node name="Item" type="Node"]
|
||||
script = ExtResource("1_sv510")
|
||||
metadata/_custom_type_script = "uid://1vd57s0j3b2o"
|
||||
|
||||
[node name="Ingredients" type="Node" parent="."]
|
||||
|
||||
[node name="Onion" type="Node" parent="Ingredients"]
|
||||
script = ExtResource("2_w2ka5")
|
||||
title = "item.onion.title"
|
||||
description_text = "item.onion.description"
|
||||
type = 2
|
||||
metadata/_custom_type_script = "uid://b6v2o563casay"
|
||||
|
||||
[node name="Item" type="Node" parent="Ingredients"]
|
||||
script = ExtResource("3_v1lpn")
|
||||
title = "item.sweet_potato.name"
|
||||
description_text = "item.sweet_potato.description"
|
||||
type = 3
|
||||
metadata/_custom_type_script = "uid://c6t5tprnd23t0"
|
||||
|
||||
[node name="Medicine" type="Node" parent="."]
|
||||
|
||||
[node name="Item" type="Node" parent="Medicine"]
|
||||
script = ExtResource("3_q4yin")
|
||||
title = "item.potion.name"
|
||||
description_text = "item.potion.description"
|
||||
category = 0
|
||||
metadata/_custom_type_script = "uid://b6v2o563casay"
|
||||
|
||||
[node name="Food" type="Node" parent="."]
|
||||
|
||||
[node name="Item" type="Node" parent="Food"]
|
||||
script = ExtResource("3_v1lpn")
|
||||
title = "item.baked_sweet_potato.name"
|
||||
description_text = "item.baked_sweet_potato.description"
|
||||
type = 4
|
||||
category = 3
|
||||
metadata/_custom_type_script = "uid://c6t5tprnd23t0"
|
Reference in New Issue
Block a user