1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-13 16:19: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
committed by GitHub
parent 4f2c27937a
commit 1d14078dd8
365 changed files with 13098 additions and 481 deletions

60
data-asia/SV/SV6s/122.ts Normal file
View File

@ -0,0 +1,60 @@
import { Card } from "../../../interfaces"
import Set from "../SV6s"
const card: Card = {
set: Set,
name: {
id: "Aggron"
},
illustrator: "Dsuke",
category: "Pokemon",
hp: 180,
types: ["Metal"],
description: {
id: "Aggron menghabisi musuhnya dengan menabrakkan tubuhnya sambil menyarangkan tanduk tajam yang dapat menembus papan besi yang sangat tebal sekalipun."
},
stage: "Stage2",
attacks: [{
name: {
id: "Angry Slam"
},
effect: {
id: "Serangan ini memberikan kerusakan sejumlah 50 untuk tiap Pokémon yang memiliki Token Kerusakan di Arena sendiri."
},
damage: "50×",
cost: ["Metal"]
}, {
name: {
id: "Guard Claw"
},
effect: {
id: "Pada giliran lawan berikutnya, kerusakan akibat serangan yang diterima Pokémon ini berkurang sejumlah 50."
},
damage: 120,
cost: ["Metal", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
resistances: [{
type: "Grass",
value: "-30"
}],
retreat: 3,
regulationMark: "H"
}
export default card