Overview
Comment: | 0 |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
f5363a36f699b427694654a7970d4c4f |
User & Date: | 顽雨沉风 on 2024-06-28 08:37:04 |
Other Links: | manifest | tags |
Context
2024-06-28
| ||
08:39 | 0 check-in: 3deefdf78e user: 顽雨沉风 tags: trunk | |
08:37 | 0 check-in: f5363a36f6 user: 顽雨沉风 tags: trunk | |
08:36 | 0 check-in: 29a67250d3 user: 顽雨沉风 tags: trunk | |
Changes
Modified single_doc/三个绑定函数.md from [4430ee44b2] to [141a16c68e].
︙ | ︙ | |||
38 39 40 41 42 43 44 | LOCATION_GRAVE =0x10 --墓地 LOCATION_REMOVED =0x20 --除外区 LOCATION_EXTRA =0x40 --额外 LOCATION_OVERLAY =0x80 --超量素材 LOCATION_ONFIELD =0x0c --场上(LOCATION_MZONE+LOCATION_SZONE) ~~~ | < < > > | | < < > > | > > | < | 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 | LOCATION_GRAVE =0x10 --墓地 LOCATION_REMOVED =0x20 --除外区 LOCATION_EXTRA =0x40 --额外 LOCATION_OVERLAY =0x80 --超量素材 LOCATION_ONFIELD =0x0c --场上(LOCATION_MZONE+LOCATION_SZONE) ~~~ ## PreEquip ### 原型 Debug.PreEquip(装备魔法卡, 怪兽卡) ~~~ ● bool Debug.PreEquip(Card equip_card, Card target) 为 target 添加装备 equip_card ,返回值表示是否成功 ~~~ ## PreSetTarget ### 原型 Debug.PreSetTarget(保护卡, 被保护的卡) ~~~ ● void Debug.PreSetTarget(Card c, Card target) 把 target 选为 c 的永续对象 ~~~ ### 补充 必须在布局完成之后再使用。 |