mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 12:22:14 +00:00
112 lines
1.9 KiB
TypeScript
112 lines
1.9 KiB
TypeScript
import Card from '../../../interfaces/Card'
|
||
import Type from '../../../interfaces/Type'
|
||
import Tag from '../../../interfaces/Tag'
|
||
import Rarity from '../../../interfaces/Rarity'
|
||
import AbilityType from '../../../interfaces/AbilityType'
|
||
import Category from '../../../interfaces/Category'
|
||
|
||
const card: Card = {
|
||
|
||
// ids
|
||
id: "sm10-116",
|
||
localId: 116,
|
||
|
||
// Card informations
|
||
name: {
|
||
en: "Krookodile",
|
||
fr: "Crocorible",
|
||
},
|
||
|
||
hp: 150,
|
||
|
||
type: [
|
||
Type.DARKNESS,
|
||
],
|
||
|
||
dexId: 553,
|
||
|
||
image: {
|
||
low: {
|
||
en: "https://assets.tcgdex.net/en/sm/sm10/116/low.png",
|
||
fr: "https://assets.tcgdex.net/fr/sm/sm10/116/low.png",
|
||
},
|
||
high: {
|
||
en: "https://assets.tcgdex.net/en/sm/sm10/116/high.png",
|
||
fr: "https://assets.tcgdex.net/fr/sm/sm10/116/high.png",
|
||
},
|
||
},
|
||
|
||
evolveFrom: {
|
||
en: "Krokorok",
|
||
fr: "Escroco",
|
||
},
|
||
|
||
tags: [
|
||
Tag.STAGE2,
|
||
],
|
||
|
||
illustrator: {
|
||
id: 50,
|
||
name: "Anesaki Dynamic"
|
||
},
|
||
|
||
|
||
|
||
attacks: [{
|
||
cost: [
|
||
Type.COLORLESS,
|
||
Type.COLORLESS,
|
||
Type.COLORLESS
|
||
],
|
||
name: {
|
||
en: "Chomp Chomp Panic",
|
||
fr: "Panique Mangeouille",
|
||
},
|
||
text: {
|
||
en: "This attack does 50 damage for each Colorless in your opponent's Active Pokémon's Retreat Cost.",
|
||
fr: "Cette attaque inflige 50 dégâts pour chaque Colorless dans le Coût de Retraite du Pokémon Actif de votre adversaire.",
|
||
},
|
||
damage: 50
|
||
},{
|
||
cost: [
|
||
Type.DARKNESS,
|
||
Type.COLORLESS,
|
||
Type.COLORLESS,
|
||
Type.COLORLESS
|
||
],
|
||
name: {
|
||
en: "Crunch",
|
||
fr: "Mâchouille",
|
||
},
|
||
text: {
|
||
en: "Discard an Energy from your opponent's Active Pokémon.",
|
||
fr: "Défaussez une Énergie du Pokémon Actif de votre adversaire.",
|
||
},
|
||
damage: 100
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: Type.FIGHTING,
|
||
value: "×2"
|
||
}],
|
||
|
||
resistances: [{
|
||
type: Type.PSYCHIC,
|
||
value: "-20"
|
||
}],
|
||
|
||
retreat: 3,
|
||
|
||
rarity: Rarity.Rare,
|
||
|
||
category: Category.POKEMON,
|
||
|
||
set: {
|
||
name: "Unbroken Bonds",
|
||
code: "sm10"
|
||
}
|
||
}
|
||
|
||
export default card
|
||
|