MaidParams.cs 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126
  1. using System;
  2. namespace Schedule
  3. {
  4. public class MaidParams
  5. {
  6. public MaidParams(ScheduleTraining parent)
  7. {
  8. this._parent = parent;
  9. }
  10. public ScheduleTraining parent
  11. {
  12. get
  13. {
  14. return this._parent;
  15. }
  16. }
  17. public int study_rate
  18. {
  19. get
  20. {
  21. return this.parent.simulateParams.study_rate;
  22. }
  23. }
  24. public int reception
  25. {
  26. get
  27. {
  28. return this.parent.simulateParams.reception;
  29. }
  30. }
  31. public int care
  32. {
  33. get
  34. {
  35. return this.parent.simulateParams.care;
  36. }
  37. }
  38. public int lovely
  39. {
  40. get
  41. {
  42. return this.parent.simulateParams.lovely;
  43. }
  44. }
  45. public int elegance
  46. {
  47. get
  48. {
  49. return this.parent.simulateParams.elegance;
  50. }
  51. }
  52. public int charm
  53. {
  54. get
  55. {
  56. return this.parent.simulateParams.charm;
  57. }
  58. }
  59. public int teach_rate
  60. {
  61. get
  62. {
  63. return this.parent.simulateParams.teach_rate;
  64. }
  65. }
  66. public int exp
  67. {
  68. get
  69. {
  70. return this.parent.simulateParams.exp;
  71. }
  72. }
  73. public int cooking
  74. {
  75. get
  76. {
  77. return this.parent.simulateParams.cooking;
  78. }
  79. }
  80. public int vocal
  81. {
  82. get
  83. {
  84. return this.parent.simulateParams.vocal;
  85. }
  86. }
  87. public int dance
  88. {
  89. get
  90. {
  91. return this.parent.simulateParams.dance;
  92. }
  93. }
  94. public int Ap
  95. {
  96. get
  97. {
  98. return this.parent.simulateParams.appealPoint;
  99. }
  100. }
  101. public int income
  102. {
  103. get
  104. {
  105. return this.parent.simulateParams.income;
  106. }
  107. }
  108. private ScheduleTraining _parent;
  109. }
  110. }