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

50 lines
831 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 "../SV3s"
const card: Card = {
set: Set,
name: {
id: "Chinchou"
},
illustrator: "yuu",
category: "Pokemon",
hp: 60,
types: ["Lightning"],
description: {
id: "Di dasar laut yang gelap gulita, lampu di tentakel Chinchou yang selalu berkedip-kedip menjadi satu-satunya sarana untuk berkomunikasi."
},
stage: "Basic",
attacks: [{
name: {
id: "Menerangi"
},
effect: {
id: "Lihat 1 kartu dari atas Deck sendiri, lalu kembalikan ke posisi semula. Pemain dapat mengembalikan kartu tersebut ke bawah Deck."
},
cost: ["Colorless"]
}, {
name: {
id: "Listrik Mini"
},
damage: 20,
cost: ["Lightning", "Colorless"]
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 1,
regulationMark: "G"
}
export default card