Fixed a few inconsistencies

This commit is contained in:
mono 2021-05-15 16:45:14 +02:00
parent 668b39f291
commit 4821778f4d
3 changed files with 12 additions and 2 deletions

View File

@ -1,4 +1,4 @@
[gd_scene load_steps=21 format=2]
[gd_scene load_steps=22 format=2]
[ext_resource path="res://addons/rpgh_engine/nodes/map/map.tscn" type="PackedScene" id=1]
[ext_resource path="res://game/maps/hobby_room_corrupted/pool_table.gd" type="Script" id=2]
@ -15,6 +15,7 @@
[ext_resource path="res://game/maps/hobby_room_corrupted/vase.gd" type="Script" id=13]
[ext_resource path="res://game/maps/hobby_room_corrupted/qwenn_enters.gd" type="Script" id=14]
[ext_resource path="res://addons/rpgh_engine/assets/graphics/template_body_sheet.png" type="Texture" id=15]
[ext_resource path="res://addons/rpgh_engine/ingame/humanoid/humanoid.tscn" type="PackedScene" id=16]
[sub_resource type="RectangleShape2D" id=1]
extents = Vector2( 12, 12 )
@ -190,3 +191,6 @@ texture = ExtResource( 15 )
vframes = 8
hframes = 5
frame = 25
[node name="Humanoid" parent="." index="8" instance=ExtResource( 16 )]
position = Vector2( 185, 132 )

View File

@ -3,7 +3,7 @@ extends RPGH_Event
func default():
textbox("12")
if (is_first_run()):
if is_first_run():
textbox("13", DataBase.AKO_01)
textbox("14", DataBase.AKO_02)
if (map.talked_to_bats_or_junk.value):

View File

@ -20,6 +20,11 @@ _global_script_classes=[ {
"path": "res://addons/rpgh_engine/nodes/event/event.gd"
}, {
"base": "YSort",
"class": "RPGH_Humanoid",
"language": "GDScript",
"path": "res://addons/rpgh_engine/ingame/humanoid/humanoid.gd"
}, {
"base": "YSort",
"class": "RPGH_Map",
"language": "GDScript",
"path": "res://addons/rpgh_engine/nodes/map/map.gd"
@ -32,6 +37,7 @@ _global_script_classes=[ {
_global_script_class_icons={
"DataBase": "",
"RPGH_Event": "res://addons/rpgh_engine/nodes/event/icon_event.svg",
"RPGH_Humanoid": "",
"RPGH_Map": "res://addons/rpgh_engine/nodes/map/icon_map.svg",
"RPGH_Trigger": "res://addons/rpgh_engine/nodes/trigger/icon_trigger.svg"
}