Skip to content

Commit

Permalink
All three ending scenes for DeadZone Drifter added and tested.
Browse files Browse the repository at this point in the history
  • Loading branch information
jwvhewitt committed Aug 22, 2023
1 parent 160a8cb commit 449846c
Show file tree
Hide file tree
Showing 8 changed files with 498 additions and 53 deletions.
50 changes: 25 additions & 25 deletions design/Monster_Uniques.txt
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ Monster
desig = "DZD"
statline = {Reflexes = 16, Body=32, Speed=16, Perception=16, Craft=14, Knowledge=17, Ego=17, Charm = 12,
MechaFighting = 12, MechaGunnery = 9, MechaPiloting = 5, Vitality = 30,
CloseCombat = 12, RangedCombat = 9, Dodge = 5, Scouting = 8
CloseCombat = 12, RangedCombat = 9, Dodge = 5, Scouting = 8, Concentration = 10
}
scale = MechaScale
material = Biotech
Expand All @@ -56,14 +56,14 @@ Monster
name = "Death Wave"
reach = 5
damage = 4
accuracy = 2
accuracy = 3
penetration = 4
attributes = (Scatter,Brutal,Overload,SwarmFire2,LineAttack)
area_anim = DeathWaveAnim
shot_anim = PlasmaBall
END
Wing
size = 5
size = 6
SUB
Armor
size = 4
Expand All @@ -72,21 +72,21 @@ Monster
Mount
INV
Launcher
size = 4
size = 6
SUB
Missile
name = "Acid Spores"
reach = 4
damage = 2
accuracy = 4
penetration = 1
accuracy = 5
penetration = 3
quantity = 4
attributes = (DisintegrateAttack,)
END
END
END
Wing
size = 5
size = 6
SUB
Armor
size = 4
Expand All @@ -95,21 +95,21 @@ Monster
Mount
INV
Launcher
size = 4
size = 6
SUB
Missile
name = "Acid Spores"
reach = 4
damage = 2
accuracy = 4
penetration = 1
accuracy = 5
penetration = 3
quantity = 4
attributes = (DisintegrateAttack,)
END
END
END
Wing
size = 5
size = 6
SUB
Armor
size = 4
Expand All @@ -118,21 +118,21 @@ Monster
Mount
INV
Launcher
size = 4
size = 6
SUB
Missile
name = "Acid Spores"
reach = 4
damage = 2
accuracy = 4
penetration = 1
accuracy = 5
penetration = 3
quantity = 4
attributes = (DisintegrateAttack,)
END
END
END
Wing
size = 5
size = 6
SUB
Armor
size = 4
Expand All @@ -141,21 +141,21 @@ Monster
Mount
INV
Launcher
size = 4
size = 6
SUB
Missile
name = "Acid Spores"
reach = 4
damage = 2
accuracy = 4
penetration = 1
accuracy = 5
penetration = 3
quantity = 4
attributes = (DisintegrateAttack,)
END
END
END
Wing
size = 5
size = 6
SUB
Armor
size = 4
Expand All @@ -164,14 +164,14 @@ Monster
Mount
INV
Launcher
size = 4
size = 6
SUB
Missile
name = "Acid Spores"
reach = 4
damage = 2
accuracy = 4
penetration = 1
accuracy = 5
penetration = 3
quantity = 4
attributes = (DisintegrateAttack,)
END
Expand All @@ -188,7 +188,7 @@ Monster
damage=3
accuracy=3
penetration=2
attributes = (Defender,HaywireAttack)
attributes = (Defender, HaywireAttack, DisintegrateAttack)
integral = True
END
Tail
Expand All @@ -202,7 +202,7 @@ Monster
damage=3
accuracy=3
penetration=2
attributes = (Defender,HaywireAttack)
attributes = (Defender, HaywireAttack, DisintegrateAttack)
integral = True
END
Tail
Expand All @@ -216,7 +216,7 @@ Monster
damage=3
accuracy=3
penetration=2
attributes = (Defender,HaywireAttack)
attributes = (Defender, HaywireAttack, DisintegrateAttack)
integral = True
END

Expand Down
2 changes: 2 additions & 0 deletions game/combat/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -519,6 +519,8 @@ def go(self):
elif gdi.unicode == "," and pbge.util.config.getboolean("GENERAL", "dev_mode_on"):
print("Checking...")
print(self.camp.fight.cstat[self.pc]._ap_remaining,self.camp.fight.cstat[self.pc].action_points, -self.camp.fight.cstat[self.pc]._mp_spent, self.camp.fight.cstat[self.pc].mp_remaining, self.camp.fight.cstat[self.pc].total_mp_remaining)
elif gdi.unicode == "W" and pbge.util.config.getboolean("GENERAL", "dev_mode_on"):
self.camp.check_trigger("CHEATINGFUCKINGBASTARD")
elif gdi.unicode == "!" and pbge.util.config.getboolean("GENERAL", "dev_mode_on"):
myparty = self.camp.get_active_party()
myparty.remove(self.pc)
Expand Down
Loading

0 comments on commit 449846c

Please sign in to comment.