diff options
Diffstat (limited to 'Archipelago/teleport.gd')
| -rw-r--r-- | Archipelago/teleport.gd | 27 |
1 files changed, 27 insertions, 0 deletions
| diff --git a/Archipelago/teleport.gd b/Archipelago/teleport.gd new file mode 100644 index 0000000..532f081 --- /dev/null +++ b/Archipelago/teleport.gd | |||
| @@ -0,0 +1,27 @@ | |||
| 1 | extends "res://scripts/teleport.gd" | ||
| 2 | |||
| 3 | var _unlocked = true | ||
| 4 | |||
| 5 | |||
| 6 | func _ready(): | ||
| 7 | var apclient = global.get_node("Archipelago") | ||
| 8 | if self.get_parent().name == "Teleporter Warps": | ||
| 9 | if apclient._sunwarp_access != apclient.kSUNWARP_ACCESS_NORMAL: | ||
| 10 | _unlocked = false | ||
| 11 | elif apclient._door_shuffle and !apclient.warpIsVanilla(self.get_parent().name + "/" + self.name): | ||
| 12 | _unlocked = false | ||
| 13 | |||
| 14 | |||
| 15 | func _body_entered(body): | ||
| 16 | if _unlocked: | ||
| 17 | ._body_entered(body) | ||
| 18 | |||
| 19 | if body.is_in_group("player"): | ||
| 20 | var apclient = global.get_node("Archipelago") | ||
| 21 | if !apclient._pilgrimage_enabled: | ||
| 22 | global.sunwarp = 1 | ||
| 23 | body.get_node("pivot/camera/sunwarp_background").visible = false | ||
| 24 | |||
| 25 | |||
| 26 | func unlock_warp(): | ||
| 27 | _unlocked = true | ||
