1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-07-30 03:29:51 +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/SVP1/002.ts Normal file
View File

@ -0,0 +1,52 @@
import { Card } from "../../../interfaces"
import Set from "../SVP1"
const card: Card = {
set: Set,
name: {
'zh-tw': "陸地水母ex"
},
illustrator: "5ban Graphics",
category: "Pokemon",
hp: 270,
types: ["Grass"],
stage: "Stage1",
suffix: "EX",
abilities: [{
type: "Ability",
name: {
'zh-tw': "守護菌絲"
},
effect: {
'zh-tw': "只要這隻寶可夢在場上,自己的所有身上附有能量卡的寶可夢,不會受到對手的寶可夢使用招式的效果的影響。(已經受到的效果不會消除。)"
}
}],
attacks: [{
name: {
'zh-tw': "菌落猛攻"
},
effect: {
'zh-tw': "增加自己的備戰區身上附有【草】能量卡的寶可夢的數量×40點傷害。"
},
damage: "80+",
cost: ["Grass", "Grass"]
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
retreat: 2,
regulationMark: "G"
}
export default card