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:
46
data-asia/S/S-P/106.ts
Normal file
46
data-asia/S/S-P/106.ts
Normal 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
|
Reference in New Issue
Block a user