1
1
mirror of https://github.com/Rundll86/Dog-Lynx-And-HCN.git synced 2026-05-30 07:51:54 +08:00
Files
Dog-Lynx-And-HCN/scripts/Contents/Weapons/RedCrystal.gd
T
fallingshrimp ff19a54da3 fix(武器): 调整红水晶武器的半径增长系数
将红水晶武器的半径增长系数从4降低到1,以平衡游戏性
移除公鸡角色中未使用的粒子效果相关资源,优化场景文件
2025-12-16 23:01:16 +08:00

16 lines
562 B
GDScript

@tool
extends Weapon
class_name RedCrystalWeapon
func update(to: int, origin: Dictionary, _entity: EntityBase):
origin["atk"] += 5 * to * soulLevel
origin["radius"] += 1 * to * soulLevel
return origin
func attack(entity: EntityBase):
var weaponPos = entity.findWeaponAnchor("normal")
for bullet in BulletBase.generate(ComponentManager.getBullet("RedCrystal"), entity, weaponPos, (get_global_mouse_position() - weaponPos).angle()):
if bullet is RedCrystalBullet:
bullet.baseDamage = readStore("atk")
bullet.radius = readStore("radius")
return true