DogProperty.cs 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. using System;
  2. using System.Collections;
  3. using System.Collections.Generic;
  4. using UnityEngine;
  5. public class DogProperty
  6. {
  7. // Start is called before the first frame update
  8. public string name = "小泥鳅";
  9. public int gender = 1;
  10. public String breed = "Huskey";
  11. public DateTime brithday = new(2023, 1, 1, 12, 0, 0);
  12. public int satiety = 15;
  13. public int happiness = 50;
  14. public int stamina = 29;
  15. public int thirsty = 8;
  16. public int healthy = 7;
  17. public int clean = 21;
  18. public int curiosity = 50;
  19. public int iq = 50;
  20. public int runSpeed = 50;
  21. public int JumpHeight = 50;
  22. public int liveliness = 50;
  23. public int agility = 50;
  24. public int obesity = 75;
  25. public int intimate = 50;
  26. public int friendly = 50;
  27. public int Obedience = 50;
  28. public int friendlyToHost = 50;
  29. public int friendlyToStranger = 50;
  30. public int friendlyToOtherSSDog = 50;
  31. public int friendlyToOtherDSDog = 50;
  32. public int frisbeeSkill = 50;
  33. public int ballSkill = 50;
  34. public int AIName = 50;
  35. public int AISit = 50;
  36. public int AILieDown = 50;
  37. public int AIRotate = 50;
  38. }