diff --git a/build/index.d.ts b/build/index.d.ts index 111be1da7..d5ebacde8 100644 --- a/build/index.d.ts +++ b/build/index.d.ts @@ -9,8 +9,9 @@ export interface NBT { [key: string]: string | number | any; } export interface Options { - pack: 'vanilla' | 'packshq' | 'furfsky'; + pack: 'ectoplasn' | 'furfsky_reborn' | 'furfsky' | 'packshq' | 'rnbw' | 'vanilla' | string; id: string; + damage?: number; nbt: NBT; } /** Get the URL for the texture for a SkyBlock item */ diff --git a/src/index.ts b/src/index.ts index 1d146d2c6..18e9be95c 100644 --- a/src/index.ts +++ b/src/index.ts @@ -24,7 +24,7 @@ interface Matcher { } export interface Options { - pack: 'vanilla' | 'packshq' | 'furfsky' + pack: 'ectoplasn' | 'furfsky_reborn' | 'furfsky' | 'packshq' | 'rnbw' | 'vanilla' | string id: string damage?: number nbt: NBT