1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-14 00:29:19 +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

46
data-asia/S/S-P/106.ts Normal file
View File

@ -0,0 +1,46 @@
import { Card } from "../../../interfaces"
import Set from "../S-P"
const card: Card = {
set: Set,
name: {
'zh-tw': "鰓魚龍V"
},
illustrator: "Satoshi Shirai",
category: "Pokemon",
hp: 220,
types: ["Dragon"],
stage: "Basic",
suffix: "V",
attacks: [{
name: {
'zh-tw': "咬咬粉碎"
},
effect: {
'zh-tw': "在造成傷害前將對手的戰鬥寶可夢身上附加的「寶可夢道具」丟棄。有丟棄的情況下增加120點傷害。"
},
damage: "60+",
cost: ["Grass", "Water"]
}, {
name: {
'zh-tw': "龍之強襲"
},
effect: {
'zh-tw': "在下個自己的回合,這隻寶可夢無法使用「龍之強襲」。"
},
damage: 210,
cost: ["Grass", "Water", "Water"]
}],
retreat: 3,
regulationMark: "E"
}
export default card