11 lines
181 B
C#
11 lines
181 B
C#
namespace Craftimizer.Simulator.Actions;
|
|
|
|
internal sealed class Observe() : BaseAction(
|
|
ActionCategory.Other, 13, 100010,
|
|
durabilityCost: 0,
|
|
defaultCPCost: 7
|
|
)
|
|
{
|
|
|
|
}
|