1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-15 17:09:19 +00:00
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
This commit is contained in:
2020-02-03 15:18:40 +01:00
commit 0d2a757cae
12077 changed files with 1123810 additions and 0 deletions

103
cards/sm/sm4/23.ts Normal file
View 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: "sm4-23",
localId: 23,
// Card informations
name: {
en: "Octillery",
fr: "Octillery",
},
hp: 100,
type: [
Type.WATER,
],
dexId: 224,
image: {
low: {
en: "https://assets.tcgdex.net/en/sm/sm4/23/low.png",
fr: "https://assets.tcgdex.net/fr/sm/sm4/23/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/sm/sm4/23/high.png",
fr: "https://assets.tcgdex.net/fr/sm/sm4/23/high.png",
},
},
evolveFrom: {
en: "Remoraid",
fr: "Rémoraid",
},
tags: [
Tag.STAGE1,
],
illustrator: {
id: 61,
name: "tetsuya koizumi"
},
attacks: [{
cost: [
Type.COLORLESS
],
name: {
en: "Ink Spit",
fr: "SepiaCrachat",
},
text: {
en: "If the Defending Pokémon tries to attack during your opponent's next turn, your opponent flips a coin. If tails, that attack does nothing.",
fr: "Si le Pokémon Défenseur essaie dattaquer pendant le prochain tour de votre adversaire, ce dernier lance une pièce. Si cest pile, son attaque ne fait rien.",
},
},{
cost: [
Type.WATER,
Type.COLORLESS
],
name: {
en: "Special Artillery",
fr: "Artillerie Spéciale",
},
text: {
en: "You may discard a Special Energy from this Pokémon. If you do, this attack does 80 more damage.",
fr: "Vous pouvez défausser une Énergie spéciale attachée à ce Pokémon. Dans ce cas, cette attaque inflige 80 dégâts supplémentaires.",
},
damage: 40
}],
weaknesses: [{
type: Type.GRASS,
value: "×2"
}],
retreat: 2,
rarity: Rarity.Rare,
category: Category.POKEMON,
set: {
name: "Crimson Invasion",
code: "sm4"
}
}
export default card