mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-15 17:09:19 +00:00
feat: Add support for Asians Pokémon Cards (#481)
This commit is contained in:
48
data-asia/S/S-P/222.ts
Normal file
48
data-asia/S/S-P/222.ts
Normal file
@ -0,0 +1,48 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../S-P"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
'zh-tw': "沼王V"
|
||||
},
|
||||
|
||||
illustrator: "PLANETA Igarashi",
|
||||
category: "Pokemon",
|
||||
hp: 220,
|
||||
types: ["Water"],
|
||||
stage: "Basic",
|
||||
suffix: "V",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
'zh-tw': "純樸"
|
||||
},
|
||||
|
||||
effect: {
|
||||
'zh-tw': "這隻寶可夢不會受到對手的寶可夢使用招式的效果的影響。"
|
||||
}
|
||||
}, {
|
||||
name: {
|
||||
'zh-tw': "泥水頭擊"
|
||||
},
|
||||
|
||||
effect: {
|
||||
'zh-tw': "若這隻寶可夢身上附有【鬥】能量,則增加120點傷害。"
|
||||
},
|
||||
|
||||
damage: "100+",
|
||||
cost: ["Water", "Water", "Colorless"]
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Lightning",
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
retreat: 3,
|
||||
regulationMark: "F"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user