1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-26 05:49:18 +00:00

Initial Database

Signed-off-by: Avior <florian.bouillon@delta-wings.net>
This commit is contained in:
2020-02-19 16:19:09 +01:00
commit be94e712b8
12302 changed files with 1142705 additions and 0 deletions

106
cards/xy/xy10/82.ts Normal file
View File

@ -0,0 +1,106 @@
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: "xy10-82",
localId: 82,
// Card informations
name: {
en: "Exploud",
fr: "Brouhabam",
},
hp: 140,
type: [
Type.COLORLESS,
],
dexId: 295,
image: {
low: {
en: "https://assets.tcgdex.net/en/xy/xy10/82/low.png",
fr: "https://assets.tcgdex.net/fr/xy/xy10/82/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/xy/xy10/82/high.png",
fr: "https://assets.tcgdex.net/fr/xy/xy10/82/high.png",
},
},
evolveFrom: {
en: "Loudred",
fr: "Ramboum",
},
tags: [
Tag.STAGE2,
],
illustrator: {
id: 8,
name: "Masakazu Fukuda"
},
attacks: [{
cost: [
Type.COLORLESS,
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Ambush",
fr: "Embuscade",
},
text: {
en: "Flip a coin. If heads, this attack does 40 more damage.",
fr: "Lancez une pièce. Si c'est face, cette attaque inflige 40 dégâts supplémentaires.",
},
damage: 80
},{
cost: [
Type.COLORLESS,
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Cacophony",
fr: "Cacophonie",
},
text: {
en: "At the end of your opponent's next turn, discard the Defending Pokémon and all cards attached to it.",
fr: "À la fin du prochain tour de votre adversaire, défaussez le Pokémon Défenseur et toutes les cartes qui lui sont attachées.",
},
}],
weaknesses: [{
type: Type.FIGHTING,
value: "×2"
}],
retreat: 3,
rarity: Rarity.Rare,
category: Category.POKEMON,
set: {
name: "Fates Collide",
code: "xy10"
}
}
export default card