You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Related effect:
フィールドのこのカードを素材としてX召喚したモンスターは以下の効果を得る。
●このカードの攻撃力は200アップし、コントロールを変更できない。(ATK up)
Problem:
When a Xmonster was diasbled by 禁じられた一滴 Forbidden Droplet which had get the Xmaterial effect from these card, those Xmaterial_effect could not provide atk_up for the Xmonster in the next trun. By rule,atk_up should be provided. In the same time 電子光虫-レジストライダー Digital Bug Registridercould provide def_up.
Try to solve:
After i add SetRange(LOCATION_MZONE) and SetProperty(EFFECT_FLAG_SINGLE_RANGE) to those effect, they could provide atk_up when the Xmonster recover from 禁じられた一滴 Forbidden Droplet
(e.g. Add them to L69 in LL-ベリル・カナリー c10182251.lua)
But i can't sure whether it will bring any new Bug or why we never add the two sentences.
Sample single game
Debug.SetAIName("AI")
Debug.ReloadFieldBegin(DUEL_SIMPLE_AI)
Debug.SetPlayerInfo(0,8000,0,0)
Debug.SetPlayerInfo(1,8000,0,0)
Debug.AddCard(33782437,0,0,LOCATION_DECK,0,POS_FACEDOWN_ATTACK)
Debug.AddCard(12615446,0,0,LOCATION_EXTRA,0,POS_FACEDOWN_ATTACK)
Debug.AddCard(19301729,0,0,LOCATION_MZONE,1,POS_FACEUP_ATTACK)
Debug.AddCard(19301729,0,0,LOCATION_MZONE,2,POS_FACEUP_ATTACK)
Debug.AddCard(33782437,0,0,LOCATION_HAND,3,POS_FACEDOWN_ATTACK)
Debug.AddCard(33782437,1,1,LOCATION_DECK,0,POS_FACEDOWN_ATTACK)
Debug.AddCard(24299458,1,1,LOCATION_SZONE,3,POS_FACEDOWN_ATTACK)
Debug.ReloadFieldEnd()
The text was updated successfully, but these errors were encountered:
Crescent0v0
changed the title
BUG: [EVENT_BE_MATERIAL + EFFECT_UPDATE_ATTACK] could not restore from 禁じられた一滴 Forbidden Droplet
BUG: [EVENT_BE_MATERIAL + EFFECT_UPDATE_ATTACK] could not recover from 禁じられた一滴 Forbidden Droplet
Apr 21, 2024
Crescent0v0
changed the title
BUG: [EVENT_BE_MATERIAL + EFFECT_UPDATE_ATTACK] could not recover from 禁じられた一滴 Forbidden Droplet
BUG: [EVENT_BE_MATERIAL + EFFECT_UPDATE_ATTACK] could not recover from [禁じられた一滴 Forbidden Droplet]
Apr 22, 2024
Related Cards:
電子光虫-レジストライダー Digital Bug Registrider
LL-ベリル・カナリー Lyrilusc - Beryl Canary
転生炎獣ゼブロイドX Salamangreat Zebroid X
Related effect:
フィールドのこのカードを素材としてX召喚したモンスターは以下の効果を得る。
●このカードの攻撃力は200アップし、コントロールを変更できない。(ATK up)
Problem:
When a Xmonster was diasbled by 禁じられた一滴 Forbidden Droplet which had get the Xmaterial effect from these card, those Xmaterial_effect could not provide atk_up for the Xmonster in the next trun.
By rule,atk_up should be provided. In the same time 電子光虫-レジストライダー Digital Bug Registrider could provide def_up.
Try to solve:
After i add
SetRange(LOCATION_MZONE)
andSetProperty(EFFECT_FLAG_SINGLE_RANGE)
to those effect, they could provide atk_up when the Xmonster recover from 禁じられた一滴 Forbidden Droplet(e.g. Add them to L69 in LL-ベリル・カナリー c10182251.lua)
But i can't sure whether it will bring any new Bug or why we never add the two sentences.
Sample single game
Debug.SetAIName("AI")
Debug.ReloadFieldBegin(DUEL_SIMPLE_AI)
Debug.SetPlayerInfo(0,8000,0,0)
Debug.SetPlayerInfo(1,8000,0,0)
Debug.AddCard(33782437,0,0,LOCATION_DECK,0,POS_FACEDOWN_ATTACK)
Debug.AddCard(12615446,0,0,LOCATION_EXTRA,0,POS_FACEDOWN_ATTACK)
Debug.AddCard(19301729,0,0,LOCATION_MZONE,1,POS_FACEUP_ATTACK)
Debug.AddCard(19301729,0,0,LOCATION_MZONE,2,POS_FACEUP_ATTACK)
Debug.AddCard(33782437,0,0,LOCATION_HAND,3,POS_FACEDOWN_ATTACK)
Debug.AddCard(33782437,1,1,LOCATION_DECK,0,POS_FACEDOWN_ATTACK)
Debug.AddCard(24299458,1,1,LOCATION_SZONE,3,POS_FACEDOWN_ATTACK)
Debug.ReloadFieldEnd()
The text was updated successfully, but these errors were encountered: