1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-14 00:29:19 +00:00

feat: add the Japanese SV8 (#559)

This commit is contained in:
2024-11-06 00:58:08 +01:00
committed by GitHub
parent c1d83caca0
commit e30d54469d
107 changed files with 5124 additions and 0 deletions

58
data-asia/SV/SV8/065.ts Normal file
View File

@ -0,0 +1,58 @@
import { Card } from "../../../interfaces"
import Set from "../SV8"
const card: Card = {
set: Set,
name: {
ja: "ドンファン"
},
illustrator: "GOSSAN",
rarity: "Common",
category: "Pokemon",
dexId: [232],
hp: 150,
types: ["Fighting"],
description: {
ja: "普段は 落ち着いているが 一度 怒らせると 体を 丸めて 回転しながら 突っ込んでくる。"
},
stage: "Stage1",
attacks: [{
cost: ["Fighting"],
name: {
ja: "うちのめす"
},
damage: 40,
effect: {
ja: "このワザのダメージは、相手のバトルポケモンにかかっている効果を計算しない。"
}
}, {
cost: ["Fighting", "Colorless", "Colorless"],
name: {
ja: "ガードローリング"
},
damage: 120,
effect: {
ja: "このポケモンについているエネルギーを2個選び、トラッシュする。次の相手の番、このポケモンが受けるワザのダメージは「-100」される。"
}
}],
weaknesses: [{
type: "Grass",
value: "×2"
}],
retreat: 4
}
export default card