1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-07-31 03:50:46 +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

53
data-asia/SV/SV2P/077.ts Normal file
View File

@ -0,0 +1,53 @@
import { Card } from "../../../interfaces"
import Set from "../SV2P"
const card: Card = {
set: Set,
name: {
ja: "セグレイブ"
},
illustrator: "Tomokazu Komiya",
category: "Pokemon",
dexId: [998],
hp: 160,
types: ["Water"],
description: {
ja: "極低温の 冷気を 口から 噴射。 灼熱の マグマでも 瞬時に 凍りつかせてしまう。"
},
stage: "Stage2",
abilities: [{
type: "Ability",
name: {
ja: "きょくていおん"
},
effect: {
ja: "自分の番に何回でも使える。自分の手札から「基本エネルギー」を1枚選び、自分のポケモンにつける。"
}
}],
attacks: [{
cost: ["Water", "Water", "Colorless"],
name: {
ja: "バスターテール"
},
damage: 130
}],
weaknesses: [{
type: "Metal",
value: "×2"
}],
retreat: 2
}
export default card