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

59
data-asia/S/S9/031.ts Normal file
View File

@ -0,0 +1,59 @@
import { Card } from "../../../interfaces"
import Set from "../S9"
const card: Card = {
set: Set,
name: {
'zh-tw': "瑪納霏",
ja: "マナフィ"
},
illustrator: "HYOGONOSUKE",
category: "Pokemon",
hp: 70,
types: ["Water"],
description: {
'zh-tw': "有著能與任何寶可夢心意相通的神奇能力。",
ja: "どんな ポケモンとでも 心を 通い合わせる ことが できる 不思議な 能力を 持っている。"
},
stage: "Basic",
abilities: [{
type: "Ability",
name: {
'zh-tw': "浪之幕",
ja: "なみのヴェール"
},
effect: {
'zh-tw': "只要這隻寶可夢在場上,自己的所有備戰寶可夢不會受到對手的招式的傷害。",
ja: "このポケモンがいるかぎり、自分のベンチポケモン全員は、相手のワザのダメージを受けない。"
}
}],
attacks: [{
name: {
'zh-tw': "潑水",
ja: "みずかけ"
},
damage: 20,
cost: ["Water"]
}],
weaknesses: [{
type: "Lightning",
value: "×2"
}],
retreat: 1,
regulationMark: "F",
rarity: "Uncommon",
dexId: [490]
}
export default card