mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-22 19:02:10 +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: "swsh1-148",
|
||
localId: 148,
|
||
|
||
// Card informations
|
||
name: {
|
||
en: "Oranguru",
|
||
fr: "Gouroutan",
|
||
},
|
||
|
||
hp: 120,
|
||
|
||
type: [
|
||
Type.COLORLESS,
|
||
],
|
||
|
||
|
||
|
||
image: {
|
||
low: {
|
||
en: "https://assets.tcgdex.net/en/swsh/swsh1/148/low.png",
|
||
fr: "https://assets.tcgdex.net/fr/swsh/swsh1/148/low.png",
|
||
},
|
||
high: {
|
||
en: "https://assets.tcgdex.net/en/swsh/swsh1/148/high.png",
|
||
fr: "https://assets.tcgdex.net/fr/swsh/swsh1/148/high.png",
|
||
},
|
||
},
|
||
|
||
evolveFrom: {},
|
||
|
||
tags: [
|
||
Tag.BASIC,
|
||
],
|
||
|
||
illustrator: {
|
||
id: 51,
|
||
name: "Shigenori Negishi"
|
||
},
|
||
|
||
abilities: [{
|
||
id: -1,
|
||
type: AbilityType.TALENT,
|
||
name: {
|
||
en: "Primate Wisdom",
|
||
fr: "Sagesse du Primate",
|
||
},
|
||
text: {
|
||
en: "Once during your turn, you may switch a card from your hand with the top card of your deck.",
|
||
fr: "Une fois pendant votre tour, vous pouvez échanger une carte de votre main contre la carte du dessus de votre deck.",
|
||
}
|
||
}],
|
||
|
||
attacks: [{
|
||
cost: [
|
||
Type.COLORLESS,
|
||
Type.COLORLESS,
|
||
Type.COLORLESS
|
||
],
|
||
name: {
|
||
en: "Whap Down",
|
||
fr: "Assommer",
|
||
},
|
||
damage: 70
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: Type.FIGHTING,
|
||
value: "×2"
|
||
}],
|
||
|
||
|
||
|
||
retreat: 2,
|
||
|
||
rarity: Rarity.RareHolo,
|
||
|
||
category: Category.POKEMON,
|
||
|
||
set: {
|
||
name: "Sword & Shield",
|
||
code: "swsh1"
|
||
}
|
||
}
|
||
|
||
export default card
|