Commit a75b9546 authored by Peter Xin's avatar Peter Xin

Adjust synchro-pendulum image.

Adjust Level.
parent 41ffb93c
...@@ -70,8 +70,6 @@ init script: ...@@ -70,8 +70,6 @@ init script:
# 是不是 xyz 怪兽 # 是不是 xyz 怪兽
is_xyz := { card.card_type == "xyz monster" } is_xyz := { card.card_type == "xyz monster" }
is_not_xyz := { not is_xyz() } is_not_xyz := { not is_xyz() }
# 是不是自制新卡模(via 冥府王子)
is_new_model := { is_pendulum() and card.card_type != "xyz monster" and card.card_type != "effect monster" and card.card_type != "normal_monster" }
# 是否具有大于或等于 10 的刻度 # 是否具有大于或等于 10 的刻度
is_big_pendulum_scale_1 := { to_int(card.pendulum_scale_1) > 9 } is_big_pendulum_scale_1 := { to_int(card.pendulum_scale_1) > 9 }
is_big_pendulum_scale_2 := { to_int(card.pendulum_scale_2) > 9 } is_big_pendulum_scale_2 := { to_int(card.pendulum_scale_2) > 9 }
...@@ -110,8 +108,7 @@ card style: ...@@ -110,8 +108,7 @@ card style:
name: name:
left: left:
script: script:
if is_new_model() then 14 if is_xyz() or is_pendulum() then 12
else if is_xyz() or is_pendulum() then 12
else 14 else 14
top: { if is_xyz() or is_pendulum() then 14 else 18 } top: { if is_xyz() or is_pendulum() then 14 else 18 }
width: 127 width: 127
...@@ -149,17 +146,14 @@ card style: ...@@ -149,17 +146,14 @@ card style:
dark: { "attribute/att_dark.png" } dark: { "attribute/att_dark.png" }
divine: { "attribute/att_devine.png"} divine: { "attribute/att_devine.png"}
level: level:
left: { if is_12star() then 20 else 17 } left: 18
top: top:
script: script:
if is_pendulum() then 34 if is_pendulum() then 33
else if is_xyz() then 35 else if is_xyz() then 34
else 37.5 else 36.5
height: 12 height: 14
width: width: { if is_monster() then 144 else 140 }
script:
if is_12star() then 136
else if is_monster() then 144 else 140
z index: 3 z index: 3
alignment: { if is_blmonster() then "middle left" else "middle right" } alignment: { if is_blmonster() then "middle left" else "middle right" }
font: font:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment