bitterlings.c 432 B

1234567891011121314151617181920212223242526272829303132333435
  1. class Bitterlings extends Edible_Base
  2. {
  3. override bool CanBeCookedOnStick()
  4. {
  5. return true;
  6. }
  7. override bool CanBeCooked()
  8. {
  9. return true;
  10. }
  11. override bool IsMeat()
  12. {
  13. return true;
  14. }
  15. override bool CanDecay()
  16. {
  17. return true;
  18. }
  19. override bool UseConfigInitTemperature()
  20. {
  21. return true;
  22. }
  23. override void SetActions()
  24. {
  25. super.SetActions();
  26. AddAction(ActionForceFeed);
  27. AddAction(ActionEatMeat);
  28. }
  29. }