mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 04:12:11 +00:00
50 lines
933 B
TypeScript
50 lines
933 B
TypeScript
import { Card } from "../../../interfaces"
|
||
import Set from "../SV6s"
|
||
|
||
const card: Card = {
|
||
set: Set,
|
||
|
||
name: {
|
||
id: "Cramorant"
|
||
},
|
||
|
||
illustrator: "OKACHEKE",
|
||
category: "Pokemon",
|
||
hp: 110,
|
||
types: ["Water"],
|
||
|
||
description: {
|
||
id: "Pokémon yang sama sekali tidak pandai. Energi yang akan dipakai otaknya dibatasi sesedikit mungkin dan sisanya dialihkan untuk bertarung."
|
||
},
|
||
|
||
stage: "Basic",
|
||
|
||
attacks: [{
|
||
name: {
|
||
id: "Pistol Air"
|
||
},
|
||
|
||
damage: 20,
|
||
cost: ["Water"]
|
||
}, {
|
||
name: {
|
||
id: "Spit Shoot"
|
||
},
|
||
|
||
effect: {
|
||
id: "Buang semua Energi yang dikenakan pada Pokémon ini ke Trash, serangan ini memberikan kerusakan sejumlah 120 kepada 1 Pokémon lawan. [Kelemahan dan Resistansi Pokémon Cadangan tidak mempengaruhi jumlah kerusakan.]"
|
||
},
|
||
|
||
cost: ["Colorless", "Colorless", "Colorless"]
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: "Lightning",
|
||
value: "×2"
|
||
}],
|
||
|
||
retreat: 1,
|
||
regulationMark: "H"
|
||
}
|
||
|
||
export default card |