-
-
Notifications
You must be signed in to change notification settings - Fork 43
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
285 changed files
with
16,346 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
import { Set } from '../../interfaces' | ||
import serie from '../Sword & Shield' | ||
|
||
const set: Set = { | ||
id: "swsh6", | ||
name: { | ||
en: "Fusion Strike", | ||
fr: "Poing de Fusion", | ||
es: "Golpe Fusión", | ||
it: "Colpo Fusione", | ||
de: "Fusions Angriff", | ||
pt: "Golpe Fusão" | ||
}, | ||
serie: serie, | ||
|
||
|
||
cardCount: { | ||
official: 264 | ||
}, | ||
|
||
releaseDate: "2021-11-12" | ||
} | ||
|
||
export default set |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
import { Card } from "../../../interfaces" | ||
import Set from "../Fusion Strike" | ||
|
||
const card: Card = { | ||
set: Set, | ||
|
||
name: { | ||
en: "Caterpie", | ||
fr: "Chenipan", | ||
es: "Caterpie", | ||
it: "Caterpie", | ||
pt: "Caterpie", | ||
de: "Raupy" | ||
}, | ||
|
||
rarity: "Common", | ||
category: "Pokemon", | ||
hp: 50, | ||
types: ["Grass"], | ||
stage: "Basic", | ||
retreat: 1, | ||
regulationMark: "E", | ||
illustrator: "Mitsuhiro Arita", | ||
|
||
description: { | ||
en: "Its short feet are tipped with suction pads that enable it to tirelessly climb slopes and walls." | ||
}, | ||
|
||
attacks: [{ | ||
cost: ["Colorless"], | ||
|
||
name: { | ||
en: "Flock" | ||
}, | ||
|
||
effect: { | ||
en: "Search your deck for a Caterpie and put it onto your Bench. Then, shuffle your deck." | ||
} | ||
}, { | ||
cost: ["Grass"], | ||
|
||
name: { | ||
en: "Bug Bite" | ||
}, | ||
|
||
damage: 10 | ||
}], | ||
|
||
variants: { | ||
normal: true, | ||
reverse: true, | ||
holo: false, | ||
firstEdition: false | ||
} | ||
} | ||
|
||
export default card |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,69 @@ | ||
import { Card } from "../../../interfaces" | ||
import Set from "../Fusion Strike" | ||
|
||
const card: Card = { | ||
set: Set, | ||
|
||
name: { | ||
en: "Swadloon", | ||
fr: "Couverdure", | ||
es: "Swadloon", | ||
it: "Swadloon", | ||
pt: "Swadloon", | ||
de: "Folikon" | ||
}, | ||
|
||
rarity: "Uncommon", | ||
category: "Pokemon", | ||
hp: 80, | ||
types: ["Grass"], | ||
|
||
evolveFrom: { | ||
en: "Sewaddle", | ||
fr: "Larveyette", | ||
es: "Sewaddle", | ||
it: "Sewaddle", | ||
pt: "Sewaddle", | ||
de: "Strawickl" | ||
}, | ||
|
||
stage: "Stage1", | ||
retreat: 2, | ||
regulationMark: "E", | ||
illustrator: "0313", | ||
|
||
description: { | ||
en: "It protects itself from the cold by wrapping up in leaves. It stays on the move, eating leaves in forests." | ||
}, | ||
|
||
attacks: [{ | ||
cost: ["Grass"], | ||
|
||
name: { | ||
en: "Trip Over" | ||
}, | ||
|
||
damage: "10+", | ||
|
||
effect: { | ||
en: "Flip a coin. If heads, this attack does 20 more damage." | ||
} | ||
}, { | ||
cost: ["Grass", "Colorless", "Colorless"], | ||
|
||
name: { | ||
en: "Seed Bomb" | ||
}, | ||
|
||
damage: 60 | ||
}], | ||
|
||
variants: { | ||
normal: true, | ||
reverse: true, | ||
holo: false, | ||
firstEdition: false | ||
} | ||
} | ||
|
||
export default card |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
import { Card } from "../../../interfaces" | ||
import Set from "../Fusion Strike" | ||
|
||
const card: Card = { | ||
set: Set, | ||
|
||
name: { | ||
en: "Charjabug", | ||
fr: "Chrysapile", | ||
es: "Charjabug", | ||
it: "Charjabug", | ||
pt: "Charjabug", | ||
de: "Akkup" | ||
}, | ||
|
||
rarity: "Uncommon", | ||
category: "Pokemon", | ||
hp: 100, | ||
types: ["Lightning"], | ||
|
||
evolveFrom: { | ||
en: "Grubbin", | ||
fr: "Larvibule", | ||
es: "Grubbin", | ||
it: "Grubbin", | ||
pt: "Grubbin", | ||
de: "Mabula" | ||
}, | ||
|
||
stage: "Stage1", | ||
retreat: 3, | ||
regulationMark: "E", | ||
illustrator: "sowsow", | ||
|
||
description: { | ||
en: "Its digestive processes convert the leaves it eats into electricity. An electric sac in its belly stores the electricity for later use." | ||
}, | ||
|
||
attacks: [{ | ||
cost: ["Colorless", "Colorless"], | ||
|
||
name: { | ||
en: "Vise Grip" | ||
}, | ||
|
||
damage: 30 | ||
}, { | ||
cost: ["Lightning", "Colorless", "Colorless"], | ||
|
||
name: { | ||
en: "Head Bolt" | ||
}, | ||
|
||
damage: 60 | ||
}], | ||
|
||
variants: { | ||
normal: true, | ||
reverse: true, | ||
holo: false, | ||
firstEdition: false | ||
} | ||
} | ||
|
||
export default card |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,67 @@ | ||
import { Card } from "../../../interfaces" | ||
import Set from "../Fusion Strike" | ||
|
||
const card: Card = { | ||
set: Set, | ||
|
||
name: { | ||
en: "Vikavolt", | ||
fr: "Lucanon", | ||
es: "Vikavolt", | ||
it: "Vikavolt", | ||
pt: "Vikavolt", | ||
de: "Donarion" | ||
}, | ||
|
||
rarity: "Rare", | ||
category: "Pokemon", | ||
hp: 150, | ||
types: ["Lightning"], | ||
|
||
evolveFrom: { | ||
en: "Charjabug", | ||
fr: "Chrysapile", | ||
es: "Charjabug", | ||
it: "Charjabug", | ||
pt: "Charjabug", | ||
de: "Akkup" | ||
}, | ||
|
||
stage: "Stage2", | ||
retreat: 0, | ||
regulationMark: "E", | ||
illustrator: "nagimiso", | ||
|
||
description: { | ||
en: "If it carries a Charjabug to use as a spare battery, a flying Vikavolt can rapidly fire high-powered beams of electricity." | ||
}, | ||
|
||
attacks: [{ | ||
cost: ["Colorless", "Colorless", "Colorless"], | ||
|
||
name: { | ||
en: "Bite" | ||
}, | ||
|
||
damage: 70 | ||
}, { | ||
cost: ["Lightning", "Lightning", "Colorless", "Colorless"], | ||
|
||
name: { | ||
en: "Electro Blaster" | ||
}, | ||
|
||
effect: { | ||
en: "Discard 2 Lightning Energy from this Pokémon. This attack does 200 damage to 1 of your opponent's Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)" | ||
} | ||
}], | ||
|
||
variants: { | ||
normal: true, | ||
reverse: true, | ||
holo: false, | ||
firstEdition: false | ||
} | ||
} | ||
|
||
export default card |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
import { Card } from "../../../interfaces" | ||
import Set from "../Fusion Strike" | ||
|
||
const card: Card = { | ||
set: Set, | ||
|
||
name: { | ||
en: "Zeraora", | ||
fr: "Zeraora", | ||
es: "Zeraora", | ||
it: "Zeraora", | ||
pt: "Zeraora", | ||
de: "Zeraora" | ||
}, | ||
|
||
rarity: "Rare", | ||
category: "Pokemon", | ||
hp: 120, | ||
types: ["Lightning"], | ||
stage: "Basic", | ||
retreat: 1, | ||
regulationMark: "E", | ||
illustrator: "Teeziro", | ||
|
||
description: { | ||
en: "It approaches its enemies at the speed of lightning, then tears them limb from limb with its sharp claws." | ||
}, | ||
|
||
attacks: [{ | ||
cost: ["Lightning", "Colorless"], | ||
|
||
name: { | ||
en: "Wild Charge" | ||
}, | ||
|
||
damage: 70, | ||
|
||
effect: { | ||
en: "This Pokémon also does 20 damage to itself." | ||
} | ||
}], | ||
|
||
variants: { | ||
normal: true, | ||
reverse: true, | ||
holo: false, | ||
firstEdition: false | ||
} | ||
} | ||
|
||
export default card |
Oops, something went wrong.