1
1
mirror of https://github.com/Rundll86/Dog-Lynx-And-HCN.git synced 2026-05-29 23:41:54 +08:00
Files
Dog-Lynx-And-HCN/scripts/Contents/Weapons/HXD.gd
T
fallingshrimp 7d1690cdae fix(武器): 提高HXD武器的攻击力加成
将攻击力加成从1倍提升至2倍,以增强该武器的战斗效果
2026-02-02 10:06:02 +08:00

18 lines
649 B
GDScript

@tool
extends Weapon
func update(to: int, origin: Dictionary, _entity: EntityBase):
origin["atk"] += 2 * to * soulLevel
return origin
func attack(entity: EntityBase):
for i in readStore("atk"):
for bullet in BulletBase.generate(
ComponentManager.getBullet("HXD"),
entity,
entity.findWeaponAnchor("normal"),
entity.findWeaponAnchor("normal").angle_to_point(get_global_mouse_position()) + deg_to_rad(randf_range(-1, 1) * 40)
):
if bullet is HXDBullet:
bullet.maxBouncedTime = readStore("atk")
bullet.baseDamage = readStore("atk")