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:
52
data-asia/SV/SV8/006.ts
Normal file
52
data-asia/SV/SV8/006.ts
Normal 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
|
Reference in New Issue
Block a user