mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
69 lines
947 B
TypeScript
69 lines
947 B
TypeScript
import { Card } from '../../../interfaces'
|
|
import Set from '../Legends Awakened'
|
|
|
|
const card: Card = {
|
|
name: {
|
|
en: "Chinchou",
|
|
fr: "Loupio",
|
|
},
|
|
illustrator: "Midori Harada",
|
|
rarity: "Common",
|
|
category: "Pokemon",
|
|
|
|
set: Set,
|
|
dexId: [
|
|
170,
|
|
],
|
|
hp: 50,
|
|
types: [
|
|
"Lightning",
|
|
],
|
|
|
|
stage: "Basic",
|
|
|
|
|
|
attacks: [
|
|
{
|
|
cost: [
|
|
"Colorless",
|
|
],
|
|
name: {
|
|
en: "Razor Fin",
|
|
fr: "Aileron-rasoir",
|
|
},
|
|
|
|
damage: 10,
|
|
|
|
},
|
|
{
|
|
cost: [
|
|
"Lightning",
|
|
"Colorless",
|
|
],
|
|
name: {
|
|
en: "Aqua Spark",
|
|
fr: "Aqua-étincelle",
|
|
},
|
|
effect: {
|
|
en: "If Chinchou has any Water Energy attached to it, this attack does 20 damage plus 10 more damage.",
|
|
fr: "Si Loupio possède de l'Énergie Water, cette attaque inflige 20 dégâts plus 10 dégâts supplémentaires.",
|
|
},
|
|
damage: 20,
|
|
|
|
},
|
|
],
|
|
weaknesses: [
|
|
{
|
|
type: "Fighting",
|
|
value: "+10"
|
|
},
|
|
],
|
|
|
|
retreat: 1,
|
|
|
|
|
|
|
|
}
|
|
|
|
export default card
|