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

56
data-asia/S/S8/025.ts Normal file
View File

@ -0,0 +1,56 @@
import { Card } from "../../../interfaces"
import Set from "../S8"
const card: Card = {
set: Set,
name: {
'zh-tw': "櫻花魚"
},
illustrator: "Misa Tsutsui",
category: "Pokemon",
hp: 110,
types: ["Water"],
description: {
'zh-tw': "會吸取獵物的體液。剩下的肉會沉入海底,成為其他寶可夢的食物。"
},
stage: "Stage1",
abilities: [{
type: "Ability",
name: {
'zh-tw': "連擊消弭"
},
effect: {
'zh-tw': "只要這隻寶可夢在場上,對手的場上「連擊」寶可夢的特性全部消除。"
}
}],
attacks: [{
name: {
'zh-tw': "吸取之吻"
},
effect: {
'zh-tw': "將這隻寶可夢恢復「30」HP。"
},
damage: 50,
cost: ["Water", "Colorless"]
}],
weaknesses: [{
type: "Lightning",
value: "×2"
}],
retreat: 1,
regulationMark: "E"
}
export default card