anomaly-packer
Version:
Anomaly Packer is a tool that helps in making of an addon for STALKER Anomaly with type-safe code using TypeScript
11 lines (9 loc) • 646 B
TypeScript
/** @noSelfInFile */
declare namespace relation_registry {
export function community_goodwill(community: Faction, entity_id: number): number
export function set_community_goodwill(community: Faction, entity_id: number, goodwill: number): void
export function change_community_goodwill(community: Faction, entity_id: number, goodwill: number): void
export function community_relation(community_1: Faction, community_2: Faction): number
export function set_community_relation(community_1: Faction, community_2: Faction, relation: number): void
export function get_general_goodwill_between(from: number, to: number): number
}