mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 12:22:14 +00:00
52 lines
807 B
TypeScript
52 lines
807 B
TypeScript
import { Card } from "../../../interfaces"
|
||
import Set from "../SV1S"
|
||
|
||
const card: Card = {
|
||
set: Set,
|
||
|
||
name: {
|
||
ja: "パフュートンex"
|
||
},
|
||
|
||
illustrator: "aky CG Works",
|
||
category: "Pokemon",
|
||
hp: 260,
|
||
types: ["Colorless"],
|
||
stage: "Stage1",
|
||
suffix: "EX",
|
||
|
||
attacks: [{
|
||
cost: ["Colorless"],
|
||
|
||
name: {
|
||
ja: "きょうらんのかおり"
|
||
},
|
||
|
||
damage: "10+",
|
||
|
||
effect: {
|
||
ja: "相手のベンチポケモンの数×30ダメージ追加。"
|
||
}
|
||
}, {
|
||
cost: ["Colorless", "Colorless", "Colorless"],
|
||
|
||
name: {
|
||
ja: "ヘビースタンプ"
|
||
},
|
||
|
||
damage: 210,
|
||
|
||
effect: {
|
||
ja: "コインを1回投げウラなら、次の自分の番、このポケモンはワザが使えない。"
|
||
}
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: "Fighting",
|
||
value: "×2"
|
||
}],
|
||
|
||
retreat: 2
|
||
}
|
||
|
||
export default card |