ygopro-msg-encode 1.1.10 → 1.1.11
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs +12 -3
- package/dist/index.cjs.map +2 -2
- package/dist/index.mjs +12 -3
- package/dist/index.mjs.map +2 -2
- package/dist/src/protos/msg/proto/missed-effect.d.ts +3 -7
- package/package.json +1 -1
|
@@ -1,14 +1,10 @@
|
|
|
1
1
|
import { YGOProMsgBase } from '../base';
|
|
2
2
|
export declare class YGOProMsgMissedEffect extends YGOProMsgBase {
|
|
3
3
|
static identifier: 120;
|
|
4
|
-
|
|
5
|
-
* ocgcore (ygopro-core) sends:
|
|
6
|
-
* - uint32: handler card info_location (controller/location/sequence/position packed)
|
|
7
|
-
* - uint32: handler card code
|
|
8
|
-
*
|
|
9
|
-
* See ygopro-core/processor.cpp::field::break_effect()
|
|
10
|
-
*/
|
|
4
|
+
controller: number;
|
|
11
5
|
location: number;
|
|
6
|
+
sequence: number;
|
|
7
|
+
position: number;
|
|
12
8
|
code: number;
|
|
13
9
|
getSendTargets(): number[];
|
|
14
10
|
}
|