mirror of
https://gitlab.com/MaddoScientisto/cirnogodot.git
synced 2026-06-17 10:23:48 +00:00
New Modifier
This commit is contained in:
parent
50c111ee28
commit
019f7d7ca0
18 changed files with 423 additions and 45 deletions
48
Resources/BossPhases/Rumia_SP1.tres
Normal file
48
Resources/BossPhases/Rumia_SP1.tres
Normal file
|
|
@ -0,0 +1,48 @@
|
|||
[gd_resource type="Resource" script_class="BossPhase" load_steps=9 format=3 uid="uid://ccj0cqbveey8c"]
|
||||
|
||||
[ext_resource type="PackedScene" uid="uid://dohakkayqj4w2" path="res://Scenes/Weapons/Bullets/enemyBullet_green.tscn" id="1_o4um1"]
|
||||
[ext_resource type="Script" path="res://Scripts/Resources/SpeedModifier.cs" id="2_8gbml"]
|
||||
[ext_resource type="Script" path="res://Scripts/AttackPatterns/SpiralPattern.cs" id="2_7268a"]
|
||||
[ext_resource type="Script" path="res://Scripts/Resources/BossPhase.cs" id="3_o6234"]
|
||||
[ext_resource type="PackedScene" uid="uid://by2rk6gx67f7e" path="res://Scenes/Weapons/Bullets/enemyBullet_yellow.tscn" id="4_ruawj"]
|
||||
|
||||
[sub_resource type="Resource" id="Resource_l3ln6"]
|
||||
script = ExtResource("2_8gbml")
|
||||
ModifierType = 1
|
||||
Easing = 0
|
||||
Invert = false
|
||||
MinimumSpeed = 10.0
|
||||
ScalingFactor = 10.0
|
||||
|
||||
[sub_resource type="Resource" id="Resource_0v4v8"]
|
||||
script = ExtResource("2_7268a")
|
||||
BulletScene = ExtResource("1_o4um1")
|
||||
bulletSpeed = 80.0
|
||||
bulletCount = 9
|
||||
rotationSpeed = 0.0
|
||||
_rotationOffset = 50.0
|
||||
duration = 1.0
|
||||
burstInterval = 1.0
|
||||
spread = 180.0
|
||||
owner = 2
|
||||
_modifier = SubResource("Resource_l3ln6")
|
||||
WaitForCompletion = true
|
||||
|
||||
[sub_resource type="Resource" id="Resource_7yi74"]
|
||||
script = ExtResource("2_7268a")
|
||||
BulletScene = ExtResource("4_ruawj")
|
||||
bulletSpeed = 80.0
|
||||
bulletCount = 9
|
||||
rotationSpeed = 0.0
|
||||
_rotationOffset = -50.0
|
||||
duration = 1.0
|
||||
burstInterval = 1.0
|
||||
spread = 180.0
|
||||
owner = 2
|
||||
_modifier = SubResource("Resource_l3ln6")
|
||||
WaitForCompletion = true
|
||||
|
||||
[resource]
|
||||
script = ExtResource("3_o6234")
|
||||
Threshold = 800
|
||||
Patterns = Array[Resource]([SubResource("Resource_0v4v8"), SubResource("Resource_7yi74")])
|
||||
|
|
@ -1,6 +1,6 @@
|
|||
[gd_resource type="Resource" script_class="TargetedPattern" load_steps=5 format=3 uid="uid://csudslb5tliw4"]
|
||||
|
||||
[ext_resource type="PackedScene" uid="uid://by2rk6gx67f7e" path="res://Scenes/Weapons/Bullets/enemyBullet_yellow.tscn" id="1_pocps"]
|
||||
[ext_resource type="PackedScene" uid="uid://bi3f14klscvlw" path="res://Scenes/Weapons/Bullets/enemyBullet_mid_red.tscn" id="1_aif45"]
|
||||
[ext_resource type="Script" path="res://Scripts/Resources/DecreasingSpeedModifier.cs" id="2_wxqq0"]
|
||||
[ext_resource type="Script" path="res://Scripts/AttackPatterns/TargetedPattern.cs" id="3_ht3k1"]
|
||||
|
||||
|
|
@ -10,10 +10,10 @@ decreaseRate = 4.0
|
|||
|
||||
[resource]
|
||||
script = ExtResource("3_ht3k1")
|
||||
BulletScene = ExtResource("1_pocps")
|
||||
bulletSpeed = 50.0
|
||||
duration = 4.0
|
||||
burstInterval = 0.4
|
||||
BulletScene = ExtResource("1_aif45")
|
||||
bulletSpeed = 70.0
|
||||
duration = 3.0
|
||||
burstInterval = 0.3
|
||||
bulletsPerShot = 10
|
||||
spread = 0.0
|
||||
owner = 2
|
||||
|
|
|
|||
|
|
@ -1,17 +1,18 @@
|
|||
[gd_resource type="Resource" script_class="PatternGroup" load_steps=8 format=3 uid="uid://du2kuv125vbrx"]
|
||||
|
||||
[ext_resource type="PackedScene" uid="uid://b0clsnefjsohc" path="res://Scenes/Weapons/Bullets/enemyBullet_mid.tscn" id="1_tt36x"]
|
||||
[ext_resource type="PackedScene" uid="uid://dre2wvw4pa3hc" path="res://Scenes/Weapons/Bullets/enemyBullet_mid_blue.tscn" id="1_4xpdn"]
|
||||
[ext_resource type="Script" path="res://Scripts/AttackPatterns/SpiralPattern.cs" id="2_ee42k"]
|
||||
[ext_resource type="PackedScene" uid="uid://dohakkayqj4w2" path="res://Scenes/Weapons/Bullets/enemyBullet_green.tscn" id="3_gr7a3"]
|
||||
[ext_resource type="Script" path="res://Scripts/Resources/PatternGroup.cs" id="3_jvysx"]
|
||||
|
||||
[sub_resource type="Resource" id="Resource_ne4q3"]
|
||||
script = ExtResource("2_ee42k")
|
||||
BulletScene = ExtResource("1_tt36x")
|
||||
BulletScene = ExtResource("1_4xpdn")
|
||||
bulletSpeed = 20.0
|
||||
bulletCount = 10
|
||||
rotationSpeed = 120.0
|
||||
duration = 4.0
|
||||
_rotationOffset = 0.0
|
||||
duration = 1.0
|
||||
burstInterval = 2.0
|
||||
spread = 360.0
|
||||
owner = 2
|
||||
|
|
@ -22,8 +23,9 @@ script = ExtResource("2_ee42k")
|
|||
BulletScene = ExtResource("3_gr7a3")
|
||||
bulletSpeed = 20.0
|
||||
bulletCount = 16
|
||||
rotationSpeed = 120.0
|
||||
duration = 4.0
|
||||
rotationSpeed = 60.0
|
||||
_rotationOffset = 0.0
|
||||
duration = 1.0
|
||||
burstInterval = 2.0
|
||||
spread = 360.0
|
||||
owner = 2
|
||||
|
|
@ -31,10 +33,11 @@ WaitForCompletion = true
|
|||
|
||||
[sub_resource type="Resource" id="Resource_depjj"]
|
||||
script = ExtResource("2_ee42k")
|
||||
BulletScene = ExtResource("1_tt36x")
|
||||
bulletSpeed = 30.0
|
||||
BulletScene = ExtResource("1_4xpdn")
|
||||
bulletSpeed = 20.0
|
||||
bulletCount = 10
|
||||
rotationSpeed = 120.0
|
||||
rotationSpeed = 60.0
|
||||
_rotationOffset = 0.0
|
||||
duration = 4.0
|
||||
burstInterval = 2.0
|
||||
spread = 360.0
|
||||
|
|
@ -43,5 +46,5 @@ WaitForCompletion = true
|
|||
|
||||
[resource]
|
||||
script = ExtResource("3_jvysx")
|
||||
patterns = Array[Resource]([SubResource("Resource_ne4q3"), SubResource("Resource_kohuh"), SubResource("Resource_depjj")])
|
||||
patterns = Array[Resource]([SubResource("Resource_ne4q3"), SubResource("Resource_kohuh"), SubResource("Resource_kohuh"), SubResource("Resource_depjj"), SubResource("Resource_depjj"), SubResource("Resource_kohuh"), SubResource("Resource_depjj")])
|
||||
WaitForCompletion = true
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue