From a44d3c2ebd20e05c7c574cd3a13888fc471067b9 Mon Sep 17 00:00:00 2001 From: Ben Boeckel Date: Sun, 20 Jul 2008 05:57:23 +0000 Subject: [ADD] Added pokescripting to the spec file [FIX] Added status tips and whats this tags to widgets in pokemodr [FIX] Removed the list sprite for the species [FIX] No more nidoran group needed (scripts should take care of it) [FIX] Height no longer broken between feet and inches [FIX] Fixed a bug in the TeamMember stat generation [FIX] No more global skins; should be scripted [FIX] Missed somt COPY() macros git-svn-id: https://pokegen.svn.sourceforge.net/svnroot/pokegen/trunk@227 6ecfd1a5-f3ed-3746-8530-beee90d26b22 --- pokescripting/PokemodWrapper.h | 36 ------------------------------------ 1 file changed, 36 deletions(-) (limited to 'pokescripting/PokemodWrapper.h') diff --git a/pokescripting/PokemodWrapper.h b/pokescripting/PokemodWrapper.h index 42bb1878..08125a79 100644 --- a/pokescripting/PokemodWrapper.h +++ b/pokescripting/PokemodWrapper.h @@ -59,12 +59,6 @@ class POKESCRIPTING_EXPORT PokemodWrapper : public ObjectWrapper QString version() const; QString description() const; const MapWarpWrapper* startWarp() const; - QPixmap walkSkin() const; - QPixmap bikeSkin() const; - QPixmap surfSkin() const; - QPixmap flySkin() const; - QPixmap fishSkin() const; - QPixmap surfFishSkin() const; Pokemod::Fraction effectiveness(const TypeWrapper* attacker, const TypeWrapper* defender) const; const RulesWrapper* rules() const; @@ -121,36 +115,6 @@ inline const MapWarpWrapper* PokemodWrapper::startWarp() const return new MapWarpWrapper(m_pokemod->mapById(m_pokemod->startMap())->warpById(m_pokemod->startWarp()), const_cast(this)); } -inline QPixmap PokemodWrapper::walkSkin() const -{ - return m_pokemod->walkSkin(); -} - -inline QPixmap PokemodWrapper::bikeSkin() const -{ - return m_pokemod->bikeSkin(); -} - -inline QPixmap PokemodWrapper::surfSkin() const -{ - return m_pokemod->surfSkin(); -} - -inline QPixmap PokemodWrapper::flySkin() const -{ - return m_pokemod->flySkin(); -} - -inline QPixmap PokemodWrapper::fishSkin() const -{ - return m_pokemod->fishSkin(); -} - -inline QPixmap PokemodWrapper::surfFishSkin() const -{ - return m_pokemod->surfFishSkin(); -} - inline Pokemod::Fraction PokemodWrapper::effectiveness(const TypeWrapper* attacker, const TypeWrapper* defender) const { return m_pokemod->typechart(m_pokemod->typeIndex(attacker->id()), m_pokemod->typeIndex(defender->id())); -- cgit