mirror of
http://47.107.252.169:3000/Roguelite-Game-Developing-Team/Gen_Hack-and-Slash-Roguelite.git
synced 2025-11-19 23:17:13 +08:00
37 lines
953 B
C#
37 lines
953 B
C#
|
|
|
|
namespace Data
|
|
{
|
|
public class CharacterAttributesDef : Define
|
|
{
|
|
public int health = 10;
|
|
public int moveSpeed = 1;
|
|
}
|
|
public class WeaponAttributesDef : Define
|
|
{
|
|
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 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 int attack = 1;
|
|
public int defense = 0;
|
|
public int attackSpeed = 2;
|
|
public int attackRange = 3;
|
|
public int attackTargetCount = 1;
|
|
}
|
|
} |