Move some items to inventory folder and names cleanup
This commit is contained in:
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -298,7 +298,7 @@ func perform_inputevent_on_object(
|
|||||||
dont_interact = context.dont_interact_on_arrival
|
dont_interact = context.dont_interact_on_arrival
|
||||||
|
|
||||||
var player_global_pos = escoria.main.current_scene.player.global_position
|
var player_global_pos = escoria.main.current_scene.player.global_position
|
||||||
var clicked_position = event.position
|
# var clicked_position = event.position
|
||||||
|
|
||||||
# Using this instead of is_equal_approx due to
|
# Using this instead of is_equal_approx due to
|
||||||
# https://github.com/godotengine/godot/issues/65257
|
# https://github.com/godotengine/godot/issues/65257
|
||||||
|
|||||||
@@ -3,7 +3,7 @@
|
|||||||
[ext_resource path="res://gymkhana/items/inventory/assets/bombona.png" type="Texture" id=1]
|
[ext_resource path="res://gymkhana/items/inventory/assets/bombona.png" type="Texture" id=1]
|
||||||
[ext_resource path="res://addons/escoria-core/game/core-scripts/esc_location.gd" type="Script" id=3]
|
[ext_resource path="res://addons/escoria-core/game/core-scripts/esc_location.gd" type="Script" id=3]
|
||||||
|
|
||||||
[node name="i_bombona" type="Area2D"]
|
[node name="bombona" type="Area2D"]
|
||||||
pause_mode = 1
|
pause_mode = 1
|
||||||
position = Vector2( 0, -1 )
|
position = Vector2( 0, -1 )
|
||||||
|
|
||||||
@@ -2,8 +2,8 @@
|
|||||||
say player "Es naranja"
|
say player "Es naranja"
|
||||||
|
|
||||||
:action2
|
:action2
|
||||||
set_active i_bombona2 false
|
set_active bombona2 false
|
||||||
inventory_add i_bombona2
|
inventory_add bombona2
|
||||||
|
|
||||||
:action3
|
:action3
|
||||||
say player "Es el segundo bolsillo más grande que he visto nunca"
|
say player "Es el segundo bolsillo más grande que he visto nunca"
|
||||||
@@ -3,8 +3,8 @@ say current_player "Parece una caja de herramientas"
|
|||||||
|
|
||||||
:action2
|
:action2
|
||||||
say current_player "Podria ser util!!"
|
say current_player "Podria ser util!!"
|
||||||
set_active i_caja_herramientas false
|
set_active caja_herramientas false
|
||||||
inventory_add i_caja_herramientas
|
inventory_add caja_herramientas
|
||||||
|
|
||||||
:action3
|
:action3
|
||||||
say current_player "Hay de too!"
|
say current_player "Hay de too!"
|
||||||
@@ -9,7 +9,7 @@ extents = Vector2( 22.5, 12.5 )
|
|||||||
[node name="ESCItemWithTooltip" type="Area2D"]
|
[node name="ESCItemWithTooltip" type="Area2D"]
|
||||||
pause_mode = 1
|
pause_mode = 1
|
||||||
script = ExtResource( 1 )
|
script = ExtResource( 1 )
|
||||||
global_id = "i_caja_herramientas"
|
global_id = "caja_herramientas"
|
||||||
inventory_texture = ExtResource( 2 )
|
inventory_texture = ExtResource( 2 )
|
||||||
dialog_color = Color( 1, 1, 1, 1 )
|
dialog_color = Color( 1, 1, 1, 1 )
|
||||||
animations = null
|
animations = null
|
||||||
@@ -6,7 +6,7 @@ say player "Parece que veo a Mikel"
|
|||||||
play_snd res://game/sfx/sounds/doorOpen_2.ogg
|
play_snd res://game/sfx/sounds/doorOpen_2.ogg
|
||||||
change_scene "res://gymkhana/rooms/interior_cocina/interior_cocina.tscn"
|
change_scene "res://gymkhana/rooms/interior_cocina/interior_cocina.tscn"
|
||||||
|
|
||||||
:action3 i_bombona2
|
:action3 bombona2
|
||||||
say player "He usado la 'bombona' con la puerta"
|
say player "He usado la 'bombona' con la puerta"
|
||||||
# > [eq r5_dialog_advance 2]
|
# > [eq r5_dialog_advance 2]
|
||||||
# say player "I already fixed the water leak."
|
# say player "I already fixed the water leak."
|
||||||
@@ -19,5 +19,5 @@ say player "He usado la 'bombona' con la puerta"
|
|||||||
# accept_input ALL
|
# accept_input ALL
|
||||||
|
|
||||||
|
|
||||||
:action4 i_bombona2
|
:action4 bombona2
|
||||||
say player "No creo que les haga gracia"
|
say player "No creo que les haga gracia"
|
||||||
|
|||||||
@@ -44,10 +44,10 @@ set_global loom_conversation_done false
|
|||||||
!
|
!
|
||||||
#set_gui_visible true
|
#set_gui_visible true
|
||||||
|
|
||||||
:action3 i_caja_herramientas
|
:action3 caja_herramientas
|
||||||
say eneko_smoking "No quiero una caja vacía"
|
say eneko_smoking "No quiero una caja vacía"
|
||||||
|
|
||||||
:action3 i_bombona2
|
:action3 bombona2
|
||||||
> [eq bombona2_offered 1]
|
> [eq bombona2_offered 1]
|
||||||
say eneko_smoking "¡No vuelvas a hacerlo, es peligroso!"
|
say eneko_smoking "¡No vuelvas a hacerlo, es peligroso!"
|
||||||
set_global bombona2_offered 2
|
set_global bombona2_offered 2
|
||||||
|
|||||||
@@ -9,11 +9,11 @@
|
|||||||
[ext_resource path="res://gymkhana/characters/oier/oier.tscn" type="PackedScene" id=7]
|
[ext_resource path="res://gymkhana/characters/oier/oier.tscn" type="PackedScene" id=7]
|
||||||
[ext_resource path="res://gymkhana/rooms/trasera_cocina/assets/columna.png" type="Texture" id=25]
|
[ext_resource path="res://gymkhana/rooms/trasera_cocina/assets/columna.png" type="Texture" id=25]
|
||||||
[ext_resource path="res://gymkhana/rooms/trasera_cocina/assets/background trasera cocina-pix-height.png" type="Texture" id=26]
|
[ext_resource path="res://gymkhana/rooms/trasera_cocina/assets/background trasera cocina-pix-height.png" type="Texture" id=26]
|
||||||
[ext_resource path="res://gymkhana/items/inventory/I_Bombona.tscn" type="PackedScene" id=27]
|
[ext_resource path="res://gymkhana/items/inventory/bombona.tscn" type="PackedScene" id=27]
|
||||||
[ext_resource path="res://gymkhana/addons/escoria-ui-return-monkey-island/esc_item_with_tooltip.gd" type="Script" id=28]
|
[ext_resource path="res://gymkhana/addons/escoria-ui-return-monkey-island/esc_item_with_tooltip.gd" type="Script" id=28]
|
||||||
[ext_resource path="res://gymkhana/items/inventory/assets/bombona-inv.png" type="Texture" id=29]
|
[ext_resource path="res://gymkhana/items/inventory/assets/bombona-inv.png" type="Texture" id=29]
|
||||||
[ext_resource path="res://gymkhana/characters/eneko/eneko_smoking.tscn" type="PackedScene" id=30]
|
[ext_resource path="res://gymkhana/characters/eneko/eneko_smoking.tscn" type="PackedScene" id=30]
|
||||||
[ext_resource path="res://gymkhana/items/inventory/I_caja_herramientas.tscn" type="PackedScene" id=31]
|
[ext_resource path="res://gymkhana/items/inventory/caja_herramientas.tscn" type="PackedScene" id=31]
|
||||||
|
|
||||||
[sub_resource type="NavigationPolygon" id=1]
|
[sub_resource type="NavigationPolygon" id=1]
|
||||||
vertices = PoolVector2Array( 155, 425, 129, 383, 242, 376, 1511, 445, 1512, 574, 193, 574, 1133, 474, 263, 374, 359, 376, 385, 397, 442, 395, 464, 432, 506, 457, 725, 472, 794, 462, 846, 467, 864, 482, 1318, 435, 1367, 411, 1425, 417, 749, 460, 584, 468, 1249, 454, 981, 480 )
|
vertices = PoolVector2Array( 155, 425, 129, 383, 242, 376, 1511, 445, 1512, 574, 193, 574, 1133, 474, 263, 374, 359, 376, 385, 397, 442, 395, 464, 432, 506, 457, 725, 472, 794, 462, 846, 467, 864, 482, 1318, 435, 1367, 411, 1425, 417, 749, 460, 584, 468, 1249, 454, 981, 480 )
|
||||||
@@ -67,8 +67,8 @@ is_exit = true
|
|||||||
dialog_color = Color( 1, 1, 1, 1 )
|
dialog_color = Color( 1, 1, 1, 1 )
|
||||||
action1_text = "Esto es una puerta y tiene una descripcion mu larga"
|
action1_text = "Esto es una puerta y tiene una descripcion mu larga"
|
||||||
action2_text = "Entrar! con descricion..."
|
action2_text = "Entrar! con descricion..."
|
||||||
action3_target_texts = { "i_bombona2": "Usar la bombona con la puerta?" }
|
action3_target_texts = { "bombona2": "Usar la bombona con la puerta?" }
|
||||||
action4_target_texts = { "i_bombona2": "Lanzarla contra la puerta" }
|
action4_target_texts = { "bombona2": "Lanzarla contra la puerta" }
|
||||||
target_when_selected_action_is_in = [ "action3", "action4" ]
|
target_when_selected_action_is_in = [ "action3", "action4" ]
|
||||||
animations = SubResource( 2 )
|
animations = SubResource( 2 )
|
||||||
|
|
||||||
@@ -84,8 +84,8 @@ script = ExtResource( 3 )
|
|||||||
[node name="bombona" parent="Hotspots" instance=ExtResource( 27 )]
|
[node name="bombona" parent="Hotspots" instance=ExtResource( 27 )]
|
||||||
position = Vector2( 583, 414 )
|
position = Vector2( 583, 414 )
|
||||||
script = ExtResource( 28 )
|
script = ExtResource( 28 )
|
||||||
global_id = "i_bombona"
|
global_id = "bombona"
|
||||||
esc_script = "res://gymkhana/rooms/trasera_cocina/esc/i_bombona.esc"
|
esc_script = "res://gymkhana/rooms/trasera_cocina/esc/bombona.esc"
|
||||||
tooltip_name = "Mirar bombona"
|
tooltip_name = "Mirar bombona"
|
||||||
combine_when_selected_action_is_in = [ ]
|
combine_when_selected_action_is_in = [ ]
|
||||||
inventory_texture = ExtResource( 29 )
|
inventory_texture = ExtResource( 29 )
|
||||||
@@ -96,8 +96,8 @@ animations = null
|
|||||||
[node name="bombona2" parent="Hotspots" instance=ExtResource( 27 )]
|
[node name="bombona2" parent="Hotspots" instance=ExtResource( 27 )]
|
||||||
position = Vector2( 355, 409 )
|
position = Vector2( 355, 409 )
|
||||||
script = ExtResource( 28 )
|
script = ExtResource( 28 )
|
||||||
global_id = "i_bombona2"
|
global_id = "bombona2"
|
||||||
esc_script = "res://gymkhana/rooms/trasera_cocina/esc/i_bombona2.esc"
|
esc_script = "res://gymkhana/items/inventory/bombona2.esc"
|
||||||
combine_when_selected_action_is_in = [ "action3" ]
|
combine_when_selected_action_is_in = [ "action3" ]
|
||||||
use_from_inventory_only = true
|
use_from_inventory_only = true
|
||||||
inventory_texture = ExtResource( 29 )
|
inventory_texture = ExtResource( 29 )
|
||||||
@@ -120,7 +120,7 @@ tooltip_name = "Objervar sujeto"
|
|||||||
dialog_color = Color( 0, 1, 0.462745, 1 )
|
dialog_color = Color( 0, 1, 0.462745, 1 )
|
||||||
action1_text = "Objervar sujeto"
|
action1_text = "Objervar sujeto"
|
||||||
action2_text = "Hablar"
|
action2_text = "Hablar"
|
||||||
action3_target_texts = { "i_bombona2": "Toma, un regalo", "i_caja_herramientas": "Regalar" }
|
action3_target_texts = { "bombona2": "Toma, un regalo", "caja_herramientas": "Regalar" }
|
||||||
target_when_selected_action_is_in = [ "action3" ]
|
target_when_selected_action_is_in = [ "action3" ]
|
||||||
selectable = true
|
selectable = true
|
||||||
|
|
||||||
@@ -130,10 +130,10 @@ script = ExtResource( 3 )
|
|||||||
global_id = "eneko_smoking"
|
global_id = "eneko_smoking"
|
||||||
|
|
||||||
[node name="caja_herramientas" parent="." instance=ExtResource( 31 )]
|
[node name="caja_herramientas" parent="." instance=ExtResource( 31 )]
|
||||||
esc_script = "res://gymkhana/rooms/trasera_cocina/esc/i_caja_herramientas.esc"
|
esc_script = "res://gymkhana/items/inventory/caja_herramientas.esc"
|
||||||
position = Vector2( 707, 522 )
|
position = Vector2( 707, 522 )
|
||||||
|
|
||||||
[node name="ESCLocation" type="Position2D" parent="ESCItemWithTooltip"]
|
[node name="ESCLocation" type="Position2D" parent="ESCItemWithTooltip"]
|
||||||
position = Vector2( -51, 69 )
|
position = Vector2( -51, 69 )
|
||||||
script = ExtResource( 3 )
|
script = ExtResource( 3 )
|
||||||
global_id = "l_caja_herramientas"
|
global_id = "caja_herramientas"
|
||||||
|
|||||||
Reference in New Issue
Block a user