mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 19:32:11 +00:00
96 lines
1.6 KiB
TypeScript
96 lines
1.6 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: "hgss3-60",
|
||
localId: 60,
|
||
|
||
// Card informations
|
||
name: {
|
||
en: "Oddish",
|
||
fr: "Mystherbe",
|
||
},
|
||
|
||
hp: 40,
|
||
|
||
type: [
|
||
Type.GRASS,
|
||
],
|
||
|
||
dexId: 43,
|
||
|
||
image: {
|
||
low: {
|
||
en: "https://assets.tcgdex.net/en/hgss/hgss3/60/low.png",
|
||
fr: "https://assets.tcgdex.net/fr/hgss/hgss3/60/low.png",
|
||
},
|
||
high: {
|
||
en: "https://assets.tcgdex.net/en/hgss/hgss3/60/high.png",
|
||
fr: "https://assets.tcgdex.net/fr/hgss/hgss3/60/high.png",
|
||
},
|
||
},
|
||
|
||
evolveFrom: {},
|
||
|
||
tags: [
|
||
Tag.BASIC,
|
||
],
|
||
|
||
illustrator: {
|
||
id: 9,
|
||
name: "Mitsuhiro Arita"
|
||
},
|
||
|
||
|
||
|
||
attacks: [{
|
||
cost: [
|
||
Type.COLORLESS
|
||
],
|
||
name: {
|
||
en: "Ram",
|
||
fr: "Collision",
|
||
},
|
||
damage: 10
|
||
},{
|
||
cost: [
|
||
Type.GRASS
|
||
],
|
||
name: {
|
||
en: "Find a Friend",
|
||
fr: "Trouver un ami",
|
||
},
|
||
text: {
|
||
en: "Flip a coin. If heads, search your deck for a Grass Pokémon, show it to your opponent, and put it into your hand. Shuffle your deck afterward.",
|
||
fr: "Lancez une pièce. Si c'est face, cherchez un Pokémon Grass dans votre deck, montrez-le à votre adversaire, puis ajoutez-le à votre main. Mélangez ensuite votre deck.",
|
||
},
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: Type.PSYCHIC,
|
||
value: "×2"
|
||
}],
|
||
|
||
|
||
|
||
retreat: 1,
|
||
|
||
rarity: Rarity.Common,
|
||
|
||
category: Category.POKEMON,
|
||
|
||
set: {
|
||
name: "HS—Undaunted",
|
||
code: "hgss3"
|
||
}
|
||
}
|
||
|
||
export default card
|
||
|