2018-05-29 00:08:30 -04:00
|
|
|
#
|
|
|
|
# Copyright (C) 2018 Sage Vaillancourt, sagev9000@gmail.com
|
|
|
|
#
|
|
|
|
# This file is part of Fronter.
|
|
|
|
#
|
|
|
|
# Fronter is free software: you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU General Public License as published by
|
|
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
|
|
# (at your option) any later version.
|
|
|
|
#
|
|
|
|
# Fronter is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with Fronter. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
#
|
|
|
|
|
2018-05-23 01:40:45 -04:00
|
|
|
extends Area2D
|
|
|
|
|
|
|
|
signal dead
|
|
|
|
export (int) var SPEED
|
|
|
|
var screensize
|
2018-05-26 02:55:17 -04:00
|
|
|
var health_multi = 1
|
2018-05-23 01:40:45 -04:00
|
|
|
|
2018-06-05 16:31:55 -04:00
|
|
|
var boss = false
|
2018-05-23 03:57:15 -04:00
|
|
|
var health = 150
|
2018-05-23 01:40:45 -04:00
|
|
|
var hit_timer = 1000
|
|
|
|
|
|
|
|
func _ready():
|
|
|
|
connect("area_entered", self, "hit")
|
|
|
|
pass
|
|
|
|
|
2018-05-23 21:35:16 -04:00
|
|
|
func _on_Visibility_screen_exited():
|
|
|
|
queue_free()
|
2018-05-23 01:40:45 -04:00
|
|
|
|
|
|
|
func hit(who):
|
2018-06-03 11:11:27 -04:00
|
|
|
health -= who.damage/health_multi
|
2018-05-23 01:40:45 -04:00
|
|
|
# $AnimatedSprite.frame = 1
|
|
|
|
hit_timer = 0
|
|
|
|
|
|
|
|
var velocity = Vector2()
|
|
|
|
|
|
|
|
func _process(delta):
|
|
|
|
if health <= 0:
|
2018-11-12 23:17:53 -05:00
|
|
|
emit_signal("dead", 25) # was 40 # was 50
|
2018-05-23 01:40:45 -04:00
|
|
|
queue_free()
|
2018-11-12 23:17:53 -05:00
|
|
|
if position.x < -100:
|
|
|
|
emit_signal("dead", 0)
|
|
|
|
queue_free()
|
|
|
|
|
2018-05-23 01:40:45 -04:00
|
|
|
if hit_timer < 0.15:
|
|
|
|
hit_timer += delta
|
|
|
|
elif hit_timer < 0.25:
|
|
|
|
hit_timer += delta
|
|
|
|
else:
|
|
|
|
velocity.x -= 1
|
|
|
|
# $AnimatedSprite.frame = 0
|
|
|
|
# the player's movement vector
|
|
|
|
|
|
|
|
if velocity.length() > 0:
|
|
|
|
velocity = velocity.normalized() * SPEED
|
|
|
|
|
2018-11-12 23:17:53 -05:00
|
|
|
var health_bar = Vector2(((health * 2.5) - 157), -225)
|
|
|
|
$Line2D.set_point_position( 1, health_bar )
|
2018-05-23 01:40:45 -04:00
|
|
|
|
|
|
|
position += velocity * delta
|