1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-14 08:39:17 +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

52
data-asia/SV/SV8/006.ts Normal file
View File

@ -0,0 +1,52 @@
import { Card } from "../../../interfaces"
import Set from "../SV8"
const card: Card = {
set: Set,
name: {
ja: "ビビヨン"
},
illustrator: "Amelicart",
rarity: "Uncommon",
category: "Pokemon",
dexId: [666],
hp: 120,
types: ["Grass"],
description: {
ja: "不思議な 土地で 生まれた。 色鮮やかな 毒の りんぷんを 翅から 散らして 戦う。"
},
stage: "Stage2",
attacks: [{
cost: ["Colorless"],
name: {
ja: "エボルパウダー"
},
effect: {
ja: "自分のベンチポケモン全員からそれぞれ進化するカードを、自分の山札から1枚ずつ選び、それぞれにのせて進化させる。そして山札を切る。"
}
}, {
cost: ["Grass"],
name: {
ja: "カッターウインド"
},
damage: 90
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
retreat: 1
}
export default card