1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 03:12:10 +00:00

57 lines
944 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Card } from "../../../interfaces"
import Set from "../SV5a"
const card: Card = {
set: Set,
name: {
ja: "コータス"
},
illustrator: "Masa",
category: "Pokemon",
dexId: [324],
hp: 130,
types: ["Fire"],
description: {
ja: "石炭が エネルギーの 源。 コータスの 棲んでいる 山には 多くの 石炭が 眠っている。"
},
stage: "Basic",
attacks: [{
cost: ["Fire", "Colorless"],
name: {
ja: "こうらでぶつかる"
},
damage: 30,
effect: {
ja: "次の相手の番、このポケモンが受けるワザのダメージは「-30」される。"
}
}, {
cost: ["Fire", "Colorless", "Colorless"],
name: {
ja: "ほのおのうず"
},
damage: 110,
effect: {
ja: "このポケモンについているエネルギーを2個選び、トラッシュする。"
}
}],
weaknesses: [{
type: "Water",
value: "×2"
}],
retreat: 3
}
export default card