mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-13 16:19:18 +00:00
104
cards/pl/pl1/46.ts
Normal file
104
cards/pl/pl1/46.ts
Normal file
@ -0,0 +1,104 @@
|
||||
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: "pl1-46",
|
||||
localId: 46,
|
||||
|
||||
// Card informations
|
||||
name: {
|
||||
en: "Cranidos",
|
||||
fr: "Kranidos",
|
||||
},
|
||||
|
||||
hp: 80,
|
||||
|
||||
type: [
|
||||
Type.FIGHTING,
|
||||
],
|
||||
|
||||
dexId: 408,
|
||||
|
||||
image: {
|
||||
low: {
|
||||
en: "https://assets.tcgdex.net/en/pl/pl1/46/low.png",
|
||||
fr: "https://assets.tcgdex.net/fr/pl/pl1/46/low.png",
|
||||
},
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/pl/pl1/46/high.png",
|
||||
fr: "https://assets.tcgdex.net/fr/pl/pl1/46/high.png",
|
||||
},
|
||||
},
|
||||
|
||||
evolveFrom: {
|
||||
en: "Skull Fossil",
|
||||
fr: "Fossile crâne",
|
||||
},
|
||||
|
||||
tags: [
|
||||
Tag.STAGE1,
|
||||
],
|
||||
|
||||
illustrator: {
|
||||
id: 10,
|
||||
name: "Kouki Saitou"
|
||||
},
|
||||
|
||||
|
||||
|
||||
attacks: [{
|
||||
cost: [
|
||||
Type.FIGHTING
|
||||
],
|
||||
name: {
|
||||
en: "Rock Smash",
|
||||
fr: "Éclate-roc",
|
||||
},
|
||||
text: {
|
||||
en: "Flip a coin. If heads, this attack does 20 damage plus 20 more damage.",
|
||||
fr: "Lancez une pièce. Si c'est face, cette attaque inflige 20 dégâts plus 20 dégâts supplémentaires.",
|
||||
},
|
||||
damage: 20
|
||||
},{
|
||||
cost: [
|
||||
Type.FIGHTING,
|
||||
Type.COLORLESS
|
||||
],
|
||||
name: {
|
||||
en: "Knock Over",
|
||||
fr: "Culbute",
|
||||
},
|
||||
text: {
|
||||
en: "You may discard any Stadium card in play.",
|
||||
fr: "Vous pouvez défausser n'importe quelle carte Stade en jeu.",
|
||||
},
|
||||
damage: 40
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: Type.GRASS,
|
||||
value: "+20"
|
||||
}],
|
||||
|
||||
|
||||
|
||||
retreat: 1,
|
||||
|
||||
rarity: Rarity.Uncommon,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set: {
|
||||
name: "Platinum",
|
||||
code: "pl1"
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
Reference in New Issue
Block a user