Stores persistent progress for a relationship between a specific pair of units.
Pair order is ignored, so add('alice', 'bob', 1) and the reverse address one bond.
support.add('hero', 'ally', 12); // proximity, a shared battle, whatever a game counts console.log(support.level('ally', 'hero')?.id); // 'C' - pair order does not matter
Stores persistent progress for a relationship between a specific pair of units. Pair order is ignored, so
add('alice', 'bob', 1)and the reverse address one bond.Example