mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-17 01:49:19 +00:00
103
cards/xy/xy8/33.ts
Normal file
103
cards/xy/xy8/33.ts
Normal file
@ -0,0 +1,103 @@
|
||||
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: "xy8-33",
|
||||
localId: 33,
|
||||
|
||||
// Card informations
|
||||
name: {
|
||||
en: "Octillery",
|
||||
fr: "Octillery",
|
||||
},
|
||||
|
||||
hp: 90,
|
||||
|
||||
type: [
|
||||
Type.WATER,
|
||||
],
|
||||
|
||||
dexId: 224,
|
||||
|
||||
image: {
|
||||
low: {
|
||||
en: "https://assets.tcgdex.net/en/xy/xy8/33/low.png",
|
||||
fr: "https://assets.tcgdex.net/fr/xy/xy8/33/low.png",
|
||||
},
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/xy/xy8/33/high.png",
|
||||
fr: "https://assets.tcgdex.net/fr/xy/xy8/33/high.png",
|
||||
},
|
||||
},
|
||||
|
||||
evolveFrom: {
|
||||
en: "Remoraid",
|
||||
fr: "Rémoraid",
|
||||
},
|
||||
|
||||
tags: [
|
||||
Tag.STAGE1,
|
||||
],
|
||||
|
||||
illustrator: {
|
||||
id: 25,
|
||||
name: "Kyoko Umemoto"
|
||||
},
|
||||
|
||||
abilities: [{
|
||||
id: 656,
|
||||
type: AbilityType.TALENT,
|
||||
name: {
|
||||
en: "Abyssal Hand",
|
||||
fr: "Main Abyssale",
|
||||
},
|
||||
text: {
|
||||
en: "Once during your turn (before your attack), you may draw cards until you have 5 cards in your hand.",
|
||||
fr: "Une seule fois pendant votre tour (avant votre attaque), vous pouvez piocher des cartes jusqu'à ce que vous ayez 5 cartes en main.",
|
||||
}
|
||||
}],
|
||||
|
||||
attacks: [{
|
||||
cost: [
|
||||
Type.WATER,
|
||||
Type.WATER,
|
||||
Type.COLORLESS
|
||||
],
|
||||
name: {
|
||||
en: "Hug",
|
||||
fr: "Câlin",
|
||||
},
|
||||
text: {
|
||||
en: "The Defending Pokémon can't retreat during your opponent's next turn.",
|
||||
fr: "Le Pokémon Défenseur ne peut pas battre en retraite pendant le prochain tour de votre adversaire.",
|
||||
},
|
||||
damage: 40
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: Type.GRASS,
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
|
||||
|
||||
retreat: 2,
|
||||
|
||||
rarity: Rarity.RareHolo,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set: {
|
||||
name: "BREAKthrough",
|
||||
code: "xy8"
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
Reference in New Issue
Block a user