2024-11-04 13:09:46 +08:00
|
|
|
interface CreepMemory {
|
2024-11-03 22:04:05 +08:00
|
|
|
role: string,
|
2024-11-04 13:09:46 +08:00
|
|
|
working?: boolean | null,
|
|
|
|
[property: string]: any,
|
2024-11-03 22:04:05 +08:00
|
|
|
}
|
2024-11-04 13:09:46 +08:00
|
|
|
|
|
|
|
|
|
|
|
declare type Part = WORK | MOVE | CARRY | HEAL | ATTACK | RANGED_ATTACK | TOUGH | CLAIM;
|