Advertisement
poombus

Rupture.gd

Dec 30th, 2023
1,639
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. #Rupture.gd
  2. extends StatusEffect
  3. class_name RuptureStatusEffect
  4.  
  5. func _ready():
  6.    id = “rupture”;
  7.    display_name = "Rupture";
  8.  
  9. func on_damage_taken():
  10.    super.on_damage_taken();
  11.    pawn.take_damage(potency);
  12.    #decrease status effect count by 1
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement