1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-13 16:19:18 +00:00

feat(asian): Updated SV6 and added SV6a & SV6s (#502)

This commit is contained in:
2024-10-10 00:44:36 +02:00
committed by GitHub
parent 4f2c27937a
commit 1d14078dd8
365 changed files with 13098 additions and 481 deletions

54
data-asia/SV/SV6/113.ts Normal file
View File

@ -0,0 +1,54 @@
import { Card } from "../../../interfaces"
import Set from "../SV6"
const card: Card = {
set: Set,
name: {
'zh-tw': "吉利蛋"
},
illustrator: "Toshinao Aoki",
category: "Pokemon",
hp: 120,
types: ["Colorless"],
description: {
'zh-tw': "為了避免蛋被打破, 走起路來小心謹慎。 然而逃跑速度卻是快之無比。"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "幸運貼附"
},
effect: {
'zh-tw': "從自己的手牌選擇1張基本能量卡附於自己的寶可夢身上。"
},
cost: ["Colorless"]
}, {
name: {
'zh-tw': "潛力"
},
effect: {
'zh-tw': "在下個自己的回合,這隻寶可夢無法使用招式。"
},
damage: 80,
cost: ["Colorless", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 2,
regulationMark: "H"
}
export default card