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

feat(asian): Updated SV6 and added SV6a & SV6s (#502)

This commit is contained in:
2024-10-10 00:44:36 +02:00
parent bfe885b508
commit 5e4ba51064
365 changed files with 13098 additions and 481 deletions

51
data-asia/SV/SV6s/008.ts Normal file
View File

@ -0,0 +1,51 @@
import { Card } from "../../../interfaces"
import Set from "../SV6s"
const card: Card = {
set: Set,
name: {
id: "Heracross"
},
illustrator: "Toshinao Aoki",
category: "Pokemon",
hp: 120,
types: ["Grass"],
description: {
id: "Pokémon yang memiliki tenaga super. Heracross dapat membanting benda yang lebih berat 100 kali lipat dari berat badannya dengan mudah."
},
stage: "Basic",
attacks: [{
name: {
id: "Menindih"
},
effect: {
id: "Lempar koin 1 kali. Jika hasilnya sisi depan, ubah kondisi Pokémon Bertarung lawan menjadi Lumpuh."
},
damage: 60,
cost: ["Grass", "Colorless", "Colorless"]
}, {
name: {
id: "Bantingan Keras"
},
damage: 130,
cost: ["Grass", "Colorless", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
retreat: 2,
regulationMark: "H"
}
export default card