temp #36

Merged
TheRedApricot merged 26 commits from zzdxxz/Gen_Hack-and-Slash-Roguelite-zzdxxz:temp into main 2025-07-15 15:26:59 +08:00
41 changed files with 336 additions and 2061 deletions
Showing only changes of commit 4454a77bc7 - Show all commits

View File

@ -5,33 +5,33 @@ namespace Data
public class CharacterAttributesDef : Define
{
public int health = 10;
public float moveSpeed = 1;
public int moveSpeed = 1;
}
public class WeaponAttributesDef : Define
{
public float attack = 1;
public float defense = 0;
public float attackSpeed = 2;
public float attackRange = 3;
public int attack = 1;
public int defense = 0;
public int attackSpeed = 2;
public int attackRange = 3;
public int attackTargetCount = 1;
}
public class MonsterAttributesDef : Define
{
public int health = 10;
public float moveSpeed = 1;
public float attack = 1;
public float defense = 0;
public float attackSpeed = 2;
public float attackRange = 3;
public int moveSpeed = 1;
public int attack = 1;
public int defense = 0;
public int attackSpeed = 2;
public int attackRange = 3;
public int attackTargetCount = 1;
}
public class BuildingAttributesDef : Define
{
public int health = 10;
public float attack = 1;
public float defense = 0;
public float attackSpeed = 2;
public float attackRange = 3;
public int attack = 1;
public int defense = 0;
public int attackSpeed = 2;
public int attackRange = 3;
public int attackTargetCount = 1;
}
}