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

51
data-asia/SV/SV-P/090.ts Normal file
View File

@ -0,0 +1,51 @@
import { Card } from "../../../interfaces"
import Set from "../SV-P"
const card: Card = {
set: Set,
name: {
'zh-tw': "纏紅鶴ex"
},
illustrator: "N-DESIGN Inc.",
category: "Pokemon",
hp: 200,
types: ["Colorless"],
stage: "Basic",
suffix: "EX",
attacks: [{
name: {
'zh-tw': "恰好喙"
},
effect: {
'zh-tw': "若這隻寶可夢與對手的戰鬥寶可夢身上附加的能量數量相同則增加100點傷害。"
},
damage: "30+",
cost: ["Colorless", "Colorless"]
}, {
name: {
'zh-tw': "勇鳥猛攻"
},
effect: {
'zh-tw': "這隻寶可夢也受到30點傷害。"
},
damage: 200,
cost: ["Colorless", "Colorless", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Lightning",
value: "×2"
}],
retreat: 1,
regulationMark: "H"
}
export default card