This commit is contained in:
Vick Scarlet
2021-10-31 00:13:22 +08:00
parent e38daf3ebb
commit f40698d63e
99 changed files with 291269 additions and 2158 deletions

31609
src/@types/LayaAir.d.ts vendored Normal file

File diff suppressed because it is too large Load Diff

1262
src/@types/layaAir.minigame.d.ts vendored Normal file

File diff suppressed because it is too large Load Diff

6118
src/@types/union.d.ts vendored Normal file

File diff suppressed because it is too large Load Diff

View File

@@ -1,5 +1,5 @@
import { clone } from './functions/util.js';
import { checkCondition } from './functions/condition.js';
import { clone } from '../functions/util.js';
import { checkCondition } from '../functions/condition.js';
class Achievement {
constructor() {}

View File

@@ -1,5 +1,5 @@
import { clone } from './functions/util.js';
import { checkCondition } from './functions/condition.js';
import { clone } from '../functions/util.js';
import { checkCondition } from '../functions/condition.js';
class Event {
constructor() {}

View File

@@ -1,4 +1,4 @@
import { weightRandom } from './functions/util.js'
import { weightRandom } from '../functions/util.js'
import Property from './property.js';
import Event from './event.js';
import Talent from './talent.js';

View File

@@ -1,4 +1,4 @@
import { max, min, sum, clone, listRandom } from './functions/util.js';
import { max, min, sum, clone, listRandom } from '../functions/util.js';
class Property {
constructor() {}

View File

@@ -1,6 +1,6 @@
import { clone, weightRandom } from './functions/util.js';
import { checkCondition, extractMaxTriggers } from './functions/condition.js';
import { getRate } from './functions/addition.js';
import { clone, weightRandom } from '../functions/util.js';
import { checkCondition, extractMaxTriggers } from '../functions/condition.js';
import { getRate } from '../functions/addition.js';
class Talent {
constructor() {}