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

feat: Add support for Asians Pokémon Cards (#481)

This commit is contained in:
2024-06-07 12:53:08 +02:00
committed by GitHub
parent a35fadd50c
commit a26ef0e5eb
8069 changed files with 379200 additions and 423 deletions

51
data-asia/S/S4a/140.ts Normal file
View File

@ -0,0 +1,51 @@
import { Card } from "../../../interfaces"
import Set from "../S4a"
const card: Card = {
set: Set,
name: {
'zh-tw': "百變怪V"
},
illustrator: "Saki Hayashiro",
category: "Pokemon",
hp: 170,
types: ["Colorless"],
stage: "Basic",
suffix: "V",
abilities: [{
type: "Ability",
name: {
'zh-tw': "V變化"
},
effect: {
'zh-tw': "在自己的回合時可使用1次。從自己的棄牌區選擇1張【基礎】寶可夢的「寶可夢【V】」卡與這隻寶可夢互換所附加的卡・傷害指示物・特殊狀態・效果等全部保留。將這隻寶可夢丟棄。"
}
}],
attacks: [{
name: {
'zh-tw': "輕黏"
},
effect: {
'zh-tw': "從自己的棄牌區選擇1張基本能量卡附於這隻寶可夢身上。"
},
cost: ["Colorless"]
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 2,
regulationMark: "D"
}
export default card