1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-07-30 11:30: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

52
data-asia/SV/SVF/003.ts Normal file
View File

@ -0,0 +1,52 @@
import { Card } from "../../../interfaces"
import Set from "../SVF"
const card: Card = {
set: Set,
name: {
'zh-tw': "瑪納霏"
},
illustrator: "HYOGONOSUKE",
category: "Pokemon",
hp: 70,
types: ["Water"],
description: {
'zh-tw': "有著能與任何寶可夢心意相通的神奇能力。"
},
stage: "Basic",
abilities: [{
type: "Ability",
name: {
'zh-tw': "浪之幕"
},
effect: {
'zh-tw': "只要這隻寶可夢在場上,自己的所有備戰寶可夢不會受到對手的招式的傷害。"
}
}],
attacks: [{
name: {
'zh-tw': "潑水"
},
damage: 20,
cost: ["Water"]
}],
weaknesses: [{
type: "Lightning",
value: "×2"
}],
retreat: 1,
regulationMark: "F"
}
export default card