Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Y
ygopro-rush-duel
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Issues
5
Issues
5
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Security & Compliance
Security & Compliance
Dependency List
License Compliance
Packages
Packages
List
Container Registry
Analytics
Analytics
CI / CD
Code Review
Insights
Issues
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
MyCard
ygopro-rush-duel
Commits
e9b8b990
Commit
e9b8b990
authored
Sep 16, 2025
by
未闻皂名
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
2025/9/16 新增:牧牛医挚爱
parent
5f0c0605
Pipeline
#40632
passed with stages
in 8 minutes and 56 seconds
Changes
3
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
41 additions
and
1 deletion
+41
-1
RD Patch.cdb
RD Patch.cdb
+0
-0
lflist.conf
lflist.conf
+4
-1
script/c120293071.lua
script/c120293071.lua
+37
-0
No files found.
RD Patch.cdb
View file @
e9b8b990
No preview for this file type
lflist.conf
View file @
e9b8b990
...
...
@@ -6,6 +6,7 @@
#Forbidden
120226013
0
-- 业火之结界像
120238008
0
-- 虚无魔人
#Limit
120160003
1
-- 死灵女仆·小七
...
...
@@ -23,6 +24,7 @@
120247005
1
-- 鹰身女郎
2
120277027
1
-- 魔力动物守卫者
120274065
1
-- 梦中的拥抱
120280006
1
-- 混沌之翼龙
#Semi-Limit
120217035
2
-- 革新制壶陶艺家
...
...
@@ -34,5 +36,6 @@
120247014
2
-- 万华镜-华丽的分身-
120263030
2
-- 元素循环
120208053
2
-- 幽灵旋风
120235024
2
-- 苍救骑士 西埃拉
120264028
2
-- 莓果新人·羞怯小莓
120280007
2
-- 进军的路易斯
120257066
2
-- 日落逆转
script/c120293071.lua
0 → 100644
View file @
e9b8b990
local
cm
,
m
=
GetID
()
local
list
=
{
120290026
}
cm
.
name
=
"牧牛医挚爱"
function
cm
.
initial_effect
(
c
)
RD
.
AddCodeList
(
c
,
list
)
--Fusion Material
RD
.
AddFusionProcedure
(
c
,
list
[
1
],
cm
.
matfilter
)
--No Damage
local
e1
=
Effect
.
CreateEffect
(
c
)
e1
:
SetType
(
EFFECT_TYPE_SINGLE
)
e1
:
SetCode
(
EFFECT_AVOID_BATTLE_DAMAGE
)
e1
:
SetValue
(
1
)
c
:
RegisterEffect
(
e1
)
local
e2
=
e1
:
Clone
()
e2
:
SetCode
(
EFFECT_NO_BATTLE_DAMAGE
)
c
:
RegisterEffect
(
e2
)
--Atk Up
local
e3
=
Effect
.
CreateEffect
(
c
)
e3
:
SetType
(
EFFECT_TYPE_SINGLE
)
e3
:
SetCode
(
EFFECT_UPDATE_ATTACK
)
e3
:
SetProperty
(
EFFECT_FLAG_SINGLE_RANGE
)
e3
:
SetRange
(
LOCATION_MZONE
)
e3
:
SetCondition
(
cm
.
atkcon
)
e3
:
SetValue
(
200
)
c
:
RegisterEffect
(
e3
)
--Continuous Effect
RD
.
AddContinuousEffect
(
c
,
e1
,
e2
)
end
--Fusion Material
cm
.
unspecified_funsion
=
true
function
cm
.
matfilter
(
c
)
return
c
:
IsLevelBelow
(
4
)
and
c
:
IsFusionAttribute
(
ATTRIBUTE_WIND
)
end
--Atk Up
function
cm
.
atkcon
(
e
)
return
Duel
.
GetTurnPlayer
()
==
e
:
GetHandlerPlayer
()
end
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment