Global API
All methods are accessed through the global OriginsJS object.
Entity Access
getHolder(entity)
(entity: Entity) => HolderWrapper | null
Returns the HolderWrapper for the given entity. Returns null for non-living entities or entities without origin data.
getPlayerHolder(player)
(player: Player) => HolderWrapper | null
Same as getHolder, semantically clearer for players.
Power Management
grantPower(entity, source, powerId)
(entity: Entity, source: string, powerId: string) => void
Grants a power to an entity. source identifies where the power came from (e.g. "origins_js:script", "origins:origin").
revokePower(entity, source, powerId)
(entity: Entity, source: string, powerId: string) => void
Revokes a previously granted power.
hasPower(entity, powerId)
(entity: Entity, powerId: string) => boolean
Returns true if the entity currently has the given power.
Origin Management
setOrigin(entity, layerId, originId)
(entity: Entity, layerId: string, originId: string) => void
Sets the origin for the entity on the given layer.
hasOrigin(entity, originId)
(entity: Entity, originId: string) => boolean
Returns true if the entity has the given origin in any layer.
Resource & Cooldown
getResource(entity, powerId)
(entity: Entity, powerId: string) => number
Returns the resource value of a power. Always returns 0 on 1.20.1 — use Apoli's built-in Resource power type instead.
setResource(entity, powerId, value)
(entity: Entity, powerId: string, value: number) => void
Not directly supported in 1.20.1.
addResource(entity, powerId, delta)
(entity: Entity, powerId: string, delta: number) => void
Not directly supported in 1.20.1.
getCooldown(entity, powerId)
(entity: Entity, powerId: string) => number
Returns remaining cooldown ticks. Always returns 0 on 1.20.1.
startCooldown(entity, powerId)
(entity: Entity, powerId: string) => void
Not directly supported in 1.20.1.
canUseCooldown(entity, powerId)
(entity: Entity, powerId: string) => boolean
Not directly supported in 1.20.1.
Resource and cooldown APIs are limited on 1.20.1 due to Origins API constraints. Prefer Apoli's built-in Resource / Cooldown power types when possible.
Power Builder
powerBuilder(id)
(id: string) => PowerBuilder
Returns a PowerBuilder for registering JS-defined powers.