1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-07-30 19:40:48 +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

54
data-asia/SV/SV-P/56.ts Normal file
View File

@ -0,0 +1,54 @@
import { Card } from "../../../interfaces"
import Set from "../SV-P"
const card: Card = {
set: Set,
name: {
'zh-tw': "摩托蜥"
},
illustrator: "Hasuno",
category: "Pokemon",
hp: 120,
types: ["Colorless"],
description: {
'zh-tw': "似乎自古就會讓人類坐在背上。1萬年前的 壁畫上描繪著該模樣。"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "騰騰衝刺"
},
effect: {
'zh-tw': "擲硬幣直到出現反面,從自己的牌庫抽出與正面出現的次數相同數量的卡。"
},
cost: ["Colorless"]
}, {
name: {
'zh-tw': "力量衝撞"
},
effect: {
'zh-tw': "在下個自己的回合,這隻寶可夢無法使用招式。"
},
damage: 120,
cost: ["Colorless", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 1,
regulationMark: "G"
}
export default card